From 66a823ec3e67e313ac707ccf82ce5eb8b2808f02 Mon Sep 17 00:00:00 2001 From: spashii Date: Mon, 10 Aug 2026 20:10:49 +0200 Subject: [PATCH 1/3] fix(chat): render footnote citations under a single Sources header The footnote citations from #981 rendered with two headings: the model wrote a literal "Sources" line above its footnote definitions, and remark-gfm then moved the definitions into its own trailing section headed "Footnotes". That default heading is meant to be visually hidden behind `sr-only`, a class our Tailwind build never generates because it appears in no source file, so both headings showed. The superscript links also gave no feedback: fragment navigation resolves against ids that repeat in every message (`#user-content-fn-1` in each one), does nothing on a repeated click of the same fragment, and scrolls nothing when the target is already on screen. - Markdown.tsx accepts a footnote label and id prefix and passes them through remark-rehype: the section heading is now ours (localised, visible) and every message mints unique footnote ids. - ChatHistoryMessage passes "Sources" (per locale, "Bronnen" in Dutch) and a per-message prefix, and intercepts in-message footnote hops to scroll directly, leaving the URL and history alone. - enrichAgenticContent strips a model-written "Sources"/"Footnotes" heading when footnote definitions follow, which repairs messages already persisted under the old prompt ("*Sources*" verbatim in the production row this was reported on). - agent.py stops asking the model for a header above the definitions; the renderer owns the heading now. --- echo/agent/agent.py | 4 +- echo/agent/tests/test_agent_tools.py | 3 + .../components/chat/AgenticChatPanel.test.tsx | 65 ++++++++- .../src/components/chat/AgenticChatPanel.tsx | 15 +- .../components/chat/ChatHistoryMessage.tsx | 25 ++++ .../src/components/common/Markdown.tsx | 27 ++++ echo/frontend/src/locales/cs-CZ.po | 136 +++++++++--------- echo/frontend/src/locales/cs-CZ.ts | 2 +- echo/frontend/src/locales/de-DE.po | 136 +++++++++--------- echo/frontend/src/locales/de-DE.ts | 2 +- echo/frontend/src/locales/en-US.po | 136 +++++++++--------- echo/frontend/src/locales/en-US.ts | 2 +- echo/frontend/src/locales/es-ES.po | 136 +++++++++--------- echo/frontend/src/locales/es-ES.ts | 2 +- echo/frontend/src/locales/fr-FR.po | 136 +++++++++--------- echo/frontend/src/locales/fr-FR.ts | 2 +- echo/frontend/src/locales/it-IT.po | 136 +++++++++--------- echo/frontend/src/locales/it-IT.ts | 2 +- echo/frontend/src/locales/nl-NL.po | 136 +++++++++--------- echo/frontend/src/locales/nl-NL.ts | 2 +- echo/frontend/src/locales/uk-UA.po | 136 +++++++++--------- echo/frontend/src/locales/uk-UA.ts | 2 +- 22 files changed, 703 insertions(+), 540 deletions(-) diff --git a/echo/agent/agent.py b/echo/agent/agent.py index d3cbe7e6c..2098210fb 100644 --- a/echo/agent/agent.py +++ b/echo/agent/agent.py @@ -319,11 +319,11 @@ def _rename_tool_name(name: str) -> str: ## Citations - Ground every claim about the project in tool results. - To keep the response clean, never put raw conversation citation tags directly inline in your main text. Instead, use standard Markdown footnote superscript tags (like [^1], [^2]) inline where you cite a source. -- At the very end of your response, list all cited sources under a "Sources" header as footnote definitions. Group multiple citations of the same conversation or chunk into a single unique footnote entry to avoid clutter. +- At the very end of your response, list the footnote definitions. Do not write any header above them (no "Sources", no "Footnotes"): the app renders the footnote list under its own localized sources header, so a header from you shows up as a duplicate. Group multiple citations of the same conversation or chunk into a single unique footnote entry to avoid clutter. - Each footnote definition at the bottom must carry the exact citation tag in the format `[^1]: [conversation_id:;chunk_id:]` when a chunk id is available, otherwise `[^1]: [conversation_id:]`. - Quote with attribution inside your footnote definitions or inline text: "[Participant Name]: quoted text". - Keep footnote numbering sequential starting from 1 (e.g., [^1], [^2], [^3]). Every inline footnote tag must have exactly one corresponding footnote definition at the bottom. -- If there are no claims to cite from the conversations, omit the footnotes and the "Sources" header entirely. +- If there are no claims to cite from the conversations, omit the footnotes entirely. - A few well-chosen quotes beat many. - Cite the doc path when you answer from documentation. diff --git a/echo/agent/tests/test_agent_tools.py b/echo/agent/tests/test_agent_tools.py index 8774462db..0f7ee81c6 100644 --- a/echo/agent/tests/test_agent_tools.py +++ b/echo/agent/tests/test_agent_tools.py @@ -485,6 +485,9 @@ def test_system_prompt_contains_conversational_and_research_directives(): assert "[conversation_id:;chunk_id:]" in SYSTEM_PROMPT assert "[conversation_id:]" in SYSTEM_PROMPT assert "footnote" in prompt + # The frontend renders the footnote list under its own localized header; + # a model-written one duplicates it (ChatHistoryMessage.tsx) + assert "do not write any header above them" in prompt assert "worked from summaries only" in prompt assert "read the full transcript" in prompt assert "never fabricate quotes" in prompt diff --git a/echo/frontend/src/components/chat/AgenticChatPanel.test.tsx b/echo/frontend/src/components/chat/AgenticChatPanel.test.tsx index 88b5143f0..49e5541cf 100644 --- a/echo/frontend/src/components/chat/AgenticChatPanel.test.tsx +++ b/echo/frontend/src/components/chat/AgenticChatPanel.test.tsx @@ -197,7 +197,7 @@ vi.mock("./ChatHistoryMessage", () => ({ ), })); -import { AgenticChatPanel } from "./AgenticChatPanel"; +import { AgenticChatPanel, enrichAgenticContent } from "./AgenticChatPanel"; const at = (seq: number) => new Date(Date.UTC(2026, 7, 1, 10, seq)).toISOString(); @@ -650,3 +650,66 @@ describe("AgenticChatPanel, voice input", () => { expect(screen.getByTestId("chat-input-textarea")).toBeTruthy(); }); }); + +describe("enrichAgenticContent, footnote citations", () => { + const CONVERSATION_ID = "0aa78d5a-1111-2222-3333-444455556666"; + + const enrich = (content: string) => + enrichAgenticContent({ + content, + conversationNames: new Map([[CONVERSATION_ID, "Maria"]]), + language: "en-US", + projectId: "project-1", + workspaceId: "workspace-1", + }); + + it("turns footnote definition tags into rich transcript links", () => { + const enriched = enrich( + `Parking came up often[^1].\n\n[^1]: [conversation_id:${CONVERSATION_ID};chunk_id:chunk-9]`, + ); + + expect(enriched).toContain("[^1]: [Maria's transcript excerpt]("); + expect(enriched).toContain("#chunk-chunk-9"); + expect(enriched).not.toContain("conversation_id:"); + }); + + // The markdown renderer moves footnote definitions into its own trailing + // section with its own localised header, so a model-written header would + // stay behind as an empty duplicate above it. "*Sources*" is verbatim what + // production stored (chat 57493241, 2026-08-10); the rest are the forms + // the prompt's wording could plausibly produce. + it.each([ + "*Sources*", + "## Sources", + "**Sources**", + "Sources:", + "### Footnotes", + ])( + "strips a redundant %s header above the footnote definitions", + (header) => { + const enriched = enrich( + `Parking came up often[^1].\n\n${header}\n\n[^1]: [conversation_id:${CONVERSATION_ID}]`, + ); + + expect(enriched).not.toMatch(/sources|footnotes/i); + // The definition keeps a blank line above it: a footnote definition + // cannot interrupt a paragraph, so gluing would demote it to text. + expect(enriched).toContain("\n\n[^1]: [Maria's conversation]("); + }, + ); + + it("strips the header even when the model skips the blank line under it", () => { + const enriched = enrich( + `Parking came up often[^1].\n## Sources\n[^1]: [conversation_id:${CONVERSATION_ID}]`, + ); + + expect(enriched).not.toContain("Sources"); + expect(enriched).toContain("\n\n[^1]: [Maria's conversation]("); + }); + + it("leaves a Sources heading alone when no footnote definitions follow", () => { + const content = "## Sources\n\nWe drew on three interviews."; + + expect(enrich(content)).toBe(content); + }); +}); diff --git a/echo/frontend/src/components/chat/AgenticChatPanel.tsx b/echo/frontend/src/components/chat/AgenticChatPanel.tsx index 69a2560e4..3f56abcf2 100644 --- a/echo/frontend/src/components/chat/AgenticChatPanel.tsx +++ b/echo/frontend/src/components/chat/AgenticChatPanel.tsx @@ -191,6 +191,18 @@ const AGENTIC_REFERENCE_LIST_PATTERN = /\[conversation_ids?:\s*([^\]]+)\]/g; const LOOKS_LIKE_ID_PATTERN = /^[0-9a-f][0-9a-f-]{7,}$/i; +// A "Sources"/"Footnotes" heading the model wrote above its footnote +// definitions. The markdown renderer moves the definitions into its own +// trailing section with its own heading, so the model's heading would remain +// behind as an empty duplicate. Matched only when footnote definitions follow, +// so an ordinary paragraph titled "Sources" is left alone. Messages persisted +// before the prompt stopped asking for this header still carry it. +// Replaced with "\n\n" so the definitions keep a blank line above them: a +// footnote definition cannot interrupt a paragraph, so gluing it to the +// previous line would demote it to literal text. +const REDUNDANT_FOOTNOTE_HEADER_PATTERN = + /(?:^|\n)[ \t]*(?:#{1,6}[ \t]+)?\*{0,2}(?:sources|footnotes)\*{0,2}:?[ \t]*\n(?:[ \t]*\n)*(?=[ \t]*\[\^[^\]]+\]:)/gi; + export const MAX_AGENTIC_MESSAGE_LENGTH = 32000; // A failed run tells us a code, never prose: the server deliberately withholds @@ -246,7 +258,7 @@ const FocusedOnLine = ({ ); }; -const enrichAgenticContent = ({ +export const enrichAgenticContent = ({ content, conversationNames, language, @@ -278,6 +290,7 @@ const enrichAgenticContent = ({ }; return content + .replace(REDUNDANT_FOOTNOTE_HEADER_PATTERN, "\n\n") .replace( AGENTIC_REFERENCE_PATTERN, (_match, conversationIdRaw: string, chunkIdRaw?: string) => diff --git a/echo/frontend/src/components/chat/ChatHistoryMessage.tsx b/echo/frontend/src/components/chat/ChatHistoryMessage.tsx index 88f2de92a..0c5d026fa 100644 --- a/echo/frontend/src/components/chat/ChatHistoryMessage.tsx +++ b/echo/frontend/src/components/chat/ChatHistoryMessage.tsx @@ -216,6 +216,29 @@ export const ChatHistoryMessage = ({ return { a({ children, className, href, ...props }) { + // Footnote hops (superscript -> definition and the ↩ back-ref) stay + // inside this message. Fragment navigation is the wrong tool for + // them in an SPA: it rewrites the URL, stacks history entries, and + // a repeated click on the same fragment does not scroll again. So + // scroll directly and leave the URL alone. + if (href?.startsWith("#")) { + return ( + { + event.preventDefault(); + document + .getElementById(decodeURIComponent(href.slice(1))) + ?.scrollIntoView({ behavior: "smooth", block: "center" }); + }} + > + {children} + + ); + } + if (isDocsHref(href)) { return ( {children} @@ -333,6 +356,8 @@ export const ChatHistoryMessage = ({ className="prose-sm" content={message.content} components={markdownComponents} + footnoteLabel={t`Sources`} + footnoteIdPrefix={`msg-${message.id}-`} /> {portalStartLink ? ( { // FIXME: workaround to load Tally embeds useEffect(() => { @@ -57,6 +67,22 @@ export const Markdown = ({ [customComponents], ); + const remarkRehypeOptions = useMemo(() => { + if (!footnoteLabel && !footnoteIdPrefix) return undefined; + return { + ...(footnoteIdPrefix ? { clobberPrefix: footnoteIdPrefix } : {}), + ...(footnoteLabel + ? { + footnoteLabel, + // The default properties hide the label behind `sr-only`, + // which our Tailwind build does not generate. A caller who + // names the label wants it visible. + footnoteLabelProperties: {}, + } + : {}), + }; + }, [footnoteLabel, footnoteIdPrefix]); + return ( {processedContent} diff --git a/echo/frontend/src/locales/cs-CZ.po b/echo/frontend/src/locales/cs-CZ.po index 2cf191343..223c00f52 100644 --- a/echo/frontend/src/locales/cs-CZ.po +++ b/echo/frontend/src/locales/cs-CZ.po @@ -213,7 +213,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "{0, plural, one {# workspace} other {# workspaces}}" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2101 +#: src/components/chat/AgenticChatPanel.tsx:2114 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -478,11 +478,11 @@ msgstr "{liveProjectCount, plural, one {Delete the # project in this workspace b msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:267 +#: src/components/chat/AgenticChatPanel.tsx:279 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:266 +#: src/components/chat/AgenticChatPanel.tsx:278 msgid "{name}'s transcript excerpt" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "Advanced (Tips and best practices)" msgid "Advanced Settings" msgstr "Advanced Settings" -#: src/components/chat/AgenticChatPanel.tsx:385 +#: src/components/chat/AgenticChatPanel.tsx:398 msgid "Agent run failed" msgstr "" @@ -1435,7 +1435,7 @@ msgid "Approaching a limit this month" msgstr "Approaching a limit this month" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2250 +#: src/components/chat/AgenticChatPanel.tsx:2263 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1529,7 +1529,7 @@ msgstr "Ask | dembrane" msgid "Ask a organisation admin to request this upgrade." msgstr "Ask a organisation admin to request this upgrade." -#: src/components/chat/AgenticChatPanel.tsx:1813 +#: src/components/chat/AgenticChatPanel.tsx:1826 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1546,7 +1546,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2231 +#: src/components/chat/AgenticChatPanel.tsx:2244 msgid "Ask about your conversations..." msgstr "" @@ -1884,7 +1884,7 @@ msgstr "Billing period" msgid "Book a call" msgstr "Book a call" -#: src/components/common/FeedbackPortalModal.tsx:98 +#: src/components/common/FeedbackPortalModal.tsx:115 msgid "Book a call with us" msgstr "Book a call with us" @@ -1986,11 +1986,11 @@ msgstr "can read" #: src/components/conversation/ConversationAccordion.tsx:336 #: src/components/common/InputModal.tsx:77 #: src/components/common/ImageCropModal.tsx:145 -#: src/components/common/FeedbackPortalModal.tsx:124 +#: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:734 -#: src/components/chat/AgenticChatPanel.tsx:2139 +#: src/components/chat/AgenticChatPanel.tsx:747 +#: src/components/chat/AgenticChatPanel.tsx:2152 msgid "Cancel" msgstr "Cancel" @@ -2023,7 +2023,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:722 +#: src/components/chat/AgenticChatPanel.tsx:735 msgid "Cancel current run" msgstr "" @@ -2189,7 +2189,7 @@ msgstr "Changing language during an active chat may lead to unexpected results. #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1657 +#: src/components/chat/AgenticChatPanel.tsx:1670 msgid "Chat" msgstr "Chat" @@ -2528,7 +2528,7 @@ msgstr "Content" msgid "Context" msgstr "Context" -#: src/components/chat/ChatHistoryMessage.tsx:394 +#: src/components/chat/ChatHistoryMessage.tsx:419 msgid "Context added:" msgstr "Context added:" @@ -3268,7 +3268,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2268 +#: src/components/chat/AgenticChatPanel.tsx:2281 msgid "dembrane can make mistakes. Please double-check responses." msgstr "dembrane can make mistakes. Please double-check responses." @@ -3456,7 +3456,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:404 +#: src/components/chat/AgenticChatPanel.tsx:417 msgid "Done" msgstr "Done" @@ -3826,8 +3826,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:409 -#: src/components/chat/AgenticChatPanel.tsx:1759 +#: src/components/chat/AgenticChatPanel.tsx:422 +#: src/components/chat/AgenticChatPanel.tsx:1772 msgid "Error" msgstr "Error" @@ -4179,11 +4179,11 @@ msgstr "Failed to revise outcome. 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/chat/AgenticChatPanel.tsx:1650 +#: src/components/chat/AgenticChatPanel.tsx:1663 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1609 +#: src/components/chat/AgenticChatPanel.tsx:1622 msgid "Failed to submit agentic message" msgstr "" @@ -4229,7 +4229,7 @@ msgstr "Feature available soon" msgid "Feedback" msgstr "Feedback" -#: src/components/common/FeedbackPortalModal.tsx:44 +#: src/components/common/FeedbackPortalModal.tsx:61 msgid "Feedback portal" msgstr "Feedback portal" @@ -4344,13 +4344,13 @@ msgstr "" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2143 -#: src/components/chat/AgenticChatPanel.tsx:2144 -#: src/components/chat/AgenticChatPanel.tsx:2278 +#: src/components/chat/AgenticChatPanel.tsx:2156 +#: src/components/chat/AgenticChatPanel.tsx:2157 +#: src/components/chat/AgenticChatPanel.tsx:2291 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:240 +#: src/components/chat/AgenticChatPanel.tsx:252 msgid "Focusing on:" msgstr "" @@ -4717,7 +4717,7 @@ msgstr "Hide projects" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Hide steps" msgstr "" @@ -4781,11 +4781,11 @@ msgstr "" "* What is the north star goal or key metric\n" "* What does success look like" -#: src/components/chat/AgenticChatPanel.tsx:1927 +#: src/components/chat/AgenticChatPanel.tsx:1940 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1943 +#: src/components/chat/AgenticChatPanel.tsx:1956 msgid "I applied the goal." msgstr "" @@ -4839,7 +4839,7 @@ msgstr "If you're trying to join an existing organization, you should not create msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1837 +#: src/components/chat/AgenticChatPanel.tsx:1850 msgid "Improve my setup" msgstr "" @@ -5133,7 +5133,7 @@ msgstr "" msgid "Join for support (24h)" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:115 +#: src/components/common/FeedbackPortalModal.tsx:132 msgid "Join our Slack community" msgstr "" @@ -5187,7 +5187,7 @@ msgstr "" msgid "Just started" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:64 +#: src/components/common/FeedbackPortalModal.tsx:81 msgid "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." msgstr "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." @@ -5418,11 +5418,11 @@ msgstr "Link copied" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link to your organisation's privacy policy that will be shown to participants" -#: src/components/chat/AgenticChatPanel.tsx:1827 +#: src/components/chat/AgenticChatPanel.tsx:1840 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1828 +#: src/components/chat/AgenticChatPanel.tsx:1841 msgid "List the conversations in this project." msgstr "" @@ -5481,7 +5481,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5535,7 +5535,7 @@ msgstr "Loading microphones..." msgid "Loading projects..." msgstr "Loading projects..." -#: src/components/chat/AgenticChatPanel.tsx:1770 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Loading this chat..." msgstr "" @@ -5791,7 +5791,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2246 +#: src/components/chat/AgenticChatPanel.tsx:2259 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -6798,8 +6798,8 @@ msgstr "" msgid "Open to the workspace" msgstr "Open to the workspace" -#: src/components/chat/ChatHistoryMessage.tsx:227 -#: src/components/chat/ChatHistoryMessage.tsx:231 +#: src/components/chat/ChatHistoryMessage.tsx:250 +#: src/components/chat/ChatHistoryMessage.tsx:254 msgid "Open transcript" msgstr "" @@ -6863,7 +6863,7 @@ msgstr "or" msgid "Or choose a time" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:91 +#: src/components/common/FeedbackPortalModal.tsx:108 msgid "Or prefer to chat directly?" msgstr "Or prefer to chat directly?" @@ -7727,7 +7727,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:587 +#: src/components/chat/AgenticChatPanel.tsx:600 msgid "Ran {0} steps at once" msgstr "" @@ -7852,7 +7852,7 @@ msgstr "" msgid "participant.button.record" msgstr "Record" -#: src/components/chat/AgenticChatPanel.tsx:2168 +#: src/components/chat/AgenticChatPanel.tsx:2181 msgid "Record a voice message" msgstr "" @@ -7888,7 +7888,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Recording Paused" -#: src/components/chat/AgenticChatPanel.tsx:859 +#: src/components/chat/AgenticChatPanel.tsx:872 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8094,7 +8094,7 @@ msgid "project.sidebar.chat.rename" msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1720 +#: src/components/chat/AgenticChatPanel.tsx:1733 msgid "Rename chat" msgstr "Rename chat" @@ -8412,7 +8412,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1838 +#: src/components/chat/AgenticChatPanel.tsx:1851 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8484,7 +8484,7 @@ msgstr "" msgid "Rows per page" msgstr "Rows per page" -#: src/components/chat/AgenticChatPanel.tsx:414 +#: src/components/chat/AgenticChatPanel.tsx:427 msgid "Running" msgstr "" @@ -8515,7 +8515,7 @@ msgstr "Save" msgid "Save access" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:296 +#: src/components/chat/ChatHistoryMessage.tsx:319 msgid "Save as template" msgstr "Save as template" @@ -8558,7 +8558,7 @@ msgstr "" msgid "Saving..." msgstr "Saving..." -#: src/components/common/FeedbackPortalModal.tsx:87 +#: src/components/common/FeedbackPortalModal.tsx:104 msgid "Scan or click the QR code to open the feedback portal" msgstr "" @@ -8940,7 +8940,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2205 +#: src/components/chat/AgenticChatPanel.tsx:2218 msgid "Send" msgstr "Send" @@ -9204,7 +9204,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Show steps" msgstr "" @@ -9323,7 +9323,7 @@ msgstr "Something went wrong generating your latest report." msgid "Something went wrong generating your report." msgstr "Something went wrong generating your report." -#: src/components/chat/AgenticChatPanel.tsx:206 +#: src/components/chat/AgenticChatPanel.tsx:218 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9372,6 +9372,10 @@ msgstr "Sort" msgid "Source {0}" msgstr "Source {0}" +#: src/components/chat/ChatHistoryMessage.tsx:359 +msgid "Sources" +msgstr "" + #: src/components/project/ProjectPortalEditor.tsx:644 msgid "Spanish" msgstr "Spanish" @@ -9487,7 +9491,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "Still stuck? Email <0>support@dembrane.com." #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2163 +#: src/components/chat/AgenticChatPanel.tsx:2176 msgid "Stop" msgstr "Stop" @@ -9496,7 +9500,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2153 +#: src/components/chat/AgenticChatPanel.tsx:2166 msgid "Stop recording and turn it into text" msgstr "" @@ -10206,7 +10210,7 @@ msgstr "This report is not yet available. " msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" -#: src/components/chat/AgenticChatPanel.tsx:204 +#: src/components/chat/AgenticChatPanel.tsx:216 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10273,7 +10277,7 @@ msgstr "" msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2182 +#: src/components/chat/AgenticChatPanel.tsx:2195 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "" @@ -10375,7 +10379,7 @@ msgstr "" msgid "To assign a new tag, please create it first in the portal settings." msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:57 +#: src/components/common/FeedbackPortalModal.tsx:74 msgid "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." msgstr "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." @@ -10392,7 +10396,7 @@ msgstr "Too large" msgid "Too long" msgstr "Too long" -#: src/components/chat/AgenticChatPanel.tsx:2117 +#: src/components/chat/AgenticChatPanel.tsx:2130 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10490,7 +10494,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:270 +#: src/components/chat/AgenticChatPanel.tsx:282 msgid "transcript" msgstr "" @@ -10506,7 +10510,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:269 +#: src/components/chat/AgenticChatPanel.tsx:281 msgid "transcript excerpt" msgstr "" @@ -11017,7 +11021,7 @@ msgstr "Usage this cycle" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2264 +#: src/components/chat/AgenticChatPanel.tsx:2277 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" @@ -11301,7 +11305,7 @@ msgstr "" 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." -#: src/components/common/FeedbackPortalModal.tsx:50 +#: src/components/common/FeedbackPortalModal.tsx:67 msgid "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." msgstr "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." @@ -11424,11 +11428,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "What should ECHO analyse or generate from the conversations?" -#: src/components/chat/AgenticChatPanel.tsx:1833 +#: src/components/chat/AgenticChatPanel.tsx:1846 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1832 +#: src/components/chat/AgenticChatPanel.tsx:1845 msgid "What themes came up?" msgstr "" @@ -11498,7 +11502,7 @@ msgid "Where would you like to go?" msgstr "Where would you like to go?" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1810 +#: src/components/chat/AgenticChatPanel.tsx:1823 msgid "Where would you like to start?" msgstr "" @@ -11541,11 +11545,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:588 +#: src/components/chat/AgenticChatPanel.tsx:601 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1682 +#: src/components/chat/AgenticChatPanel.tsx:1695 msgid "Working on your answer..." msgstr "" @@ -11809,7 +11813,7 @@ msgstr "You need an invitation from a colleague" msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" -#: src/components/chat/AgenticChatPanel.tsx:202 +#: src/components/chat/AgenticChatPanel.tsx:214 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/cs-CZ.ts b/echo/frontend/src/locales/cs-CZ.ts index 170176bda..648e1dbb3 100644 --- a/echo/frontend/src/locales/cs-CZ.ts +++ b/echo/frontend/src/locales/cs-CZ.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.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" views\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"A report is already being generated for this project. Please wait for it to complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Account password\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action By\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Add conversations to your project first\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Almost there\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Already added to this chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Already in context\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Announcements\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"IOBCIN\":[\"Audio Tip\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Book a call with us\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"iaPtht\":[\"copy\"],\"he3ygx\":[\"Copy\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"YrOV6x\":[\"Determines under which GDPR legal basis personal data is processed. This setting applies to all your projects and can be changed in your account settings.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"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\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Failed to reschedule. Please choose a time further in the future and try again.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"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\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Font Size\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generating report...\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"hMOYzR\":[\"Generating your report...\"],\"DDcvSo\":[\"German\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Go to Settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"I understand\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Legal Basis\"],\"7kyKF5\":[\"Legal basis updated\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link to your organisation's privacy policy that will be shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Mark all read\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Mark as read\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"New conversations added since this report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"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.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"No one on the organisation yet.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Or prefer to chat directly?\"],\"1h45Hu\":[\"Or write your own\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"Organiser's Privacy Policy URL\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Pick a date\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"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)\"],\"Lu1j4b\":[\"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).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Project Library | dembrane\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Recording limit reached\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Return home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rows per page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Select at least one event\"],\"d3O/ZP\":[\"Select at least one other topic before deleting this one\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Select up to 2 focus areas for your report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"65A04M\":[\"Spanish\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"This part of the page failed to load. Reloading usually fixes it. If it keeps happening, head back home.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"This workspace has used its included recording hours. Ask an organisation admin to upgrade.\"],\"nHYAFS\":[\"This workspace has used its included recording hours. Upgrade to keep using voice.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Time\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Upload\"],\"V/OOEy\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Username\"],\"1Nt3Kg\":[\"Using default dembrane logo\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"We couldn't find the page you were looking for. It may have moved.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"myUTw1\":[\"When a report has been generated for the project\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" views\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"A report is already being generated for this project. Please wait for it to complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Account password\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action By\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Add conversations to your project first\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Almost there\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Already added to this chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Already in context\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Announcements\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"IOBCIN\":[\"Audio Tip\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Book a call with us\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"iaPtht\":[\"copy\"],\"he3ygx\":[\"Copy\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"YrOV6x\":[\"Determines under which GDPR legal basis personal data is processed. This setting applies to all your projects and can be changed in your account settings.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"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\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Failed to reschedule. Please choose a time further in the future and try again.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"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\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Font Size\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generating report...\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"hMOYzR\":[\"Generating your report...\"],\"DDcvSo\":[\"German\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Go to Settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"I understand\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Legal Basis\"],\"7kyKF5\":[\"Legal basis updated\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link to your organisation's privacy policy that will be shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Mark all read\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Mark as read\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"New conversations added since this report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"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.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"No one on the organisation yet.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Or prefer to chat directly?\"],\"1h45Hu\":[\"Or write your own\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"Organiser's Privacy Policy URL\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Pick a date\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"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)\"],\"Lu1j4b\":[\"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).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Project Library | dembrane\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Recording limit reached\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Return home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rows per page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Select at least one event\"],\"d3O/ZP\":[\"Select at least one other topic before deleting this one\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Select up to 2 focus areas for your report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"sBJ5MF\":[\"Sources\"],\"65A04M\":[\"Spanish\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"This part of the page failed to load. Reloading usually fixes it. If it keeps happening, head back home.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"This workspace has used its included recording hours. Ask an organisation admin to upgrade.\"],\"nHYAFS\":[\"This workspace has used its included recording hours. Upgrade to keep using voice.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Time\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Upload\"],\"V/OOEy\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Username\"],\"1Nt3Kg\":[\"Using default dembrane logo\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"We couldn't find the page you were looking for. It may have moved.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"myUTw1\":[\"When a report has been generated for the project\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/de-DE.po b/echo/frontend/src/locales/de-DE.po index bf448c394..eee48bd62 100644 --- a/echo/frontend/src/locales/de-DE.po +++ b/echo/frontend/src/locales/de-DE.po @@ -214,7 +214,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2101 +#: src/components/chat/AgenticChatPanel.tsx:2114 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -479,11 +479,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:267 +#: src/components/chat/AgenticChatPanel.tsx:279 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:266 +#: src/components/chat/AgenticChatPanel.tsx:278 msgid "{name}'s transcript excerpt" msgstr "" @@ -1152,7 +1152,7 @@ msgstr "Erweitert (Tipps und best practices)" msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: src/components/chat/AgenticChatPanel.tsx:385 +#: src/components/chat/AgenticChatPanel.tsx:398 msgid "Agent run failed" msgstr "" @@ -1436,7 +1436,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2250 +#: src/components/chat/AgenticChatPanel.tsx:2263 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1530,7 +1530,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1813 +#: src/components/chat/AgenticChatPanel.tsx:1826 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1547,7 +1547,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2231 +#: src/components/chat/AgenticChatPanel.tsx:2244 msgid "Ask about your conversations..." msgstr "" @@ -1885,7 +1885,7 @@ msgstr "" msgid "Book a call" msgstr "Einen Anruf buchen" -#: src/components/common/FeedbackPortalModal.tsx:98 +#: src/components/common/FeedbackPortalModal.tsx:115 msgid "Book a call with us" msgstr "Buchen Sie einen Termin mit uns" @@ -1987,11 +1987,11 @@ msgstr "" #: src/components/conversation/ConversationAccordion.tsx:336 #: src/components/common/InputModal.tsx:77 #: src/components/common/ImageCropModal.tsx:145 -#: src/components/common/FeedbackPortalModal.tsx:124 +#: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:734 -#: src/components/chat/AgenticChatPanel.tsx:2139 +#: src/components/chat/AgenticChatPanel.tsx:747 +#: src/components/chat/AgenticChatPanel.tsx:2152 msgid "Cancel" msgstr "Abbrechen" @@ -2024,7 +2024,7 @@ msgstr "Abbrechen" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:722 +#: src/components/chat/AgenticChatPanel.tsx:735 msgid "Cancel current run" msgstr "" @@ -2190,7 +2190,7 @@ msgstr "Das Ändern der Sprache während eines aktiven Chats kann unerwartete Er #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1657 +#: src/components/chat/AgenticChatPanel.tsx:1670 msgid "Chat" msgstr "Chat" @@ -2529,7 +2529,7 @@ msgstr "Inhalt" msgid "Context" msgstr "Kontext" -#: src/components/chat/ChatHistoryMessage.tsx:394 +#: src/components/chat/ChatHistoryMessage.tsx:419 msgid "Context added:" msgstr "Kontext hinzugefügt:" @@ -3269,7 +3269,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2268 +#: src/components/chat/AgenticChatPanel.tsx:2281 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3457,7 +3457,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:404 +#: src/components/chat/AgenticChatPanel.tsx:417 msgid "Done" msgstr "" @@ -3827,8 +3827,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:409 -#: src/components/chat/AgenticChatPanel.tsx:1759 +#: src/components/chat/AgenticChatPanel.tsx:422 +#: src/components/chat/AgenticChatPanel.tsx:1772 msgid "Error" msgstr "Fehler" @@ -4180,11 +4180,11 @@ msgstr "Ergebnis 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/chat/AgenticChatPanel.tsx:1650 +#: src/components/chat/AgenticChatPanel.tsx:1663 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1609 +#: src/components/chat/AgenticChatPanel.tsx:1622 msgid "Failed to submit agentic message" msgstr "" @@ -4230,7 +4230,7 @@ msgstr "Funktion bald verfügbar" msgid "Feedback" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:44 +#: src/components/common/FeedbackPortalModal.tsx:61 msgid "Feedback portal" msgstr "Feedback-Portal" @@ -4345,13 +4345,13 @@ msgstr "" msgid "Focus" msgstr "Fokus" -#: src/components/chat/AgenticChatPanel.tsx:2143 -#: src/components/chat/AgenticChatPanel.tsx:2144 -#: src/components/chat/AgenticChatPanel.tsx:2278 +#: src/components/chat/AgenticChatPanel.tsx:2156 +#: src/components/chat/AgenticChatPanel.tsx:2157 +#: src/components/chat/AgenticChatPanel.tsx:2291 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:240 +#: src/components/chat/AgenticChatPanel.tsx:252 msgid "Focusing on:" msgstr "" @@ -4718,7 +4718,7 @@ msgstr "" msgid "Hide revision data" msgstr "Revisionsdaten verbergen" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Hide steps" msgstr "" @@ -4782,11 +4782,11 @@ msgstr "" "* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\n" "* Wie sieht Erfolg aus" -#: src/components/chat/AgenticChatPanel.tsx:1927 +#: src/components/chat/AgenticChatPanel.tsx:1940 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1943 +#: src/components/chat/AgenticChatPanel.tsx:1956 msgid "I applied the goal." msgstr "" @@ -4840,7 +4840,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1837 +#: src/components/chat/AgenticChatPanel.tsx:1850 msgid "Improve my setup" msgstr "" @@ -5134,7 +5134,7 @@ msgstr "" msgid "Join for support (24h)" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:115 +#: src/components/common/FeedbackPortalModal.tsx:132 msgid "Join our Slack community" msgstr "" @@ -5188,7 +5188,7 @@ msgstr "" msgid "Just started" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:64 +#: src/components/common/FeedbackPortalModal.tsx:81 msgid "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." msgstr "Sprechen oder schreiben Sie einfach natürlich. Ihr Beitrag geht direkt an unser Produktteam und hilft uns wirklich, dembrane besser zu machen. Wir lesen alles." @@ -5419,11 +5419,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link zur Datenschutzerklärung Ihrer Organisation, die angezeigt wird" -#: src/components/chat/AgenticChatPanel.tsx:1827 +#: src/components/chat/AgenticChatPanel.tsx:1840 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1828 +#: src/components/chat/AgenticChatPanel.tsx:1841 msgid "List the conversations in this project." msgstr "" @@ -5482,7 +5482,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5536,7 +5536,7 @@ msgstr "Mikrofone werden geladen..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1770 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Loading this chat..." msgstr "" @@ -5792,7 +5792,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2246 +#: src/components/chat/AgenticChatPanel.tsx:2259 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -6799,8 +6799,8 @@ msgstr "" msgid "Open to the workspace" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:227 -#: src/components/chat/ChatHistoryMessage.tsx:231 +#: src/components/chat/ChatHistoryMessage.tsx:250 +#: src/components/chat/ChatHistoryMessage.tsx:254 msgid "Open transcript" msgstr "" @@ -6864,7 +6864,7 @@ msgstr "oder" msgid "Or choose a time" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:91 +#: src/components/common/FeedbackPortalModal.tsx:108 msgid "Or prefer to chat directly?" msgstr "Oder lieber direkt chatten?" @@ -7728,7 +7728,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:587 +#: src/components/chat/AgenticChatPanel.tsx:600 msgid "Ran {0} steps at once" msgstr "" @@ -7853,7 +7853,7 @@ msgstr "" msgid "participant.button.record" msgstr "Aufnehmen" -#: src/components/chat/AgenticChatPanel.tsx:2168 +#: src/components/chat/AgenticChatPanel.tsx:2181 msgid "Record a voice message" msgstr "" @@ -7889,7 +7889,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Aufnahme pausiert" -#: src/components/chat/AgenticChatPanel.tsx:859 +#: src/components/chat/AgenticChatPanel.tsx:872 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8095,7 +8095,7 @@ msgid "project.sidebar.chat.rename" msgstr "Umbenennen" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1720 +#: src/components/chat/AgenticChatPanel.tsx:1733 msgid "Rename chat" msgstr "Chat umbenennen" @@ -8413,7 +8413,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Dateien vor dem Hochladen überprüfen" -#: src/components/chat/AgenticChatPanel.tsx:1838 +#: src/components/chat/AgenticChatPanel.tsx:1851 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8485,7 +8485,7 @@ msgstr "" msgid "Rows per page" msgstr "Zeilen pro Seite" -#: src/components/chat/AgenticChatPanel.tsx:414 +#: src/components/chat/AgenticChatPanel.tsx:427 msgid "Running" msgstr "" @@ -8516,7 +8516,7 @@ msgstr "Speichern" msgid "Save access" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:296 +#: src/components/chat/ChatHistoryMessage.tsx:319 msgid "Save as template" msgstr "Als Vorlage speichern" @@ -8559,7 +8559,7 @@ msgstr "" msgid "Saving..." msgstr "Speichern..." -#: src/components/common/FeedbackPortalModal.tsx:87 +#: src/components/common/FeedbackPortalModal.tsx:104 msgid "Scan or click the QR code to open the feedback portal" msgstr "" @@ -8941,7 +8941,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2205 +#: src/components/chat/AgenticChatPanel.tsx:2218 msgid "Send" msgstr "Senden" @@ -9205,7 +9205,7 @@ msgstr "Referenzen anzeigen" msgid "Show revision data" msgstr "Revisionsdaten anzeigen" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Show steps" msgstr "" @@ -9324,7 +9324,7 @@ msgstr "Beim Erstellen Ihres letzten Berichts ist etwas schiefgelaufen." msgid "Something went wrong generating your report." msgstr "Beim Erstellen Ihres Berichts ist etwas schiefgelaufen." -#: src/components/chat/AgenticChatPanel.tsx:206 +#: src/components/chat/AgenticChatPanel.tsx:218 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9373,6 +9373,10 @@ msgstr "Sortieren" msgid "Source {0}" msgstr "Quelle {0}" +#: src/components/chat/ChatHistoryMessage.tsx:359 +msgid "Sources" +msgstr "" + #: src/components/project/ProjectPortalEditor.tsx:644 msgid "Spanish" msgstr "Spanisch" @@ -9488,7 +9492,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2163 +#: src/components/chat/AgenticChatPanel.tsx:2176 msgid "Stop" msgstr "Stopp" @@ -9497,7 +9501,7 @@ msgstr "Stopp" msgid "participant.button.stop" msgstr "Beenden" -#: src/components/chat/AgenticChatPanel.tsx:2153 +#: src/components/chat/AgenticChatPanel.tsx:2166 msgid "Stop recording and turn it into text" msgstr "" @@ -10207,7 +10211,7 @@ msgstr "Dieser Bericht ist derzeit nicht verfügbar. " msgid "This report was opened by {0} people" msgstr "Dieser Bericht wurde von {0} Personen geöffnet" -#: src/components/chat/AgenticChatPanel.tsx:204 +#: src/components/chat/AgenticChatPanel.tsx:216 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10274,7 +10278,7 @@ msgstr "Dieser Arbeitsbereich hat die enthaltenen Aufnahmestunden verbraucht. Bi msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "Dieser Arbeitsbereich hat die enthaltenen Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen." -#: src/components/chat/AgenticChatPanel.tsx:2182 +#: src/components/chat/AgenticChatPanel.tsx:2195 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "Dieser Arbeitsbereich hat seine Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen." @@ -10376,7 +10380,7 @@ msgstr "" msgid "To assign a new tag, please create it first in the portal settings." msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:57 +#: src/components/common/FeedbackPortalModal.tsx:74 msgid "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." msgstr "Um uns zu helfen, darauf zu reagieren, versuchen Sie anzugeben, wo es passiert ist und was Sie versucht haben zu tun. Bei Fehlern, sagen Sie uns, was schiefgelaufen ist. Bei Ideen, sagen Sie uns, welches Bedürfnis es für Sie lösen würde." @@ -10393,7 +10397,7 @@ msgstr "Zu groß" msgid "Too long" msgstr "Zu lang" -#: src/components/chat/AgenticChatPanel.tsx:2117 +#: src/components/chat/AgenticChatPanel.tsx:2130 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10491,7 +10495,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribieren..." -#: src/components/chat/AgenticChatPanel.tsx:270 +#: src/components/chat/AgenticChatPanel.tsx:282 msgid "transcript" msgstr "" @@ -10507,7 +10511,7 @@ msgstr "Transkript" msgid "Transcript copied to clipboard" msgstr "Transkript in die Zwischenablage kopiert" -#: src/components/chat/AgenticChatPanel.tsx:269 +#: src/components/chat/AgenticChatPanel.tsx:281 msgid "transcript excerpt" msgstr "" @@ -11016,7 +11020,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2264 +#: src/components/chat/AgenticChatPanel.tsx:2277 msgid "Use Shift + Enter to add a new line" msgstr "Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen" @@ -11300,7 +11304,7 @@ msgstr "" 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." -#: src/components/common/FeedbackPortalModal.tsx:50 +#: src/components/common/FeedbackPortalModal.tsx:67 msgid "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." msgstr "Wir würden gerne von Ihnen hören. Ob Sie eine Idee für etwas Neues haben, auf einen Fehler gestoßen sind, eine Übersetzung entdeckt haben, die sich falsch anfühlt, oder einfach teilen möchten, wie es läuft." @@ -11423,11 +11427,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "Was soll ECHO aus den Gesprächen analysieren oder generieren?" -#: src/components/chat/AgenticChatPanel.tsx:1833 +#: src/components/chat/AgenticChatPanel.tsx:1846 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1832 +#: src/components/chat/AgenticChatPanel.tsx:1845 msgid "What themes came up?" msgstr "" @@ -11497,7 +11501,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1810 +#: src/components/chat/AgenticChatPanel.tsx:1823 msgid "Where would you like to start?" msgstr "" @@ -11540,11 +11544,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:588 +#: src/components/chat/AgenticChatPanel.tsx:601 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1682 +#: src/components/chat/AgenticChatPanel.tsx:1695 msgid "Working on your answer..." msgstr "" @@ -11808,7 +11812,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung" -#: src/components/chat/AgenticChatPanel.tsx:202 +#: src/components/chat/AgenticChatPanel.tsx:214 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/de-DE.ts b/echo/frontend/src/locales/de-DE.ts index e3f27046c..440704337 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.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" Aufrufe\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Gespräche • Bearbeitet \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspekte\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 Aufruf\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. Wenn ein Gesprächs- oder Berichtereignis eintritt, senden wir die Daten automatisch an deine URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"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)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"Ein neuer Bericht wird automatisch zum geplanten Zeitpunkt erstellt und veröffentlicht.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"Für dieses Projekt wird bereits ein Bericht erstellt. Bitte warte, bis er fertig ist.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Konto\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Aktion von\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"8T7YRB\":[\"Fugen Sie zuerst Gesprache zu Ihrem Projekt hinzu\"],\"LL1rvo\":[\"Benutzerdefiniertes Thema hinzufügen\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Thema hinzufügen\"],\"AHaRrL\":[\"Übersetzungen hinzufügen\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"Du6bPw\":[\"Adresse\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Werkzeuggetriebene Ausführung\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Alle\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Alle Vorlagen\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Fast geschafft\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Ein unerwarteter Fehler ist aufgetreten. Neu laden oder zur Startseite zurückkehren hilft meistens.\"],\"F4cOH1\":[\"Analyse Sprache\"],\"ZlwDi6\":[\"Analytik\"],\"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.\"],\"Dzr23X\":[\"Ankündigungen\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Transkript anonymisieren\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"YdiKaK\":[\"Anonymisierte Unterhaltung\"],\"iPiP6k\":[\"Anonymisierte Unterhaltung\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Erscheinungsbild\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Anwenden\"],\"4TwsNi\":[\"Vorlage anwenden\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"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.\"],\"uqhbrg\":[\"Sind Sie sicher, dass Sie diesen Chat 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.\"],\"yrk3z3\":[\"Sind Sie sicher, dass Sie dieses benutzerdefinierte Thema löschen möchten? Dies kann nicht rückgängig gemacht werden.\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"ELQ+fw\":[\"Bist du sicher, dass du diesen Bericht löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"e3BGhi\":[\"Möchten Sie diese Vorlage wirklich löschen? Dies kann nicht rückgängig gemacht werden.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"ZmeZPn\":[\"Sind Sie sicher, dass Sie Ihr Profilbild entfernen möchten?\"],\"wQ5jM6\":[\"Sind Sie sicher, dass Sie Ihr benutzerdefiniertes Logo entfernen möchten? Stattdessen wird das Standard-dembrane-Logo verwendet.\"],\"F+vBv0\":[\"Fragen\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio-Download nicht verfügbar für anonymisierte Unterhaltungen\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio-Wiedergabe nicht verfügbar für anonymisierte Unterhaltungen\"],\"IOBCIN\":[\"Audio-Tipp\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar entfernt\"],\"jSKImf\":[\"Avatar aktualisiert\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"UNaXdI\":[\"Zurück zu Vorlagen\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"KKLfx1\":[\"Buchen Sie einen Termin mit uns\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"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?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Planung abbrechen\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"SL9Qao\":[\"Kann nicht innerhalb von 10 Minuten vor dem geplanten Zeitpunkt umgeplant werden\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Karte\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Sprache ändern\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Passwort ändern\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat-Name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"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\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-verwaltet\"],\"+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\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Sammlung\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"CfO59/\":[\"Vergleichen & Gegenüberstellen Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"7VpPHA\":[\"Bestätigen\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Neues Passwort bestätigen\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"vz1fGK\":[\"Umplanung 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\"],\"participant.modal.s3check.title\":[\"Verbindungsproblem\"],\"WimHuY\":[\"Verbindung ungesund\"],\"l9fkrm\":[\"Einwilligung\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Inhalt\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"JX3KT4\":[\"Kontextbezogene Vorschläge\"],\"xGVfLh\":[\"Weiter\"],\"participant.button.continue\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Weiter\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"Gespräch\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"iaPtht\":[\"Kopie\"],\"he3ygx\":[\"Kopieren\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Link kopieren\"],\"H4brGj\":[\"Link in die Zwischenablage kopieren\"],\"AjrNNs\":[\"Berichtsinhalt kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Deine Auswahl konnte nicht übernommen werden. Wähle unten erneut.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Konnte nicht in die Zwischenablage kopiert werden. Bitte versuchen Sie es erneut.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Die Gesprächsliste konnte nicht geöffnet werden. Versuche es erneut.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"oJfYM5\":[\"Einen Forschungsbrief aus den letzten Gesprächen erstellen\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Bibliothek erstellen\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Bericht erstellen\"],\"A5hiCy\":[\"Vorlage erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Erstellt am\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Avatar zuschneiden\"],\"udBqWc\":[\"Bild zuschneiden\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Logo zuschneiden\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"Pn2B7/\":[\"Aktuelles Passwort\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Datum\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"K/78Yl\":[\"Multistufige Analyse mit live Werkzeugausführung delegieren\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Chat löschen\"],\"2GCE3m\":[\"Gespräch löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"j5pYC4\":[\"Benutzerdefiniertes Thema löschen\"],\"mp235G\":[\"Projekt löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"rUWrSE\":[\"Bericht löschen\"],\"qr0gpK\":[\"Tag löschen\"],\"DFjdv0\":[\"Vorlage löschen\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Webhook löschen\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Beschreiben Sie, was die Sprachmodell aus dem Gespräch extrahieren oder zusammenfassen soll...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Bestimmt, unter welcher GDPR-Rechtsgrundlage personenbezogene Daten verarbeitet werden. Dies beeinflusst die Informationen, die an Teilnehmer und betroffene Personen gezeigt werden und deren Rechte.\"],\"YrOV6x\":[\"Bestimmt, unter welcher GDPR-Rechtsgrundlage personenbezogene Daten verarbeitet werden. Diese Einstellung gilt für alle Ihre Projekte und kann in Ihren Kontoeinstellungen geändert werden.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Anzeigename\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Nächste Aktionen erstellen und nach Priorität organisieren\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplizieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"z.B. \\\"Fokus auf Nachhaltigkeitsthemen\\\" oder \\\"Was denken die Teilnehmenden über die neue Richtlinie?\\\"\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"z.B. Wöchentliche Stakeholder-Zusammenfassung\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"Y/3VME\":[\"Benutzerdefiniertes Thema bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Bearbeitungsmodus\"],\"niSWGL\":[\"Optionen bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht 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\"],\"O3oNi5\":[\"E-Mail\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji, das neben dem Thema angezeigt wird, z.B. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"D3AnH0\":[\"Explore aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Aktuelles Passwort eingeben\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"VpwcSk\":[\"Neues Passwort eingeben\"],\"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.\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Vollbild verlassen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimentell\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"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\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"UQ6LqT\":[\"Benutzerdefiniertes Thema konnte nicht erstellt werden\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Benutzerdefiniertes Thema konnte nicht gelöscht werden\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"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\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Avatar konnte nicht entfernt werden\"],\"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\"],\"IMUHg3\":[\"Neuplanung fehlgeschlagen. Bitte wahlen Sie einen spateren Zeitpunkt und versuchen Sie es erneut.\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Benutzerdefiniertes Thema konnte nicht aktualisiert werden\"],\"BpuK7o\":[\"Fehler beim Aktualisieren der Rechtsgrundlage\"],\"Avee+B\":[\"Name konnte nicht aktualisiert werden\"],\"gnm1CH\":[\"Anheften konnte nicht aktualisiert werden\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Avatar konnte nicht hochgeladen werden\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback-Portal\"],\"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\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Finde Widersprüche und vorschlage Folgefragen\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Beendet\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Fokus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Schriftgröße\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"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.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Passwort vergessen?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Französisch\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"3qkggm\":[\"Vollbild\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generieren\"],\"EIdJgG\":[\"Neuen Bericht erstellen\"],\"QsUhrf\":[\"Bericht erstellen\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"MWSGhX\":[\"Bibliothek generieren\"],\"5SWGxv\":[\"Jetzt erstellen\"],\"GWUJ9X\":[\"Stattdessen jetzt erstellen\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Bericht wird generiert...\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"hMOYzR\":[\"Dein Bericht wird erstellt...\"],\"DDcvSo\":[\"Deutsch\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Vollbild\"],\"iWpEwy\":[\"Zur Startseite\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Zur Einstellungen\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"uMjvI3\":[\"Bericht anleiten\"],\"myXGZW\":[\"Angeleitet\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"eHo/Jc\":[\"Daten verbergen\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Bestimmtes Konzept hervorheben\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Startseite\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"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.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portal-Link einschließen\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Erkenntnisse\"],\"MSVCjk\":[\"Anweisungen für die Generierung des Verifizierungsergebnisses\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP-Adresse\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"Es sieht so aus, als hätten Sie noch keinen Bericht für dieses Projekt. Erstellen Sie einen, um eine Übersicht Ihrer Gespräche zu erhalten.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"nfvG6u\":[\"Italienisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Einen Moment bitte\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Sprechen oder schreiben Sie einfach natürlich. Ihr Beitrag geht direkt an unser Produktteam und hilft uns wirklich, dembrane besser zu machen. Wir lesen alles.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"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.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Sprache\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Neueste\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Rechtsgrundlage\"],\"7kyKF5\":[\"Rechtsgrundlage aktualisiert\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"gkv8iG\":[\"Kennzeichen\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link zur Datenschutzerklärung Ihrer Organisation, die angezeigt wird\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live Agent Ausführungsmodus\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Vorschau\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"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...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Anmelden\"],\"LM/dWU\":[\"Anmelden | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo entfernt\"],\"MjfaMh\":[\"Logo aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Längste zuerst\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Vorlagen verwalten\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Modus\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"weitere\"],\"JcD7qf\":[\"Weitere Aktionen\"],\"QWdKwH\":[\"Verschieben\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Muss mindestens 10 Minuten in der Zukunft liegen\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Meine Vorlagen\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name aktualisiert\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"Neu\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"u2uElg\":[\"Neue Gesprache seit diesem Bericht hinzugefugt\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Neues Passwort\"],\"7vhWI8\":[\"Neues Passwort\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Neuer Bericht\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Neueste zuerst\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.next\":[\"Weiter\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"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\"],\"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.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Noch keine Gesprache. Sie konnen jetzt einen Bericht planen und Gesprache werden aufgenommen, sobald sie hinzugefugt werden.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Noch niemand in der Organisation.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"1iQvuD\":[\"Noch keine Berichte\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"Keine Vorlagen für {searchQuery} gefunden\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"Keine Verify Themen verfügbar.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Älteste zuerst\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Laufend\"],\"conversation.ongoing\":[\"Laufend\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Ändern Sie diese Einstellung nur in Absprache mit den verantwortlichen Personen für die Datenschutzverantwortung in Ihrer Organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Öffnen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls auf Englisch zurückgegriffen wird)\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Optionen\"],\"BzEFor\":[\"oder\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Oder lieber direkt chatten?\"],\"1h45Hu\":[\"Oder schreiben Sie Ihren eigenen\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"URL der Datenschutzerklärung der Organisatoren\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Passwort\"],\"zJx6Vx\":[\"Passwort geändert\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Ausstehend\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"zmwvG2\":[\"Telefon\"],\"B8mlc2\":[\"Wahlen Sie ein Datum\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Anheften\"],\"u8qC4w\":[\"Projekt anheften\"],\"S+WiJ3\":[\"Vorlagen hier für schnellen Zugriff anheften.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Angeheftet ist voll (max. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Angeheftete Vorlagen\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch per Text antworten, indem Sie auf das Textsymbol klicken.\\n**Bitte lassen Sie diesen Bildschirm eingeschaltet**\\n(schwarzer Bildschirm = keine Aufnahme)\"],\"Lu1j4b\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch per Text antworten, indem Sie auf das Textsymbol klicken.\\n**Bitte lassen Sie diesen Bildschirm eingeschaltet**\\n(schwarzer Bildschirm = keine Aufnahme).\\nIhre Transkription wird anonymisiert und Ihr Host kann Ihre Aufnahme nicht anhören.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG oder WebP. Wird zu einem Kreis zugeschnitten.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Inhalt\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"S8ugMC\":[\"Bericht drucken\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projekt erstellt\"],\"zjTrs1\":[\"Projektstandard: aktiviert. Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Projektbibliothek | dembrane\"],\"QDjWwu\":[\"Projekt Meta Zusammenfassung\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Projektübersicht | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projekte\"],\"DK5DV3\":[\"Projekte | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"EEYbdt\":[\"Veröffentlichen\"],\"vsX8VJ\":[\"Veröffentlichen Sie diesen Bericht, um den Portal-Link anzuzeigen\"],\"IHzoSN\":[\"Veröffentlichen Sie diesen Bericht, um einen Freigabelink zu erhalten\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Neues Passwort erneut eingeben\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Vorlesen\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.s3check.reconnect\":[\"Erneut verbinden\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Aufnehmen\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Aufnahmelimit erreicht\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Neu generieren\"],\"PpFJd2\":[\"Zusammenfassung neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"HPitDS\":[\"Registrieren | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Seite neu laden\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Benutzer daran erinnern, vor dem Abschließen zu überprüfen\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Entfernen\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Profilbild entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"O90CN2\":[\"Logo entfernen\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"6PsaMr\":[\"Chat umbenennen\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Antwort Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Bericht\"],\"e/MQa5\":[\"Bericht wird bereits erstellt\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"hh/mvZ\":[\"Berichtserstellung abgebrochen\"],\"sSy8vA\":[\"Bericht wird erstellt...\"],\"v7O77U\":[\"Die Berichtserstellung wurde abgebrochen. Du kannst unten einen neuen Bericht starten.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"M9snPp\":[\"Bericht geplant\"],\"u9r3Di\":[\"Report-Vorlagen stehen auf unserer Roadmap.\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"t9yxlZ\":[\"Berichte\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Zugriff anfordern\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"8H5nRH\":[\"Passwort zurücksetzen anfordern | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"TMLAx2\":[\"Erforderlich\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Umplanen\"],\"6eIR/n\":[\"Umplanen auf\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Zurücksetzen\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"9uplIY\":[\"Passwort zurücksetzen | dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"+gmVxi\":[\"Hertranskription nicht verfügbar für anonymisierte Unterhaltungen\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"2fCpt5\":[\"Zur Startseite\"],\"5k0NLb\":[\"Review\"],\"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.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Speichern\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Als Vorlage speichern\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Änderungen speichern\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"5dVjYt\":[\"Vorlage speichern\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Speichern...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Planen\"],\"wCGy0o\":[\"Bericht planen\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Nach unten scrollen\"],\"A1taO8\":[\"Suchen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Suche und wähle die Gespräche für diesen Chat aus.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Gespräche suchen\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"Bis bald\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"d3O/ZP\":[\"Mindestens ein anderes Thema auswählen, bevor dieses gelöscht wird\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Wahlen Sie bis zu 2 Schwerpunkte fur Ihren Bericht\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer für \\\"Verifizieren\\\" verwenden können.\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Senden\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Sitzungsname\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Bericht teilen\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"nnWGzO\":[\"Teilen Sie Ihre Ideen mit unserem Team\"],\"4o0klJ\":[\"Teilen Sie Ihre Stimme, indem Sie den QR-Code scannen\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Ihr zuletzt fertiggestellter Bericht wird angezeigt.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Überspringen\"],\"participant.button.verify_prompt.skip\":[\"Überspringen\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack-Community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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ß).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Etwas blockiert Ihre Verbindung. Ihr Audio wird nicht gespeichert, solange dieses Problem nicht behoben ist.\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"mwpVVD\":[\"Beim Erstellen Ihres letzten Berichts ist etwas schiefgelaufen.\"],\"2WNFmv\":[\"Beim Erstellen Ihres Berichts ist etwas schiefgelaufen.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"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\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"65A04M\":[\"Spanisch\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Neu starten\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategische Planung\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Erfolg\"],\"aG+cH9\":[\"Dynamische Vorschläge basierend auf Ihrem Gespräch vorschlagen.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Zusammenfassen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template übernommen\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Vorlagenname\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Vorlagen\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"Der Bericht kann bis zu 5 Minuten nach der gewählten Zeit starten.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Design\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Denke nach...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Dies kann passieren, wenn ein VPN oder eine Firewall die Verbindung blockiert. Versuchen Sie, Ihr VPN zu deaktivieren, zu einem anderen Netzwerk zu wechseln (z. B. mobiler Hotspot) oder wenden Sie sich an Ihre IT-Abteilung.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Diese Informationen sind anonymisiert\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"Bibliothek\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Dieser Teil der Seite konnte nicht geladen werden. Neu laden behebt das meistens. Wenn es weiterhin passiert, kehren Sie zur Startseite zurück.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"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.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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.\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"Dieser Arbeitsbereich hat die enthaltenen Aufnahmestunden verbraucht. Bitte einen Organisations-Admin, ein Upgrade durchzuführen.\"],\"nHYAFS\":[\"Dieser Arbeitsbereich hat die enthaltenen Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen.\"],\"1pzlg0\":[\"Dieser Arbeitsbereich hat seine Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Uhrzeit\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tipp: Sie können auch eine Vorlage aus jeder gesendeten Chat-Nachricht erstellen oder eine bestehende Vorlage duplizieren.\"],\"MHrjPM\":[\"Titel\"],\"1xkgU6\":[\"Titel automatisch generiert\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Um uns zu helfen, darauf zu reagieren, versuchen Sie anzugeben, wo es passiert ist und was Sie versucht haben zu tun. Bei Fehlern, sagen Sie uns, was schiefgelaufen ist. Bei Ideen, sagen Sie uns, welches Bedürfnis es für Sie lösen würde.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Thema erfolgreich erstellt\"],\"Sawj4V\":[\"Thema erfolgreich gelöscht\"],\"xcp3ny\":[\"Themenbezeichnung\"],\"vQoAht\":[\"Thema erfolgreich aktualisiert\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribieren...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Frag mal\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Ausschalten\"],\"QOnnq7\":[\"Anonymisierung ausschalten?\"],\"portal.anonymization.disable.warning\":[\"Das Deaktivieren der Anonymisierung während laufender Aufnahmen kann unbeabsichtigte Folgen haben. Aktive Gespräche werden auch während der Aufnahme betroffen. Bitte verwenden Sie dies mit Vorsicht.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Nachricht eingeben oder / für Vorlagen drücken...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Loslösen\"],\"vSdeRU\":[\"Löse zuerst ein Projekt (max. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Löse zuerst ein Projekt (max. 3)\"],\"dx+iaL\":[\"Projekt lösen\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Unbenannter Bericht\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Aktualisieren\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Hochladen\"],\"V/OOEy\":[\"Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"AIGPM8\":[\"Avatar hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Benutzername\"],\"1Nt3Kg\":[\"Standard-dembrane-Logo verwendet\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Erinnerung zur Verifizierung\"],\"participant.banner.verification_required\":[\"Verifizierung erforderlich\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Themen\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Ansicht\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Warten auf den Abschluss der Gespräche, bevor ein Bericht erstellt wird.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"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.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"Wir konnten die gesuchte Seite nicht finden. Möglicherweise wurde sie verschoben.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"Wir würden gerne von Ihnen hören. Ob Sie eine Idee für etwas Neues haben, auf einen Fehler gestoßen sind, eine Übersetzung entdeckt haben, die sich falsch anfühlt, oder einfach teilen möchten, wie es läuft.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Willkommen bei dembrane!\"],\"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“.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Willkommen!\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"Was soll ECHO aus den Gesprächen analysieren oder generieren?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"myUTw1\":[\"Wenn ein Bericht für das Projekt erstellt wurde\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"KmUKwU\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Anonymisierte Unterhaltungen deaktivieren auch die Audio-Wiedergabe, den Audio-Download und die Hertranskription, um die Privatsphäre der Teilnehmer zu schützen. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"MEmr1I\":[\"Wenn das Gespräch abgeschlossen wird, werden Teilnehmer, die noch nicht verifiziert haben, aufgefordert, zu verifizieren oder zu überspringen\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"Wann soll der Bericht erstellt werden?\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Sie\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"Du kannst die Seite verlassen und später zurückkommen. Dein Bericht wird im Hintergrund weiter erstellt.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"Sie können es unten erneut versuchen.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Sie haben noch keine Ergebnisse verifiziert. Möchten Sie vor dem Abschluss verifizieren?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"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.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Sie erhalten bald \",[\"objectLabel\"],\" zur Verifizierung.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Die Erstellung deines neuesten Berichts wurde abgebrochen. Dein letzter abgeschlossener Bericht wird angezeigt.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Ihr Name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" Aufrufe\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Gespräche • Bearbeitet \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspekte\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 Aufruf\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. Wenn ein Gesprächs- oder Berichtereignis eintritt, senden wir die Daten automatisch an deine URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"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)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"Ein neuer Bericht wird automatisch zum geplanten Zeitpunkt erstellt und veröffentlicht.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"Für dieses Projekt wird bereits ein Bericht erstellt. Bitte warte, bis er fertig ist.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Konto\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Konto-Passwort\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Aktion von\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Aktion am\"],\"7L01XJ\":[\"Aktionen\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Aktive Filter\"],\"m16xKo\":[\"Hinzufügen\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Unterhaltungen zum Kontext hinzufügen\"],\"8T7YRB\":[\"Fugen Sie zuerst Gesprache zu Ihrem Projekt hinzu\"],\"LL1rvo\":[\"Benutzerdefiniertes Thema hinzufügen\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Thema hinzufügen\"],\"AHaRrL\":[\"Übersetzungen hinzufügen\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"Du6bPw\":[\"Adresse\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Werkzeuggetriebene Ausführung\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Alle\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Alle Vorlagen\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Teilnehmern erlauben, über den Link neue Gespräche zu beginnen\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Fast geschafft\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Bereits zu diesem Chat hinzugefügt\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Bereits im Kontext\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Ein unerwarteter Fehler ist aufgetreten. Neu laden oder zur Startseite zurückkehren hilft meistens.\"],\"F4cOH1\":[\"Analyse Sprache\"],\"ZlwDi6\":[\"Analytik\"],\"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.\"],\"Dzr23X\":[\"Ankündigungen\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Transkript anonymisieren\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"YdiKaK\":[\"Anonymisierte Unterhaltung\"],\"iPiP6k\":[\"Anonymisierte Unterhaltung\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Erscheinungsbild\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Anwenden\"],\"4TwsNi\":[\"Vorlage anwenden\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"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.\"],\"uqhbrg\":[\"Sind Sie sicher, dass Sie diesen Chat 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.\"],\"yrk3z3\":[\"Sind Sie sicher, dass Sie dieses benutzerdefinierte Thema löschen möchten? Dies kann nicht rückgängig gemacht werden.\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"ELQ+fw\":[\"Bist du sicher, dass du diesen Bericht löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"e3BGhi\":[\"Möchten Sie diese Vorlage wirklich löschen? Dies kann nicht rückgängig gemacht werden.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"ZmeZPn\":[\"Sind Sie sicher, dass Sie Ihr Profilbild entfernen möchten?\"],\"wQ5jM6\":[\"Sind Sie sicher, dass Sie Ihr benutzerdefiniertes Logo entfernen möchten? Stattdessen wird das Standard-dembrane-Logo verwendet.\"],\"F+vBv0\":[\"Fragen\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio-Download nicht verfügbar für anonymisierte Unterhaltungen\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio-Wiedergabe nicht verfügbar für anonymisierte Unterhaltungen\"],\"IOBCIN\":[\"Audio-Tipp\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar entfernt\"],\"jSKImf\":[\"Avatar aktualisiert\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"UNaXdI\":[\"Zurück zu Vorlagen\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Grundlegend (Wesentliche Tutorial-Folien)\"],\"epXTwc\":[\"Grundlegende Einstellungen\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"KKLfx1\":[\"Buchen Sie einen Termin mit uns\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"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?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Planung abbrechen\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"SL9Qao\":[\"Kann nicht innerhalb von 10 Minuten vor dem geplanten Zeitpunkt umgeplant werden\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Karte\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Sprache ändern\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Passwort ändern\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat-Name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"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\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-verwaltet\"],\"+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\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Sammlung\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"CfO59/\":[\"Vergleichen & Gegenüberstellen Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"7VpPHA\":[\"Bestätigen\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Neues Passwort bestätigen\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"vz1fGK\":[\"Umplanung 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\"],\"participant.modal.s3check.title\":[\"Verbindungsproblem\"],\"WimHuY\":[\"Verbindung ungesund\"],\"l9fkrm\":[\"Einwilligung\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Inhalt\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"JX3KT4\":[\"Kontextbezogene Vorschläge\"],\"xGVfLh\":[\"Weiter\"],\"participant.button.continue\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Weiter\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"Gespräch\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Abkühlung läuft. Verfügbar in \",[\"0\"]],\"6V3Ea3\":[\"Kopiert\"],\"84o0nc\":[\"Von dem ursprünglichen Gespräch kopiert\"],\"PiH3UR\":[\"Kopiert!\"],\"iaPtht\":[\"Kopie\"],\"he3ygx\":[\"Kopieren\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Link kopieren\"],\"H4brGj\":[\"Link in die Zwischenablage kopieren\"],\"AjrNNs\":[\"Berichtsinhalt kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Deine Auswahl konnte nicht übernommen werden. Wähle unten erneut.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Konnte nicht in die Zwischenablage kopiert werden. Bitte versuchen Sie es erneut.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Die Gesprächsliste konnte nicht geöffnet werden. Versuche es erneut.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"oJfYM5\":[\"Einen Forschungsbrief aus den letzten Gesprächen erstellen\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Bibliothek erstellen\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Bericht erstellen\"],\"A5hiCy\":[\"Vorlage erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Erstellt am\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Avatar zuschneiden\"],\"udBqWc\":[\"Bild zuschneiden\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Logo zuschneiden\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"Pn2B7/\":[\"Aktuelles Passwort\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Datum\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"K/78Yl\":[\"Multistufige Analyse mit live Werkzeugausführung delegieren\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Chat löschen\"],\"2GCE3m\":[\"Gespräch löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"j5pYC4\":[\"Benutzerdefiniertes Thema löschen\"],\"mp235G\":[\"Projekt löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"rUWrSE\":[\"Bericht löschen\"],\"qr0gpK\":[\"Tag löschen\"],\"DFjdv0\":[\"Vorlage löschen\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Webhook löschen\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Beschreiben Sie, was die Sprachmodell aus dem Gespräch extrahieren oder zusammenfassen soll...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Bestimmt, unter welcher GDPR-Rechtsgrundlage personenbezogene Daten verarbeitet werden. Dies beeinflusst die Informationen, die an Teilnehmer und betroffene Personen gezeigt werden und deren Rechte.\"],\"YrOV6x\":[\"Bestimmt, unter welcher GDPR-Rechtsgrundlage personenbezogene Daten verarbeitet werden. Diese Einstellung gilt für alle Ihre Projekte und kann in Ihren Kontoeinstellungen geändert werden.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Anzeigename\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Nächste Aktionen erstellen und nach Priorität organisieren\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplizieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"z.B. \\\"Fokus auf Nachhaltigkeitsthemen\\\" oder \\\"Was denken die Teilnehmenden über die neue Richtlinie?\\\"\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"z.B. Wöchentliche Stakeholder-Zusammenfassung\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"Y/3VME\":[\"Benutzerdefiniertes Thema bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Bearbeitungsmodus\"],\"niSWGL\":[\"Optionen bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht 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\"],\"O3oNi5\":[\"E-Mail\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji, das neben dem Thema angezeigt wird, z.B. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"D3AnH0\":[\"Explore aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Aktuelles Passwort eingeben\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"VpwcSk\":[\"Neues Passwort eingeben\"],\"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.\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Vollbild verlassen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimentell\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"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\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"UQ6LqT\":[\"Benutzerdefiniertes Thema konnte nicht erstellt werden\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Benutzerdefiniertes Thema konnte nicht gelöscht werden\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"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\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Avatar konnte nicht entfernt werden\"],\"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\"],\"IMUHg3\":[\"Neuplanung fehlgeschlagen. Bitte wahlen Sie einen spateren Zeitpunkt und versuchen Sie es erneut.\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Benutzerdefiniertes Thema konnte nicht aktualisiert werden\"],\"BpuK7o\":[\"Fehler beim Aktualisieren der Rechtsgrundlage\"],\"Avee+B\":[\"Name konnte nicht aktualisiert werden\"],\"gnm1CH\":[\"Anheften konnte nicht aktualisiert werden\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Avatar konnte nicht hochgeladen werden\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback-Portal\"],\"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\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Finde Widersprüche und vorschlage Folgefragen\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Beendet\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Fokus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Schriftgröße\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"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.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Passwort vergessen?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Französisch\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"3qkggm\":[\"Vollbild\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generieren\"],\"EIdJgG\":[\"Neuen Bericht erstellen\"],\"QsUhrf\":[\"Bericht erstellen\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"MWSGhX\":[\"Bibliothek generieren\"],\"5SWGxv\":[\"Jetzt erstellen\"],\"GWUJ9X\":[\"Stattdessen jetzt erstellen\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Bericht wird generiert...\"],\"kzY+nd\":[\"Zusammenfassung wird erstellt. Kurz warten ...\"],\"hMOYzR\":[\"Dein Bericht wird erstellt...\"],\"DDcvSo\":[\"Deutsch\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Vollbild\"],\"iWpEwy\":[\"Zur Startseite\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Zur Einstellungen\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"uMjvI3\":[\"Bericht anleiten\"],\"myXGZW\":[\"Angeleitet\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"eHo/Jc\":[\"Daten verbergen\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Bestimmtes Konzept hervorheben\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Startseite\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"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.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portal-Link einschließen\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Erkenntnisse\"],\"MSVCjk\":[\"Anweisungen für die Generierung des Verifizierungsergebnisses\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP-Adresse\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"Es sieht so aus, als hätten Sie noch keinen Bericht für dieses Projekt. Erstellen Sie einen, um eine Übersicht Ihrer Gespräche zu erhalten.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"nfvG6u\":[\"Italienisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Einen Moment bitte\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Sprechen oder schreiben Sie einfach natürlich. Ihr Beitrag geht direkt an unser Produktteam und hilft uns wirklich, dembrane besser zu machen. Wir lesen alles.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"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.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Sprache\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Neueste\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Mehr über Webhooks erfahren\"],\"ffCwpJ\":[\"Leer lassen, um das bestehende zu behalten\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Rechtsgrundlage\"],\"7kyKF5\":[\"Rechtsgrundlage aktualisiert\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"gkv8iG\":[\"Kennzeichen\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link zur Datenschutzerklärung Ihrer Organisation, die angezeigt wird\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live Agent Ausführungsmodus\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Vorschau\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"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...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Anmelden\"],\"LM/dWU\":[\"Anmelden | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo entfernt\"],\"MjfaMh\":[\"Logo aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Längste zuerst\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Vorlagen verwalten\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Alle als gelesen markieren\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Als gelesen markieren\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Modus\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"weitere\"],\"JcD7qf\":[\"Weitere Aktionen\"],\"QWdKwH\":[\"Verschieben\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Muss mindestens 10 Minuten in der Zukunft liegen\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Meine Vorlagen\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name aktualisiert\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"Neu\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"u2uElg\":[\"Neue Gesprache seit diesem Bericht hinzugefugt\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Neues Passwort\"],\"7vhWI8\":[\"Neues Passwort\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Neuer Bericht\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Neueste zuerst\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.next\":[\"Weiter\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"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\"],\"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.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Noch keine Gesprache. Sie konnen jetzt einen Bericht planen und Gesprache werden aufgenommen, sobald sie hinzugefugt werden.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Noch niemand in der Organisation.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"1iQvuD\":[\"Noch keine Berichte\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"Keine Vorlagen für {searchQuery} gefunden\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"Keine Verify Themen verfügbar.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Älteste zuerst\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Laufend\"],\"conversation.ongoing\":[\"Laufend\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Ändern Sie diese Einstellung nur in Absprache mit den verantwortlichen Personen für die Datenschutzverantwortung in Ihrer Organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Öffnen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls auf Englisch zurückgegriffen wird)\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Optionen\"],\"BzEFor\":[\"oder\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Oder lieber direkt chatten?\"],\"1h45Hu\":[\"Oder schreiben Sie Ihren eigenen\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"URL der Datenschutzerklärung der Organisatoren\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Passwort\"],\"zJx6Vx\":[\"Passwort geändert\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Ausstehend\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"zmwvG2\":[\"Telefon\"],\"B8mlc2\":[\"Wahlen Sie ein Datum\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Anheften\"],\"u8qC4w\":[\"Projekt anheften\"],\"S+WiJ3\":[\"Vorlagen hier für schnellen Zugriff anheften.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Angeheftet ist voll (max. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Angeheftete Vorlagen\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch per Text antworten, indem Sie auf das Textsymbol klicken.\\n**Bitte lassen Sie diesen Bildschirm eingeschaltet**\\n(schwarzer Bildschirm = keine Aufnahme)\"],\"Lu1j4b\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch per Text antworten, indem Sie auf das Textsymbol klicken.\\n**Bitte lassen Sie diesen Bildschirm eingeschaltet**\\n(schwarzer Bildschirm = keine Aufnahme).\\nIhre Transkription wird anonymisiert und Ihr Host kann Ihre Aufnahme nicht anhören.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG oder WebP. Wird zu einem Kreis zugeschnitten.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Inhalt\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"S8ugMC\":[\"Bericht drucken\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projekt erstellt\"],\"zjTrs1\":[\"Projektstandard: aktiviert. Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Projektbibliothek | dembrane\"],\"QDjWwu\":[\"Projekt Meta Zusammenfassung\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Projektübersicht | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projekte\"],\"DK5DV3\":[\"Projekte | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"EEYbdt\":[\"Veröffentlichen\"],\"vsX8VJ\":[\"Veröffentlichen Sie diesen Bericht, um den Portal-Link anzuzeigen\"],\"IHzoSN\":[\"Veröffentlichen Sie diesen Bericht, um einen Freigabelink zu erhalten\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Neues Passwort erneut eingeben\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Vorlesen\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.s3check.reconnect\":[\"Erneut verbinden\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Aufnehmen\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Aufnahmelimit erreicht\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Neu generieren\"],\"PpFJd2\":[\"Zusammenfassung neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"HPitDS\":[\"Registrieren | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Seite neu laden\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Benutzer daran erinnern, vor dem Abschließen zu überprüfen\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Entfernen\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Profilbild entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"O90CN2\":[\"Logo entfernen\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"6PsaMr\":[\"Chat umbenennen\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Antwort Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Bericht\"],\"e/MQa5\":[\"Bericht wird bereits erstellt\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"hh/mvZ\":[\"Berichtserstellung abgebrochen\"],\"sSy8vA\":[\"Bericht wird erstellt...\"],\"v7O77U\":[\"Die Berichtserstellung wurde abgebrochen. Du kannst unten einen neuen Bericht starten.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"M9snPp\":[\"Bericht geplant\"],\"u9r3Di\":[\"Report-Vorlagen stehen auf unserer Roadmap.\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"t9yxlZ\":[\"Berichte\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Zugriff anfordern\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"8H5nRH\":[\"Passwort zurücksetzen anfordern | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"TMLAx2\":[\"Erforderlich\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Umplanen\"],\"6eIR/n\":[\"Umplanen auf\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Zurücksetzen\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"9uplIY\":[\"Passwort zurücksetzen | dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"+gmVxi\":[\"Hertranskription nicht verfügbar für anonymisierte Unterhaltungen\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"2fCpt5\":[\"Zur Startseite\"],\"5k0NLb\":[\"Review\"],\"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.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Speichern\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Als Vorlage speichern\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Änderungen speichern\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"5dVjYt\":[\"Vorlage speichern\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Speichern...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Planen\"],\"wCGy0o\":[\"Bericht planen\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Nach unten scrollen\"],\"A1taO8\":[\"Suchen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Suche und wähle die Gespräche für diesen Chat aus.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Gespräche suchen\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"Bis bald\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle Ergebnisse auswählen\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Mindestens ein Ereignis auswählen\"],\"d3O/ZP\":[\"Mindestens ein anderes Thema auswählen, bevor dieses gelöscht wird\"],\"NK2YNj\":[\"Audio-Dateien auswählen\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Wähle Gespräche aus und finde genaue Zitate\"],\"LyHz7Q\":[\"Gespräche in der Seitenleiste auswählen\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Wahlen Sie bis zu 2 Schwerpunkte fur Ihren Bericht\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer für \\\"Verifizieren\\\" verwenden können.\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Senden\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Sitzungsname\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Bericht teilen\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"nnWGzO\":[\"Teilen Sie Ihre Ideen mit unserem Team\"],\"4o0klJ\":[\"Teilen Sie Ihre Stimme, indem Sie den QR-Code scannen\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Ihr zuletzt fertiggestellter Bericht wird angezeigt.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Überspringen\"],\"participant.button.verify_prompt.skip\":[\"Überspringen\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack-Community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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ß).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Etwas blockiert Ihre Verbindung. Ihr Audio wird nicht gespeichert, solange dieses Problem nicht behoben ist.\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"mwpVVD\":[\"Beim Erstellen Ihres letzten Berichts ist etwas schiefgelaufen.\"],\"2WNFmv\":[\"Beim Erstellen Ihres Berichts ist etwas schiefgelaufen.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"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\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"sBJ5MF\":[\"Sources\"],\"65A04M\":[\"Spanisch\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Neu starten\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategische Planung\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Erfolg\"],\"aG+cH9\":[\"Dynamische Vorschläge basierend auf Ihrem Gespräch vorschlagen.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Zusammenfassen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template übernommen\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Vorlagenname\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Vorlagen\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"Der Bericht kann bis zu 5 Minuten nach der gewählten Zeit starten.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Design\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Denke nach...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Dies kann passieren, wenn ein VPN oder eine Firewall die Verbindung blockiert. Versuchen Sie, Ihr VPN zu deaktivieren, zu einem anderen Netzwerk zu wechseln (z. B. mobiler Hotspot) oder wenden Sie sich an Ihre IT-Abteilung.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Diese Informationen sind anonymisiert\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"Bibliothek\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Dieser Teil der Seite konnte nicht geladen werden. Neu laden behebt das meistens. Wenn es weiterhin passiert, kehren Sie zur Startseite zurück.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"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.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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.\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"Dieser Arbeitsbereich hat die enthaltenen Aufnahmestunden verbraucht. Bitte einen Organisations-Admin, ein Upgrade durchzuführen.\"],\"nHYAFS\":[\"Dieser Arbeitsbereich hat die enthaltenen Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen.\"],\"1pzlg0\":[\"Dieser Arbeitsbereich hat seine Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Uhrzeit\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tipp: Sie können auch eine Vorlage aus jeder gesendeten Chat-Nachricht erstellen oder eine bestehende Vorlage duplizieren.\"],\"MHrjPM\":[\"Titel\"],\"1xkgU6\":[\"Titel automatisch generiert\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Um uns zu helfen, darauf zu reagieren, versuchen Sie anzugeben, wo es passiert ist und was Sie versucht haben zu tun. Bei Fehlern, sagen Sie uns, was schiefgelaufen ist. Bei Ideen, sagen Sie uns, welches Bedürfnis es für Sie lösen würde.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Thema erfolgreich erstellt\"],\"Sawj4V\":[\"Thema erfolgreich gelöscht\"],\"xcp3ny\":[\"Themenbezeichnung\"],\"vQoAht\":[\"Thema erfolgreich aktualisiert\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribieren...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Frag mal\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Ausschalten\"],\"QOnnq7\":[\"Anonymisierung ausschalten?\"],\"portal.anonymization.disable.warning\":[\"Das Deaktivieren der Anonymisierung während laufender Aufnahmen kann unbeabsichtigte Folgen haben. Aktive Gespräche werden auch während der Aufnahme betroffen. Bitte verwenden Sie dies mit Vorsicht.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Nachricht eingeben oder / für Vorlagen drücken...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Loslösen\"],\"vSdeRU\":[\"Löse zuerst ein Projekt (max. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Löse zuerst ein Projekt (max. 3)\"],\"dx+iaL\":[\"Projekt lösen\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Unbenannter Bericht\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Aktualisieren\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Hochladen\"],\"V/OOEy\":[\"Ein benutzerdefiniertes Logo hochladen, um das dembrane-Logo auf der Portal-Seite, im Dashboard, in Berichten und im Host-Guide zu ersetzen.\"],\"AIGPM8\":[\"Avatar hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Benutzername\"],\"1Nt3Kg\":[\"Standard-dembrane-Logo verwendet\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Erinnerung zur Verifizierung\"],\"participant.banner.verification_required\":[\"Verifizierung erforderlich\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Themen\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Ansicht\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Warten auf den Abschluss der Gespräche, bevor ein Bericht erstellt wird.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"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.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"Wir konnten die gesuchte Seite nicht finden. Möglicherweise wurde sie verschoben.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"Wir würden gerne von Ihnen hören. Ob Sie eine Idee für etwas Neues haben, auf einen Fehler gestoßen sind, eine Übersetzung entdeckt haben, die sich falsch anfühlt, oder einfach teilen möchten, wie es läuft.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Willkommen bei dembrane!\"],\"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“.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Willkommen!\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"Was soll ECHO aus den Gesprächen analysieren oder generieren?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"Wenn ein Teilnehmer das Portal öffnet, seine Details eingibt und ein Gespräch beginnt\"],\"myUTw1\":[\"Wenn ein Bericht für das Projekt erstellt wurde\"],\"7t3vo1\":[\"Wenn alle Audio in Text umgewandelt wurde und der vollständige Transkript verfügbar ist\"],\"N0GETg\":[\"Wenn werden Webhooks ausgelöst?\"],\"KmUKwU\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Anonymisierte Unterhaltungen deaktivieren auch die Audio-Wiedergabe, den Audio-Download und die Hertranskription, um die Privatsphäre der Teilnehmer zu schützen. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"MEmr1I\":[\"Wenn das Gespräch abgeschlossen wird, werden Teilnehmer, die noch nicht verifiziert haben, aufgefordert, zu verifizieren oder zu überspringen\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"Wann soll der Bericht erstellt werden?\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Sie\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"Du kannst die Seite verlassen und später zurückkommen. Dein Bericht wird im Hintergrund weiter erstellt.\"],\"E71LBI\":[\"Sie können nur bis zu \",[\"MAX_FILES\"],\" Dateien gleichzeitig hochladen. Nur die ersten \",[\"0\"],\" Dateien werden hinzugefügt.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"Sie können es unten erneut versuchen.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Sie haben noch keine Ergebnisse verifiziert. Möchten Sie vor dem Abschluss verifizieren?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"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.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Sie erhalten bald \",[\"objectLabel\"],\" zur Verifizierung.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Die Erstellung deines neuesten Berichts wurde abgebrochen. Dein letzter abgeschlossener Bericht wird angezeigt.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Ihr Name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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 6d43757a4..123357717 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -213,7 +213,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "{0, plural, one {# workspace} other {# workspaces}}" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2101 +#: src/components/chat/AgenticChatPanel.tsx:2114 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" @@ -478,11 +478,11 @@ msgstr "{liveProjectCount, plural, one {Delete the # project in this workspace b msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "{MONTHLY_BILLING_PREMIUM_PCT}% off" -#: src/components/chat/AgenticChatPanel.tsx:267 +#: src/components/chat/AgenticChatPanel.tsx:279 msgid "{name}'s conversation" msgstr "{name}'s conversation" -#: src/components/chat/AgenticChatPanel.tsx:266 +#: src/components/chat/AgenticChatPanel.tsx:278 msgid "{name}'s transcript excerpt" msgstr "{name}'s transcript excerpt" @@ -1151,7 +1151,7 @@ msgstr "Advanced (Tips and best practices)" msgid "Advanced Settings" msgstr "Advanced Settings" -#: src/components/chat/AgenticChatPanel.tsx:385 +#: src/components/chat/AgenticChatPanel.tsx:398 msgid "Agent run failed" msgstr "Agent run failed" @@ -1435,7 +1435,7 @@ msgid "Approaching a limit this month" msgstr "Approaching a limit this month" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2250 +#: src/components/chat/AgenticChatPanel.tsx:2263 msgid "Approaching limit: {0} / 32,000 characters" msgstr "Approaching limit: {0} / 32,000 characters" @@ -1529,7 +1529,7 @@ msgstr "Ask | dembrane" msgid "Ask a organisation admin to request this upgrade." msgstr "Ask a organisation admin to request this upgrade." -#: src/components/chat/AgenticChatPanel.tsx:1813 +#: src/components/chat/AgenticChatPanel.tsx:1826 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." @@ -1546,7 +1546,7 @@ msgid "Ask about these" msgstr "Ask about these" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2231 +#: src/components/chat/AgenticChatPanel.tsx:2244 msgid "Ask about your conversations..." msgstr "Ask about your conversations..." @@ -1884,7 +1884,7 @@ msgstr "Billing period" msgid "Book a call" msgstr "Book a call" -#: src/components/common/FeedbackPortalModal.tsx:98 +#: src/components/common/FeedbackPortalModal.tsx:115 msgid "Book a call with us" msgstr "Book a call with us" @@ -1986,11 +1986,11 @@ msgstr "can read" #: src/components/conversation/ConversationAccordion.tsx:336 #: src/components/common/InputModal.tsx:77 #: src/components/common/ImageCropModal.tsx:145 -#: src/components/common/FeedbackPortalModal.tsx:124 +#: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:734 -#: src/components/chat/AgenticChatPanel.tsx:2139 +#: src/components/chat/AgenticChatPanel.tsx:747 +#: src/components/chat/AgenticChatPanel.tsx:2152 msgid "Cancel" msgstr "Cancel" @@ -2023,7 +2023,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "Cancel anytime. You keep access until the period ends." -#: src/components/chat/AgenticChatPanel.tsx:722 +#: src/components/chat/AgenticChatPanel.tsx:735 msgid "Cancel current run" msgstr "Cancel current run" @@ -2189,7 +2189,7 @@ msgstr "Changing language during an active chat may lead to unexpected results. #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1657 +#: src/components/chat/AgenticChatPanel.tsx:1670 msgid "Chat" msgstr "Chat" @@ -2528,7 +2528,7 @@ msgstr "Content" msgid "Context" msgstr "Context" -#: src/components/chat/ChatHistoryMessage.tsx:394 +#: src/components/chat/ChatHistoryMessage.tsx:419 msgid "Context added:" msgstr "Context added:" @@ -3268,7 +3268,7 @@ msgstr "dembrane B.V. {0}, all rights reserved." #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2268 +#: src/components/chat/AgenticChatPanel.tsx:2281 msgid "dembrane can make mistakes. Please double-check responses." msgstr "dembrane can make mistakes. Please double-check responses." @@ -3456,7 +3456,7 @@ msgstr "Does not update on its own. Updated {updatedAgo}." #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:404 +#: src/components/chat/AgenticChatPanel.tsx:417 msgid "Done" msgstr "Done" @@ -3826,8 +3826,8 @@ msgstr "Entered details" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:409 -#: src/components/chat/AgenticChatPanel.tsx:1759 +#: src/components/chat/AgenticChatPanel.tsx:422 +#: src/components/chat/AgenticChatPanel.tsx:1772 msgid "Error" msgstr "Error" @@ -4179,11 +4179,11 @@ msgstr "Failed to revise outcome. 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/chat/AgenticChatPanel.tsx:1650 +#: src/components/chat/AgenticChatPanel.tsx:1663 msgid "Failed to stop run" msgstr "Failed to stop run" -#: src/components/chat/AgenticChatPanel.tsx:1609 +#: src/components/chat/AgenticChatPanel.tsx:1622 msgid "Failed to submit agentic message" msgstr "Failed to submit agentic message" @@ -4229,7 +4229,7 @@ msgstr "Feature available soon" msgid "Feedback" msgstr "Feedback" -#: src/components/common/FeedbackPortalModal.tsx:44 +#: src/components/common/FeedbackPortalModal.tsx:61 msgid "Feedback portal" msgstr "Feedback portal" @@ -4344,13 +4344,13 @@ msgstr "Fixture" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2143 -#: src/components/chat/AgenticChatPanel.tsx:2144 -#: src/components/chat/AgenticChatPanel.tsx:2278 +#: src/components/chat/AgenticChatPanel.tsx:2156 +#: src/components/chat/AgenticChatPanel.tsx:2157 +#: src/components/chat/AgenticChatPanel.tsx:2291 msgid "Focus on conversations" msgstr "Focus on conversations" -#: src/components/chat/AgenticChatPanel.tsx:240 +#: src/components/chat/AgenticChatPanel.tsx:252 msgid "Focusing on:" msgstr "Focusing on:" @@ -4717,7 +4717,7 @@ msgstr "Hide projects" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Hide steps" msgstr "Hide steps" @@ -4781,11 +4781,11 @@ msgstr "" "* What is the north star goal or key metric\n" "* What does success look like" -#: src/components/chat/AgenticChatPanel.tsx:1927 +#: src/components/chat/AgenticChatPanel.tsx:1940 msgid "I applied the canvas." msgstr "I applied the canvas." -#: src/components/chat/AgenticChatPanel.tsx:1943 +#: src/components/chat/AgenticChatPanel.tsx:1956 msgid "I applied the goal." msgstr "I applied the goal." @@ -4839,7 +4839,7 @@ msgstr "If you're trying to join an existing organization, you should not create msgid "Image style" msgstr "Image style" -#: src/components/chat/AgenticChatPanel.tsx:1837 +#: src/components/chat/AgenticChatPanel.tsx:1850 msgid "Improve my setup" msgstr "Improve my setup" @@ -5133,7 +5133,7 @@ msgstr "Join for support" msgid "Join for support (24h)" msgstr "Join for support (24h)" -#: src/components/common/FeedbackPortalModal.tsx:115 +#: src/components/common/FeedbackPortalModal.tsx:132 msgid "Join our Slack community" msgstr "Join our Slack community" @@ -5187,7 +5187,7 @@ msgstr "Just refreshed. Give it a moment." msgid "Just started" msgstr "Just started" -#: src/components/common/FeedbackPortalModal.tsx:64 +#: src/components/common/FeedbackPortalModal.tsx:81 msgid "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." msgstr "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." @@ -5418,11 +5418,11 @@ msgstr "Link copied" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link to your organisation's privacy policy that will be shown to participants" -#: src/components/chat/AgenticChatPanel.tsx:1827 +#: src/components/chat/AgenticChatPanel.tsx:1840 msgid "List my conversations" msgstr "List my conversations" -#: src/components/chat/AgenticChatPanel.tsx:1828 +#: src/components/chat/AgenticChatPanel.tsx:1841 msgid "List the conversations in this project." msgstr "List the conversations in this project." @@ -5481,7 +5481,7 @@ msgstr "Live recordings, transcription progress, and errors show up here as part msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "Live stream disconnected. Updating on a slower poll until it reconnects." -#: src/components/chat/AgenticChatPanel.tsx:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Live stream interrupted. Falling back to polling." msgstr "Live stream interrupted. Falling back to polling." @@ -5535,7 +5535,7 @@ msgstr "Loading microphones..." msgid "Loading projects..." msgstr "Loading projects..." -#: src/components/chat/AgenticChatPanel.tsx:1770 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Loading this chat..." msgstr "Loading this chat..." @@ -5791,7 +5791,7 @@ msgstr "Memory removed" msgid "Message from the dembrane team" msgstr "Message from the dembrane team" -#: src/components/chat/AgenticChatPanel.tsx:2246 +#: src/components/chat/AgenticChatPanel.tsx:2259 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." @@ -6798,8 +6798,8 @@ msgstr "Open the troubleshooting guide" msgid "Open to the workspace" msgstr "Open to the workspace" -#: src/components/chat/ChatHistoryMessage.tsx:227 -#: src/components/chat/ChatHistoryMessage.tsx:231 +#: src/components/chat/ChatHistoryMessage.tsx:250 +#: src/components/chat/ChatHistoryMessage.tsx:254 msgid "Open transcript" msgstr "Open transcript" @@ -6863,7 +6863,7 @@ msgstr "or" msgid "Or choose a time" msgstr "Or choose a time" -#: src/components/common/FeedbackPortalModal.tsx:91 +#: src/components/common/FeedbackPortalModal.tsx:108 msgid "Or prefer to chat directly?" msgstr "Or prefer to chat directly?" @@ -7727,7 +7727,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "Questions about how dembrane works, not only about your data." #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:587 +#: src/components/chat/AgenticChatPanel.tsx:600 msgid "Ran {0} steps at once" msgstr "Ran {0} steps at once" @@ -7852,7 +7852,7 @@ msgstr "Reconnecting" msgid "participant.button.record" msgstr "Record" -#: src/components/chat/AgenticChatPanel.tsx:2168 +#: src/components/chat/AgenticChatPanel.tsx:2181 msgid "Record a voice message" msgstr "Record a voice message" @@ -7888,7 +7888,7 @@ msgstr "Recording page" msgid "participant.modal.pause.title" msgstr "Recording Paused" -#: src/components/chat/AgenticChatPanel.tsx:859 +#: src/components/chat/AgenticChatPanel.tsx:872 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "Recording stopped at the five minute limit. Turning what you recorded into text." @@ -8094,7 +8094,7 @@ msgid "project.sidebar.chat.rename" msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1720 +#: src/components/chat/AgenticChatPanel.tsx:1733 msgid "Rename chat" msgstr "Rename chat" @@ -8412,7 +8412,7 @@ msgstr "Review before creating." msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1838 +#: src/components/chat/AgenticChatPanel.tsx:1851 msgid "Review my project settings and suggest improvements." msgstr "Review my project settings and suggest improvements." @@ -8484,7 +8484,7 @@ msgstr "Rough estimate to finish transcribing the backlog" msgid "Rows per page" msgstr "Rows per page" -#: src/components/chat/AgenticChatPanel.tsx:414 +#: src/components/chat/AgenticChatPanel.tsx:427 msgid "Running" msgstr "Running" @@ -8515,7 +8515,7 @@ msgstr "Save" msgid "Save access" msgstr "Save access" -#: src/components/chat/ChatHistoryMessage.tsx:296 +#: src/components/chat/ChatHistoryMessage.tsx:319 msgid "Save as template" msgstr "Save as template" @@ -8558,7 +8558,7 @@ msgstr "Saved as this project's goal." msgid "Saving..." msgstr "Saving..." -#: src/components/common/FeedbackPortalModal.tsx:87 +#: src/components/common/FeedbackPortalModal.tsx:104 msgid "Scan or click the QR code to open the feedback portal" msgstr "Scan or click the QR code to open the feedback portal" @@ -8940,7 +8940,7 @@ msgstr "Self-serve" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2205 +#: src/components/chat/AgenticChatPanel.tsx:2218 msgid "Send" msgstr "Send" @@ -9204,7 +9204,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Show steps" msgstr "Show steps" @@ -9323,7 +9323,7 @@ msgstr "Something went wrong generating your latest report." msgid "Something went wrong generating your report." msgstr "Something went wrong generating your report." -#: src/components/chat/AgenticChatPanel.tsx:206 +#: src/components/chat/AgenticChatPanel.tsx:218 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "Something went wrong on my side. Send your message again and I'll retry." @@ -9372,6 +9372,10 @@ msgstr "Sort" msgid "Source {0}" msgstr "Source {0}" +#: src/components/chat/ChatHistoryMessage.tsx:359 +msgid "Sources" +msgstr "Sources" + #: src/components/project/ProjectPortalEditor.tsx:644 msgid "Spanish" msgstr "Spanish" @@ -9487,7 +9491,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "Still stuck? Email <0>support@dembrane.com." #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2163 +#: src/components/chat/AgenticChatPanel.tsx:2176 msgid "Stop" msgstr "Stop" @@ -9496,7 +9500,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2153 +#: src/components/chat/AgenticChatPanel.tsx:2166 msgid "Stop recording and turn it into text" msgstr "Stop recording and turn it into text" @@ -10206,7 +10210,7 @@ msgstr "This report is not yet available. " msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" -#: src/components/chat/AgenticChatPanel.tsx:204 +#: src/components/chat/AgenticChatPanel.tsx:216 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "This request took too long, so I stopped it. Send it again and I'll retry." @@ -10273,7 +10277,7 @@ msgstr "This workspace has used its included recording hours. Ask an organisatio msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "This workspace has used its included recording hours. Upgrade to keep using voice." -#: src/components/chat/AgenticChatPanel.tsx:2182 +#: src/components/chat/AgenticChatPanel.tsx:2195 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "This workspace has used its recording hours. Upgrade to keep using voice." @@ -10375,7 +10379,7 @@ msgstr "to" msgid "To assign a new tag, please create it first in the portal settings." msgstr "To assign a new tag, please create it first in the portal settings." -#: src/components/common/FeedbackPortalModal.tsx:57 +#: src/components/common/FeedbackPortalModal.tsx:74 msgid "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." msgstr "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." @@ -10392,7 +10396,7 @@ msgstr "Too large" msgid "Too long" msgstr "Too long" -#: src/components/chat/AgenticChatPanel.tsx:2117 +#: src/components/chat/AgenticChatPanel.tsx:2130 msgid "Too many to list here. The assistant reads through them in batches." msgstr "Too many to list here. The assistant reads through them in batches." @@ -10490,7 +10494,7 @@ msgstr "Trainings" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:270 +#: src/components/chat/AgenticChatPanel.tsx:282 msgid "transcript" msgstr "transcript" @@ -10506,7 +10510,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:269 +#: src/components/chat/AgenticChatPanel.tsx:281 msgid "transcript excerpt" msgstr "transcript excerpt" @@ -11017,7 +11021,7 @@ msgstr "Usage this cycle" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2264 +#: src/components/chat/AgenticChatPanel.tsx:2277 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" @@ -11301,7 +11305,7 @@ msgstr "We still couldn't charge your method. Update it and try again." 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." -#: src/components/common/FeedbackPortalModal.tsx:50 +#: src/components/common/FeedbackPortalModal.tsx:67 msgid "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." msgstr "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." @@ -11424,11 +11428,11 @@ msgstr "What should be different about this?" msgid "What should ECHO analyse or generate from the conversations?" msgstr "What should ECHO analyse or generate from the conversations?" -#: src/components/chat/AgenticChatPanel.tsx:1833 +#: src/components/chat/AgenticChatPanel.tsx:1846 msgid "What themes came up across the conversations in this project?" msgstr "What themes came up across the conversations in this project?" -#: src/components/chat/AgenticChatPanel.tsx:1832 +#: src/components/chat/AgenticChatPanel.tsx:1845 msgid "What themes came up?" msgstr "What themes came up?" @@ -11498,7 +11502,7 @@ msgid "Where would you like to go?" msgstr "Where would you like to go?" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1810 +#: src/components/chat/AgenticChatPanel.tsx:1823 msgid "Where would you like to start?" msgstr "Where would you like to start?" @@ -11541,11 +11545,11 @@ msgid "Within my organisation" msgstr "Within my organisation" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:588 +#: src/components/chat/AgenticChatPanel.tsx:601 msgid "Worked through {0} steps" msgstr "Worked through {0} steps" -#: src/components/chat/AgenticChatPanel.tsx:1682 +#: src/components/chat/AgenticChatPanel.tsx:1695 msgid "Working on your answer..." msgstr "Working on your answer..." @@ -11809,7 +11813,7 @@ msgstr "You need an invitation from a colleague" msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" -#: src/components/chat/AgenticChatPanel.tsx:202 +#: src/components/chat/AgenticChatPanel.tsx:214 msgid "You stopped this run." msgstr "You stopped this run." diff --git a/echo/frontend/src/locales/en-US.ts b/echo/frontend/src/locales/en-US.ts index 170176bda..648e1dbb3 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.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" views\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"A report is already being generated for this project. Please wait for it to complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Account password\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action By\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Add conversations to your project first\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Almost there\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Already added to this chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Already in context\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Announcements\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"IOBCIN\":[\"Audio Tip\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Book a call with us\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"iaPtht\":[\"copy\"],\"he3ygx\":[\"Copy\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"YrOV6x\":[\"Determines under which GDPR legal basis personal data is processed. This setting applies to all your projects and can be changed in your account settings.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"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\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Failed to reschedule. Please choose a time further in the future and try again.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"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\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Font Size\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generating report...\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"hMOYzR\":[\"Generating your report...\"],\"DDcvSo\":[\"German\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Go to Settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"I understand\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Legal Basis\"],\"7kyKF5\":[\"Legal basis updated\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link to your organisation's privacy policy that will be shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Mark all read\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Mark as read\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"New conversations added since this report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"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.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"No one on the organisation yet.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Or prefer to chat directly?\"],\"1h45Hu\":[\"Or write your own\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"Organiser's Privacy Policy URL\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Pick a date\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"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)\"],\"Lu1j4b\":[\"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).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Project Library | dembrane\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Recording limit reached\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Return home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rows per page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Select at least one event\"],\"d3O/ZP\":[\"Select at least one other topic before deleting this one\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Select up to 2 focus areas for your report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"65A04M\":[\"Spanish\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"This part of the page failed to load. Reloading usually fixes it. If it keeps happening, head back home.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"This workspace has used its included recording hours. Ask an organisation admin to upgrade.\"],\"nHYAFS\":[\"This workspace has used its included recording hours. Upgrade to keep using voice.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Time\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Upload\"],\"V/OOEy\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Username\"],\"1Nt3Kg\":[\"Using default dembrane logo\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"We couldn't find the page you were looking for. It may have moved.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"myUTw1\":[\"When a report has been generated for the project\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" views\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"A report is already being generated for this project. Please wait for it to complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Account password\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action By\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Add conversations to your project first\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Almost there\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Already added to this chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Already in context\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Announcements\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"IOBCIN\":[\"Audio Tip\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Book a call with us\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"iaPtht\":[\"copy\"],\"he3ygx\":[\"Copy\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"YrOV6x\":[\"Determines under which GDPR legal basis personal data is processed. This setting applies to all your projects and can be changed in your account settings.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"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\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Failed to reschedule. Please choose a time further in the future and try again.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"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\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Font Size\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generating report...\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"hMOYzR\":[\"Generating your report...\"],\"DDcvSo\":[\"German\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Go to Settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"I understand\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Legal Basis\"],\"7kyKF5\":[\"Legal basis updated\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link to your organisation's privacy policy that will be shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Mark all read\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Mark as read\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"New conversations added since this report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"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.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"No one on the organisation yet.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Or prefer to chat directly?\"],\"1h45Hu\":[\"Or write your own\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"Organiser's Privacy Policy URL\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Pick a date\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"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)\"],\"Lu1j4b\":[\"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).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Project Library | dembrane\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Recording limit reached\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Return home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rows per page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Select at least one event\"],\"d3O/ZP\":[\"Select at least one other topic before deleting this one\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Select up to 2 focus areas for your report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"sBJ5MF\":[\"Sources\"],\"65A04M\":[\"Spanish\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"This part of the page failed to load. Reloading usually fixes it. If it keeps happening, head back home.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"This workspace has used its included recording hours. Ask an organisation admin to upgrade.\"],\"nHYAFS\":[\"This workspace has used its included recording hours. Upgrade to keep using voice.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Time\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Upload\"],\"V/OOEy\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Username\"],\"1Nt3Kg\":[\"Using default dembrane logo\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"We couldn't find the page you were looking for. It may have moved.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"myUTw1\":[\"When a report has been generated for the project\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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 e39ef02af..df01fa43f 100644 --- a/echo/frontend/src/locales/es-ES.po +++ b/echo/frontend/src/locales/es-ES.po @@ -214,7 +214,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2101 +#: src/components/chat/AgenticChatPanel.tsx:2114 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -479,11 +479,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:267 +#: src/components/chat/AgenticChatPanel.tsx:279 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:266 +#: src/components/chat/AgenticChatPanel.tsx:278 msgid "{name}'s transcript excerpt" msgstr "" @@ -1152,7 +1152,7 @@ msgstr "Avanzado (Consejos y best practices)" msgid "Advanced Settings" msgstr "Configuración Avanzada" -#: src/components/chat/AgenticChatPanel.tsx:385 +#: src/components/chat/AgenticChatPanel.tsx:398 msgid "Agent run failed" msgstr "" @@ -1436,7 +1436,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2250 +#: src/components/chat/AgenticChatPanel.tsx:2263 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1530,7 +1530,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1813 +#: src/components/chat/AgenticChatPanel.tsx:1826 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1547,7 +1547,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2231 +#: src/components/chat/AgenticChatPanel.tsx:2244 msgid "Ask about your conversations..." msgstr "" @@ -1885,7 +1885,7 @@ msgstr "" msgid "Book a call" msgstr "Reservar una llamada" -#: src/components/common/FeedbackPortalModal.tsx:98 +#: src/components/common/FeedbackPortalModal.tsx:115 msgid "Book a call with us" msgstr "Reserve una llamada con nosotros" @@ -1987,11 +1987,11 @@ msgstr "" #: src/components/conversation/ConversationAccordion.tsx:336 #: src/components/common/InputModal.tsx:77 #: src/components/common/ImageCropModal.tsx:145 -#: src/components/common/FeedbackPortalModal.tsx:124 +#: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:734 -#: src/components/chat/AgenticChatPanel.tsx:2139 +#: src/components/chat/AgenticChatPanel.tsx:747 +#: src/components/chat/AgenticChatPanel.tsx:2152 msgid "Cancel" msgstr "Cancelar" @@ -2024,7 +2024,7 @@ msgstr "Cancelar" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:722 +#: src/components/chat/AgenticChatPanel.tsx:735 msgid "Cancel current run" msgstr "" @@ -2190,7 +2190,7 @@ msgstr "Cambiar el idioma durante una conversación activa puede provocar result #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1657 +#: src/components/chat/AgenticChatPanel.tsx:1670 msgid "Chat" msgstr "Chat" @@ -2529,7 +2529,7 @@ msgstr "Contenido" msgid "Context" msgstr "Contexto" -#: src/components/chat/ChatHistoryMessage.tsx:394 +#: src/components/chat/ChatHistoryMessage.tsx:419 msgid "Context added:" msgstr "Contexto añadido:" @@ -3269,7 +3269,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2268 +#: src/components/chat/AgenticChatPanel.tsx:2281 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3457,7 +3457,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:404 +#: src/components/chat/AgenticChatPanel.tsx:417 msgid "Done" msgstr "" @@ -3827,8 +3827,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:409 -#: src/components/chat/AgenticChatPanel.tsx:1759 +#: src/components/chat/AgenticChatPanel.tsx:422 +#: src/components/chat/AgenticChatPanel.tsx:1772 msgid "Error" msgstr "Error" @@ -4180,11 +4180,11 @@ msgstr "Error al revisar el resultado. 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/chat/AgenticChatPanel.tsx:1650 +#: src/components/chat/AgenticChatPanel.tsx:1663 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1609 +#: src/components/chat/AgenticChatPanel.tsx:1622 msgid "Failed to submit agentic message" msgstr "" @@ -4230,7 +4230,7 @@ msgstr "Función disponible pronto" msgid "Feedback" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:44 +#: src/components/common/FeedbackPortalModal.tsx:61 msgid "Feedback portal" msgstr "Portal de comentarios" @@ -4345,13 +4345,13 @@ msgstr "" msgid "Focus" msgstr "Enfoque" -#: src/components/chat/AgenticChatPanel.tsx:2143 -#: src/components/chat/AgenticChatPanel.tsx:2144 -#: src/components/chat/AgenticChatPanel.tsx:2278 +#: src/components/chat/AgenticChatPanel.tsx:2156 +#: src/components/chat/AgenticChatPanel.tsx:2157 +#: src/components/chat/AgenticChatPanel.tsx:2291 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:240 +#: src/components/chat/AgenticChatPanel.tsx:252 msgid "Focusing on:" msgstr "" @@ -4718,7 +4718,7 @@ msgstr "" msgid "Hide revision data" msgstr "Ocultar datos de revisión" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Hide steps" msgstr "" @@ -4782,11 +4782,11 @@ msgstr "" "* ¿Cuál es el objetivo principal o métrica clave?\n" "* ¿Cómo se ve el éxito?" -#: src/components/chat/AgenticChatPanel.tsx:1927 +#: src/components/chat/AgenticChatPanel.tsx:1940 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1943 +#: src/components/chat/AgenticChatPanel.tsx:1956 msgid "I applied the goal." msgstr "" @@ -4840,7 +4840,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1837 +#: src/components/chat/AgenticChatPanel.tsx:1850 msgid "Improve my setup" msgstr "" @@ -5134,7 +5134,7 @@ msgstr "" msgid "Join for support (24h)" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:115 +#: src/components/common/FeedbackPortalModal.tsx:132 msgid "Join our Slack community" msgstr "" @@ -5188,7 +5188,7 @@ msgstr "" msgid "Just started" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:64 +#: src/components/common/FeedbackPortalModal.tsx:81 msgid "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." msgstr "Simplemente hable o escriba de forma natural. Su aporte llega directamente a nuestro equipo de producto y realmente nos ayuda a mejorar dembrane. Lo leemos todo." @@ -5419,11 +5419,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Enlace a la política de privacidad de tu organización que se mostrará a los participantes" -#: src/components/chat/AgenticChatPanel.tsx:1827 +#: src/components/chat/AgenticChatPanel.tsx:1840 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1828 +#: src/components/chat/AgenticChatPanel.tsx:1841 msgid "List the conversations in this project." msgstr "" @@ -5482,7 +5482,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5536,7 +5536,7 @@ msgstr "Cargando micrófonos..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1770 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Loading this chat..." msgstr "" @@ -5792,7 +5792,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2246 +#: src/components/chat/AgenticChatPanel.tsx:2259 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -6799,8 +6799,8 @@ msgstr "" msgid "Open to the workspace" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:227 -#: src/components/chat/ChatHistoryMessage.tsx:231 +#: src/components/chat/ChatHistoryMessage.tsx:250 +#: src/components/chat/ChatHistoryMessage.tsx:254 msgid "Open transcript" msgstr "" @@ -6864,7 +6864,7 @@ msgstr "o" msgid "Or choose a time" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:91 +#: src/components/common/FeedbackPortalModal.tsx:108 msgid "Or prefer to chat directly?" msgstr "O prefiere chatear directamente?" @@ -7728,7 +7728,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:587 +#: src/components/chat/AgenticChatPanel.tsx:600 msgid "Ran {0} steps at once" msgstr "" @@ -7853,7 +7853,7 @@ msgstr "" msgid "participant.button.record" msgstr "Grabar" -#: src/components/chat/AgenticChatPanel.tsx:2168 +#: src/components/chat/AgenticChatPanel.tsx:2181 msgid "Record a voice message" msgstr "" @@ -7889,7 +7889,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Grabación pausada" -#: src/components/chat/AgenticChatPanel.tsx:859 +#: src/components/chat/AgenticChatPanel.tsx:872 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8095,7 +8095,7 @@ msgid "project.sidebar.chat.rename" msgstr "Renombrar" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1720 +#: src/components/chat/AgenticChatPanel.tsx:1733 msgid "Rename chat" msgstr "Renombrar chat" @@ -8413,7 +8413,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Revisar archivos antes de subir" -#: src/components/chat/AgenticChatPanel.tsx:1838 +#: src/components/chat/AgenticChatPanel.tsx:1851 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8485,7 +8485,7 @@ msgstr "" msgid "Rows per page" msgstr "Filas por página" -#: src/components/chat/AgenticChatPanel.tsx:414 +#: src/components/chat/AgenticChatPanel.tsx:427 msgid "Running" msgstr "" @@ -8516,7 +8516,7 @@ msgstr "guardar" msgid "Save access" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:296 +#: src/components/chat/ChatHistoryMessage.tsx:319 msgid "Save as template" msgstr "Guardar como plantilla" @@ -8559,7 +8559,7 @@ msgstr "" msgid "Saving..." msgstr "Guardando..." -#: src/components/common/FeedbackPortalModal.tsx:87 +#: src/components/common/FeedbackPortalModal.tsx:104 msgid "Scan or click the QR code to open the feedback portal" msgstr "" @@ -8941,7 +8941,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2205 +#: src/components/chat/AgenticChatPanel.tsx:2218 msgid "Send" msgstr "Enviar" @@ -9205,7 +9205,7 @@ msgstr "Mostrar referencias" msgid "Show revision data" msgstr "Mostrar datos de revisión" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Show steps" msgstr "" @@ -9324,7 +9324,7 @@ msgstr "Algo salió mal al generar su último informe." msgid "Something went wrong generating your report." msgstr "Algo salió mal al generar su informe." -#: src/components/chat/AgenticChatPanel.tsx:206 +#: src/components/chat/AgenticChatPanel.tsx:218 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9373,6 +9373,10 @@ msgstr "Ordenar" msgid "Source {0}" msgstr "Fuente {0}" +#: src/components/chat/ChatHistoryMessage.tsx:359 +msgid "Sources" +msgstr "" + #: src/components/project/ProjectPortalEditor.tsx:644 msgid "Spanish" msgstr "Español" @@ -9488,7 +9492,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2163 +#: src/components/chat/AgenticChatPanel.tsx:2176 msgid "Stop" msgstr "Detener" @@ -9497,7 +9501,7 @@ msgstr "Detener" msgid "participant.button.stop" msgstr "Detener" -#: src/components/chat/AgenticChatPanel.tsx:2153 +#: src/components/chat/AgenticChatPanel.tsx:2166 msgid "Stop recording and turn it into text" msgstr "" @@ -10207,7 +10211,7 @@ msgstr "Este informe no está disponible. " msgid "This report was opened by {0} people" msgstr "Este informe fue abierto por {0} personas" -#: src/components/chat/AgenticChatPanel.tsx:204 +#: src/components/chat/AgenticChatPanel.tsx:216 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10274,7 +10278,7 @@ msgstr "Este espacio de trabajo ha agotado las horas de grabación incluidas. Pi msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "Este espacio de trabajo ha agotado las horas de grabación incluidas. Mejora tu plan para seguir usando la voz." -#: src/components/chat/AgenticChatPanel.tsx:2182 +#: src/components/chat/AgenticChatPanel.tsx:2195 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "Este espacio de trabajo ha agotado sus horas de grabación. Mejora tu plan para seguir usando la voz." @@ -10376,7 +10380,7 @@ msgstr "" msgid "To assign a new tag, please create it first in the portal settings." msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:57 +#: src/components/common/FeedbackPortalModal.tsx:74 msgid "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." msgstr "Para ayudarnos a actuar, intente incluir dónde ocurrió y qué estaba intentando hacer. Para errores, díganos qué salió mal. Para ideas, díganos qué necesidad resolvería para usted." @@ -10393,7 +10397,7 @@ msgstr "Demasiado grande" msgid "Too long" msgstr "Demasiado largo" -#: src/components/chat/AgenticChatPanel.tsx:2117 +#: src/components/chat/AgenticChatPanel.tsx:2130 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10491,7 +10495,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribiendo..." -#: src/components/chat/AgenticChatPanel.tsx:270 +#: src/components/chat/AgenticChatPanel.tsx:282 msgid "transcript" msgstr "" @@ -10507,7 +10511,7 @@ msgstr "Transcripción" msgid "Transcript copied to clipboard" msgstr "Transcripción copiada al portapapeles" -#: src/components/chat/AgenticChatPanel.tsx:269 +#: src/components/chat/AgenticChatPanel.tsx:281 msgid "transcript excerpt" msgstr "" @@ -11018,7 +11022,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2264 +#: src/components/chat/AgenticChatPanel.tsx:2277 msgid "Use Shift + Enter to add a new line" msgstr "Usa Shift + Enter para agregar una nueva línea" @@ -11302,7 +11306,7 @@ msgstr "" 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." -#: src/components/common/FeedbackPortalModal.tsx:50 +#: src/components/common/FeedbackPortalModal.tsx:67 msgid "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." msgstr "Nos encantaría saber de usted. Ya sea que tenga una idea para algo nuevo, haya encontrado un error, haya visto una traducción que no suena bien, o simplemente quiera compartir cómo le ha ido." @@ -11425,11 +11429,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "¿Qué debe ECHO analizar o generar a partir de las conversaciones?" -#: src/components/chat/AgenticChatPanel.tsx:1833 +#: src/components/chat/AgenticChatPanel.tsx:1846 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1832 +#: src/components/chat/AgenticChatPanel.tsx:1845 msgid "What themes came up?" msgstr "" @@ -11499,7 +11503,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1810 +#: src/components/chat/AgenticChatPanel.tsx:1823 msgid "Where would you like to start?" msgstr "" @@ -11542,11 +11546,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:588 +#: src/components/chat/AgenticChatPanel.tsx:601 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1682 +#: src/components/chat/AgenticChatPanel.tsx:1695 msgid "Working on your answer..." msgstr "" @@ -11810,7 +11814,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "Pareces estar desconectado, por favor verifica tu conexión a internet" -#: src/components/chat/AgenticChatPanel.tsx:202 +#: src/components/chat/AgenticChatPanel.tsx:214 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/es-ES.ts b/echo/frontend/src/locales/es-ES.ts index 678a10423..df477b971 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.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(opcional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" vistas\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversaciones • Editado \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"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.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspectos\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 vista\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. Cuando ocurre un evento de conversación o informe, enviamos automáticamente los datos a tu URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"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)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"Se generará y publicará automáticamente un nuevo informe en el horario programado.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"Ya se está generando un informe para este proyecto. Espera a que se complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Cuenta\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Acción de\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"8T7YRB\":[\"Agregue conversaciones a su proyecto primero\"],\"LL1rvo\":[\"Añadir Tema Personalizado\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Añadir Tema\"],\"AHaRrL\":[\"Añadir traducciones\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"Du6bPw\":[\"Dirección\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Ejecución guiada por herramientas\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Todo\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Todas las plantillas\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Casi listo\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Ya en el contexto\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Ha ocurrido un error inesperado. Recargar la página o volver al inicio suele ayudar.\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"ZlwDi6\":[\"Analíticas\"],\"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.\"],\"Dzr23X\":[\"Anuncios\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonimizar transcripción\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"YdiKaK\":[\"conversación anónima\"],\"iPiP6k\":[\"Conversación anónima\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Apariencia\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Aplicar\"],\"4TwsNi\":[\"Aplicar plantilla\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"uqhbrg\":[\"¿Está seguro de que desea eliminar este chat? 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.\"],\"yrk3z3\":[\"¿Estás seguro de que quieres eliminar este tema personalizado? Esta acción no se puede deshacer.\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"ELQ+fw\":[\"¿Estás seguro de que quieres eliminar este informe? Esta acción no se puede deshacer.\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"e3BGhi\":[\"¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"ZmeZPn\":[\"¿Está seguro de que desea eliminar su avatar?\"],\"wQ5jM6\":[\"¿Está seguro de que desea eliminar su logotipo personalizado? Se utilizará el logotipo predeterminado de dembrane.\"],\"F+vBv0\":[\"Preguntar\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"El descarga de audio no está disponible para conversaciones anónimas\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La reproducción de audio no está disponible para conversaciones anónimas\"],\"IOBCIN\":[\"Consejo de audio\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"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.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar eliminado\"],\"jSKImf\":[\"Avatar actualizado\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Volver a la selección\"],\"UNaXdI\":[\"Volver a plantillas\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Reservar una llamada\"],\"KKLfx1\":[\"Reserve una llamada con nosotros\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"Al eliminar este proyecto, eliminará todos los datos asociados. Esta acción no se puede deshacer. ¿Está completamente seguro?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancelar programación\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"SL9Qao\":[\"No se puede reprogramar dentro de los 10 minutos previos a la hora programada\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Tarjeta\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Cambiar idioma\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Cambiar contraseña\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Nombre del chat\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"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\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Cliente-manejado\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Colección\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"CfO59/\":[\"Comparar y Contrastar Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Completar\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"7VpPHA\":[\"Confirmar\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirmar nueva contraseña\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Publicar\"],\"vz1fGK\":[\"Confirmar reprogramación\"],\"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\"],\"participant.modal.s3check.title\":[\"Problema de conexión\"],\"WimHuY\":[\"Conexión no saludable\"],\"l9fkrm\":[\"Consentimiento\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Contenido\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"JX3KT4\":[\"Sugerencias contextuales\"],\"xGVfLh\":[\"Continuar\"],\"participant.button.continue\":[\"Continuar\"],\"participant.ready.to.begin.button.text\":[\"Continuar\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversación\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"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\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"iaPtht\":[\"copia\"],\"he3ygx\":[\"Copiar\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copiar enlace\"],\"H4brGj\":[\"Copiar enlace al portapapeles\"],\"AjrNNs\":[\"Copiar contenido del informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"OvEjsP\":[\"Copiando...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"No se pudo trasladar tu selección. Vuelve a elegir abajo.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"No se pudo copiar al portapapeles. Inténtelo de nuevo.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"No se pudo abrir la lista de conversaciones. Inténtalo de nuevo.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"oJfYM5\":[\"Crear un breve de investigación desde las conversaciones recientes\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Crear biblioteca\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Crear informe\"],\"A5hiCy\":[\"Crear plantilla\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Creado el\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Recortar avatar\"],\"udBqWc\":[\"Recortar imagen\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recortar logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Logo actual\"],\"Pn2B7/\":[\"Contraseña actual\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Fecha\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"K/78Yl\":[\"Delegación de análisis multi-paso con ejecución de herramientas en vivo\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Eliminar chat\"],\"2GCE3m\":[\"Eliminar conversación\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"j5pYC4\":[\"Eliminar tema personalizado\"],\"mp235G\":[\"Eliminar proyecto\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"rUWrSE\":[\"Eliminar informe\"],\"qr0gpK\":[\"Eliminar etiqueta\"],\"DFjdv0\":[\"Eliminar plantilla\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Eliminar Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Eliminado con éxito\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe lo que el modelo de lenguaje debe extraer o resumir de la conversación...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determina bajo qué base legal de GDPR se procesan los datos personales. Esto afecta a la información que se muestra a los participantes y a los derechos de los sujetos de datos.\"],\"YrOV6x\":[\"Determina bajo qué base legal de GDPR se procesan los datos personales. Esta configuración se aplica a todos tus proyectos y puede cambiarse en tus ajustes de cuenta.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Nombre para mostrar\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Borrador de acciones siguientes y organizarlas por prioridad\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"p. ej. \\\"Enfoque en temas de sostenibilidad\\\" o \\\"¿Qué piensan los participantes sobre la nueva política?\\\"\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"ej. Resumen semanal de partes interesadas\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"Y/3VME\":[\"Editar Tema Personalizado\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Modo edición\"],\"niSWGL\":[\"Editar opciones\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"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\"],\"O3oNi5\":[\"Correo electrónico\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji mostrado junto al tema, por ejemplo: 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"4KKbfZ\":[\"Habilitar participación\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Introduzca la contraseña actual\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"VpwcSk\":[\"Introduzca la nueva contraseña\"],\"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.\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"4kVRov\":[\"Ocurrió un error\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Salir de pantalla completa\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"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\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"UQ6LqT\":[\"Error al crear el tema personalizado\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Error al eliminar el tema personalizado\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"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\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"No se pudo eliminar el avatar\"],\"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\"],\"IMUHg3\":[\"Error al reprogramar. Por favor, elija un horario mas lejano e intentelo de nuevo.\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Error al actualizar el tema personalizado\"],\"BpuK7o\":[\"Error al actualizar la base legal\"],\"Avee+B\":[\"No se pudo actualizar el nombre\"],\"gnm1CH\":[\"Error al actualizar el pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"No se pudo subir el avatar\"],\"RW4V7P\":[\"Error al subir el logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Portal de comentarios\"],\"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\"],\"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\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Encontrar contradicciones y sugerir preguntas de seguimiento\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finalizado\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Enfoque\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Tamaño de fuente\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"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.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Francés\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"3qkggm\":[\"Pantalla completa\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generar\"],\"EIdJgG\":[\"Generar un nuevo informe\"],\"QsUhrf\":[\"Generar un informe\"],\"GRy59I\":[\"Generar un resumen primero\"],\"MWSGhX\":[\"Generar biblioteca\"],\"5SWGxv\":[\"Generar ahora\"],\"GWUJ9X\":[\"Generar ahora\"],\"QqIxfi\":[\"Generar secreto\"],\"gitFA/\":[\"Generar Resumen\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generando informe...\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"hMOYzR\":[\"Generando tu informe...\"],\"DDcvSo\":[\"Alemán\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"DXr0zk\":[\"Pantalla completa\"],\"iWpEwy\":[\"Ir al inicio\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Ir a Ajustes\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"uMjvI3\":[\"Guiar el informe\"],\"myXGZW\":[\"Guiado\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Oculto\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"eHo/Jc\":[\"Ocultar datos\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Concepto específico resaltado\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Inicio\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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?\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"Entiendo\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"Si está satisfecho con \",[\"objectLabel\"],\", haga clic en \\\"Aprobar\\\" para mostrar que se siente escuchado.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Incluir enlace del portal\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instrucciones para generar el resultado de la verificación\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Dirección IP\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"Parece que aún no tiene un informe para este proyecto. Genere uno para obtener una descripción general de sus conversaciones.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"nfvG6u\":[\"Italiano (solo funciones de ECHO, Transcripción y Resúmenes)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Un momento\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Simplemente hable o escriba de forma natural. Su aporte llega directamente a nuestro equipo de producto y realmente nos ayuda a mejorar dembrane. Lo leemos todo.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"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.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Idioma\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Último\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Base Legal\"],\"7kyKF5\":[\"Base legal actualizada\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"gkv8iG\":[\"Matrícula\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Enlace\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Enlace a la política de privacidad de tu organización que se mostrará a los participantes\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Vivo\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Modo de ejecución de agente en vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"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...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Iniciar sesión\"],\"LM/dWU\":[\"Iniciar sesión | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo eliminado\"],\"MjfaMh\":[\"Logo actualizado\"],\"nOhz3x\":[\"Cerrar sesión\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Más largo primero\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Gestionar plantillas\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Marcar como leído\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Modo\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"más\"],\"JcD7qf\":[\"Más acciones\"],\"QWdKwH\":[\"Mover\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Mover Conversación\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Debe ser al menos 10 minutos en el futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mis plantillas\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Nombre actualizado\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Nombre Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"Nuevo\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"u2uElg\":[\"Nuevas conversaciones agregadas desde este informe\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Nueva contraseña\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Nuevo informe\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Más nuevos primero\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.next\":[\"Siguiente\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No se encontraron acciones\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"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.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Aun no hay conversaciones. Puede programar un informe ahora y las conversaciones se incluiran una vez que se agreguen.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Aún no hay nadie en la organización.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"1iQvuD\":[\"Aún no hay informes\"],\"Ev2r9A\":[\"Sin resultados\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"Ninguna plantilla coincide con {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No hay temas de verificación disponibles.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Más antiguos primero\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"En curso\"],\"conversation.ongoing\":[\"En curso\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Solo cambia este ajuste en consulta con la(s) persona(s) responsable(s) del cumplimiento de la normativa de protección de datos dentro de tu organización.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Abrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Opcional\"],\"ZFIvWo\":[\"Opcional (recurre al inglés)\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Opciones\"],\"BzEFor\":[\"o\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"O prefiere chatear directamente?\"],\"1h45Hu\":[\"O escribe el tuyo\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"URL de la política de privacidad del organizador\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Contraseña\"],\"zJx6Vx\":[\"Contraseña cambiada\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"PTSHeg\":[\"Pausar lectura\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pendiente\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"La información personal será reemplazada por marcadores. La reproducción de audio, descarga y retranscripción se desactivarán para la nueva conversación.\"],\"zmwvG2\":[\"Teléfono\"],\"B8mlc2\":[\"Elija una fecha\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Fijar\"],\"u8qC4w\":[\"Fijar proyecto\"],\"S+WiJ3\":[\"Fije plantillas aquí para acceso rápido.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Fijados está lleno (máx. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Plantillas fijadas\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Grabe su respuesta haciendo clic en el botón \\\"Grabar\\\" a continuación. También puede responder en texto haciendo clic en el icono de texto.\\n**Mantenga esta pantalla encendida**\\n(pantalla negra = no está grabando)\"],\"Lu1j4b\":[\"Grabe su respuesta haciendo clic en el botón \\\"Grabar\\\" a continuación. También puede responder en texto haciendo clic en el icono de texto.\\n**Mantenga esta pantalla encendida**\\n(pantalla negra = no está grabando).\\nEsta transcripción será anonimizada y su anfitrión no podrá escuchar su grabación.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG o WebP. Se recortará en un círculo.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Contenido del Portal\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Editor del Portal\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"S8ugMC\":[\"Imprimir informe\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Proyecto creado\"],\"zjTrs1\":[\"Valor predeterminado del proyecto: activado. La información personal será reemplazada por marcadores. La reproducción de audio, descarga y retranscripción se desactivarán para la nueva conversación.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Biblioteca del Proyecto | dembrane\"],\"QDjWwu\":[\"Resumen Meta del Proyecto\"],\"lltun+\":[\"Project moved\"],\"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\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Vista General del Proyecto | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Proyectos\"],\"DK5DV3\":[\"Proyectos | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"EEYbdt\":[\"Publicar\"],\"vsX8VJ\":[\"Publique este informe primero para mostrar el enlace del portal\"],\"IHzoSN\":[\"Publique este informe para obtener un enlace para compartir\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Vuelva a introducir la nueva contraseña\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Leer en voz alta\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.s3check.reconnect\":[\"Reconectar\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Grabar\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Límite de grabación alcanzado\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerar\"],\"PpFJd2\":[\"Regenerar resumen\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"HPitDS\":[\"Registrar | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Recargar la página\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Recordar a los usuarios que verifiquen antes de finalizar\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Eliminar\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Eliminar avatar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"O90CN2\":[\"Eliminar logotipo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"6PsaMr\":[\"Renombrar chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Informe\"],\"e/MQa5\":[\"El informe ya se está generando\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"hh/mvZ\":[\"Generación del informe cancelada\"],\"sSy8vA\":[\"Generación del informe en curso...\"],\"v7O77U\":[\"La generación del informe fue cancelada. Puedes iniciar un nuevo informe a continuación.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"M9snPp\":[\"Informe programado\"],\"u9r3Di\":[\"Las plantillas de informes están en nuestra hoja de ruta.\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"t9yxlZ\":[\"Informes\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Solicitar Acceso\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"8H5nRH\":[\"Solicitar Restablecimiento de Contraseña | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"TMLAx2\":[\"Requerido\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reprogramar\"],\"6eIR/n\":[\"Reprogramar para\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Restablecer\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"9uplIY\":[\"Restablecer Contraseña | dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"+gmVxi\":[\"La retranscripción no está disponible para conversaciones anónimas\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Reintentar subida\"],\"2fCpt5\":[\"Volver al inicio\"],\"5k0NLb\":[\"Review\"],\"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.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Filas por página\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Guardar\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Guardar como plantilla\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Guardar Cambios\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"5dVjYt\":[\"Guardar plantilla\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Guardando...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Programar\"],\"wCGy0o\":[\"Programar informe\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Desplazarse al final\"],\"A1taO8\":[\"Buscar\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Busca y selecciona las conversaciones para este chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"Hasta pronto\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"d3O/ZP\":[\"Selecciona al menos un otro tema antes de eliminar este\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Seleccione hasta 2 areas de enfoque para su informe\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para \\\"Verificar\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Seleccionar un 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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Enviar\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"BVRW7i\":[\"Configuración | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Compartir informe\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"nnWGzO\":[\"Comparta sus ideas con nuestro equipo\"],\"4o0klJ\":[\"Comparta su voz escaneando el codigo QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Mostrando su informe completado más reciente.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Omitir\"],\"participant.button.verify_prompt.skip\":[\"Omitir\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Comunidad de Slack\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Algo está bloqueando tu conexión. Tu audio no se guardará a menos que se resuelva este problema.\"],\"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\"],\"mwpVVD\":[\"Algo salió mal al generar su último informe.\"],\"2WNFmv\":[\"Algo salió mal al generar su informe.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"65A04M\":[\"Español\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Estado\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Planificación Estratégica\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Éxito\"],\"aG+cH9\":[\"Sugerir sugerencias dinámicas basadas en su conversación.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Sugerido:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Resumir\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Etiquetas\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Nombre de plantilla\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Plantillas\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"El informe puede comenzar hasta 5 minutos después de la hora elegida.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Tema\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Pensando...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Esto puede ocurrir cuando una VPN o un firewall está bloqueando la conexión. Intenta desactivar tu VPN, cambiar a otra red (p. ej., punto de acceso móvil) o contacta con tu departamento de TI para obtener ayuda.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Esta información está anónima\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"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.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"Biblioteca\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Esta parte de la página no se ha cargado. Recargarla suele solucionarlo. Si sigue pasando, vuelve al inicio.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"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.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"Este espacio de trabajo ha agotado las horas de grabación incluidas. Pide a un administrador de la organización que mejore el plan.\"],\"nHYAFS\":[\"Este espacio de trabajo ha agotado las horas de grabación incluidas. Mejora tu plan para seguir usando la voz.\"],\"1pzlg0\":[\"Este espacio de trabajo ha agotado sus horas de grabación. Mejora tu plan para seguir usando la voz.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Hora\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Consejo: También puede crear una plantilla desde cualquier mensaje de chat que envíe, o duplicar una plantilla existente.\"],\"MHrjPM\":[\"Título\"],\"1xkgU6\":[\"Título auto-generado\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Para ayudarnos a actuar, intente incluir dónde ocurrió y qué estaba intentando hacer. Para errores, díganos qué salió mal. Para ideas, díganos qué necesidad resolvería para usted.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Tema creado correctamente\"],\"Sawj4V\":[\"Tema eliminado correctamente\"],\"xcp3ny\":[\"Etiqueta de tema\"],\"vQoAht\":[\"Tema actualizado correctamente\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribiendo...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Desactivar\"],\"QOnnq7\":[\"¿Desactivar la anonimización?\"],\"portal.anonymization.disable.warning\":[\"Desactivar la anonimización mientras hay grabaciones en curso puede tener consecuencias no deseadas. Las conversaciones activas también se verán afectadas durante la grabación. Por favor, use esto con precaución.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Escribe un mensaje o pulsa / para plantillas...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ucraniano (solo funciones de ECHO, Transcripción y Resúmenes)\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Razón desconocida\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Desfijar\"],\"vSdeRU\":[\"Desancla primero un proyecto (máx. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Desancla primero un proyecto (máx. 3)\"],\"dx+iaL\":[\"Desanclar proyecto\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Conversación sin título\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Informe sin título\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Actualizar\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Subir\"],\"V/OOEy\":[\"Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host.\"],\"AIGPM8\":[\"Subir avatar\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Nombre de usuario\"],\"1Nt3Kg\":[\"Usando el logo de dembrane por defecto\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Recordatorio de verificación\"],\"participant.banner.verification_required\":[\"Verificación requerida\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Temas de verificación\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vista\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"Ver tus respuestas\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Esperando a que terminen las conversaciones antes de generar un informe.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"No encontramos la página que buscabas. Puede que se haya movido.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"Nos encantaría saber de usted. Ya sea que tenga una idea para algo nuevo, haya encontrado un error, haya visto una traducción que no suena bien, o simplemente quiera compartir cómo le ha ido.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"¡Bienvenido a dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"¡Bienvenido!\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"¿Qué debe ECHO analizar o generar a partir de las conversaciones?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"myUTw1\":[\"Cuando se ha generado un informe para el proyecto\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"KmUKwU\":[\"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. Las conversaciones anónimas también desactivan la reproducción de audio, el descarga de audio y la retranscripción para proteger la privacidad de los participantes. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"MEmr1I\":[\"Cuando finalices la conversación, los participantes que no han verificado aún serán solicitados para verificar o saltar\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"¿Cuándo se debe generar el informe?\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Tú\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"Puedes navegar a otra página y volver más tarde. Tu informe seguirá generándose en segundo plano.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"Puede intentarlo de nuevo a continuación.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Aún no has verificado ningún resultado. ¿Te gustaría verificar antes de terminar?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Pronto recibirá \",[\"objectLabel\"],\" para verificar.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"¡Su aprobación nos ayuda a comprender lo que realmente piensa!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"La generación de tu último informe fue cancelada. Se muestra tu informe completado más reciente.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Su nombre\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(opcional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" vistas\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversaciones • Editado \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"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.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspectos\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 vista\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. Cuando ocurre un evento de conversación o informe, enviamos automáticamente los datos a tu URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"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)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"Se generará y publicará automáticamente un nuevo informe en el horario programado.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"Ya se está generando un informe para este proyecto. Espera a que se complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Cuenta\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Contraseña de la cuenta\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Acción de\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Acción sobre\"],\"7L01XJ\":[\"Acciones\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Filtros activos\"],\"m16xKo\":[\"Añadir\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Añadir conversaciones al contexto\"],\"8T7YRB\":[\"Agregue conversaciones a su proyecto primero\"],\"LL1rvo\":[\"Añadir Tema Personalizado\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Añadir Tema\"],\"AHaRrL\":[\"Añadir traducciones\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Añadidas\"],\"Na90E+\":[\"E-mails añadidos\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"Du6bPw\":[\"Dirección\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Ejecución guiada por herramientas\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Todo\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Todas las plantillas\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Permitir a los participantes usar el enlace para iniciar nuevas conversaciones\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Casi listo\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Ya añadido a este chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Ya en el contexto\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Ha ocurrido un error inesperado. Recargar la página o volver al inicio suele ayudar.\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"ZlwDi6\":[\"Analíticas\"],\"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.\"],\"Dzr23X\":[\"Anuncios\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonimizar transcripción\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"YdiKaK\":[\"conversación anónima\"],\"iPiP6k\":[\"Conversación anónima\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Apariencia\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Aplicar\"],\"4TwsNi\":[\"Aplicar plantilla\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"uqhbrg\":[\"¿Está seguro de que desea eliminar este chat? 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.\"],\"yrk3z3\":[\"¿Estás seguro de que quieres eliminar este tema personalizado? Esta acción no se puede deshacer.\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"ELQ+fw\":[\"¿Estás seguro de que quieres eliminar este informe? Esta acción no se puede deshacer.\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"e3BGhi\":[\"¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"ZmeZPn\":[\"¿Está seguro de que desea eliminar su avatar?\"],\"wQ5jM6\":[\"¿Está seguro de que desea eliminar su logotipo personalizado? Se utilizará el logotipo predeterminado de dembrane.\"],\"F+vBv0\":[\"Preguntar\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"El descarga de audio no está disponible para conversaciones anónimas\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La reproducción de audio no está disponible para conversaciones anónimas\"],\"IOBCIN\":[\"Consejo de audio\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"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.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar eliminado\"],\"jSKImf\":[\"Avatar actualizado\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Volver a la selección\"],\"UNaXdI\":[\"Volver a plantillas\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Básico (Diapositivas esenciales del tutorial)\"],\"epXTwc\":[\"Configuración Básica\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Reservar una llamada\"],\"KKLfx1\":[\"Reserve una llamada con nosotros\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"Al eliminar este proyecto, eliminará todos los datos asociados. Esta acción no se puede deshacer. ¿Está completamente seguro?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancelar programación\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"SL9Qao\":[\"No se puede reprogramar dentro de los 10 minutos previos a la hora programada\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Tarjeta\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Cambiar idioma\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Cambiar contraseña\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Nombre del chat\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"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\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Cliente-manejado\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Colección\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"CfO59/\":[\"Comparar y Contrastar Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Completar\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"7VpPHA\":[\"Confirmar\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirmar nueva contraseña\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Publicar\"],\"vz1fGK\":[\"Confirmar reprogramación\"],\"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\"],\"participant.modal.s3check.title\":[\"Problema de conexión\"],\"WimHuY\":[\"Conexión no saludable\"],\"l9fkrm\":[\"Consentimiento\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Contenido\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"JX3KT4\":[\"Sugerencias contextuales\"],\"xGVfLh\":[\"Continuar\"],\"participant.button.continue\":[\"Continuar\"],\"participant.ready.to.begin.button.text\":[\"Continuar\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversación\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"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\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Enfriándose. Disponible en \",[\"0\"]],\"6V3Ea3\":[\"Copiado\"],\"84o0nc\":[\"Copiado desde la conversación original\"],\"PiH3UR\":[\"Copiado!\"],\"iaPtht\":[\"copia\"],\"he3ygx\":[\"Copiar\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copiar enlace\"],\"H4brGj\":[\"Copiar enlace al portapapeles\"],\"AjrNNs\":[\"Copiar contenido del informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"OvEjsP\":[\"Copiando...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"No se pudo trasladar tu selección. Vuelve a elegir abajo.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"No se pudo copiar al portapapeles. Inténtelo de nuevo.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"No se pudo abrir la lista de conversaciones. Inténtalo de nuevo.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"oJfYM5\":[\"Crear un breve de investigación desde las conversaciones recientes\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Crear biblioteca\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Crear informe\"],\"A5hiCy\":[\"Crear plantilla\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Creado el\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Recortar avatar\"],\"udBqWc\":[\"Recortar imagen\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recortar logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Logo actual\"],\"Pn2B7/\":[\"Contraseña actual\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Personalizado\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Logo personalizado\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Fecha\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"K/78Yl\":[\"Delegación de análisis multi-paso con ejecución de herramientas en vivo\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Eliminar chat\"],\"2GCE3m\":[\"Eliminar conversación\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"j5pYC4\":[\"Eliminar tema personalizado\"],\"mp235G\":[\"Eliminar proyecto\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"rUWrSE\":[\"Eliminar informe\"],\"qr0gpK\":[\"Eliminar etiqueta\"],\"DFjdv0\":[\"Eliminar plantilla\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Eliminar Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Eliminado con éxito\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe lo que el modelo de lenguaje debe extraer o resumir de la conversación...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determina bajo qué base legal de GDPR se procesan los datos personales. Esto afecta a la información que se muestra a los participantes y a los derechos de los sujetos de datos.\"],\"YrOV6x\":[\"Determina bajo qué base legal de GDPR se procesan los datos personales. Esta configuración se aplica a todos tus proyectos y puede cambiarse en tus ajustes de cuenta.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Nombre para mostrar\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Borrador de acciones siguientes y organizarlas por prioridad\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"p. ej. \\\"Enfoque en temas de sostenibilidad\\\" o \\\"¿Qué piensan los participantes sobre la nueva política?\\\"\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"ej. Resumen semanal de partes interesadas\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"Y/3VME\":[\"Editar Tema Personalizado\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Modo edición\"],\"niSWGL\":[\"Editar opciones\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"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\"],\"O3oNi5\":[\"Correo electrónico\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji mostrado junto al tema, por ejemplo: 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"4KKbfZ\":[\"Habilitar participación\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Introduzca la contraseña actual\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"VpwcSk\":[\"Introduzca la nueva contraseña\"],\"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.\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"4kVRov\":[\"Ocurrió un error\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Salir de pantalla completa\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"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\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"UQ6LqT\":[\"Error al crear el tema personalizado\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Error al eliminar el tema personalizado\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"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\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"No se pudo eliminar el avatar\"],\"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\"],\"IMUHg3\":[\"Error al reprogramar. Por favor, elija un horario mas lejano e intentelo de nuevo.\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Error al actualizar el tema personalizado\"],\"BpuK7o\":[\"Error al actualizar la base legal\"],\"Avee+B\":[\"No se pudo actualizar el nombre\"],\"gnm1CH\":[\"Error al actualizar el pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"No se pudo subir el avatar\"],\"RW4V7P\":[\"Error al subir el logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Portal de comentarios\"],\"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\"],\"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\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Encontrar contradicciones y sugerir preguntas de seguimiento\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finalizado\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Enfoque\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Tamaño de fuente\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"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.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Francés\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"3qkggm\":[\"Pantalla completa\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generar\"],\"EIdJgG\":[\"Generar un nuevo informe\"],\"QsUhrf\":[\"Generar un informe\"],\"GRy59I\":[\"Generar un resumen primero\"],\"MWSGhX\":[\"Generar biblioteca\"],\"5SWGxv\":[\"Generar ahora\"],\"GWUJ9X\":[\"Generar ahora\"],\"QqIxfi\":[\"Generar secreto\"],\"gitFA/\":[\"Generar Resumen\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generando informe...\"],\"kzY+nd\":[\"Generando el resumen. Espera...\"],\"hMOYzR\":[\"Generando tu informe...\"],\"DDcvSo\":[\"Alemán\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"DXr0zk\":[\"Pantalla completa\"],\"iWpEwy\":[\"Ir al inicio\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Ir a Ajustes\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"uMjvI3\":[\"Guiar el informe\"],\"myXGZW\":[\"Guiado\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Oculto\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"eHo/Jc\":[\"Ocultar datos\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Concepto específico resaltado\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Inicio\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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?\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"Entiendo\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"Si está satisfecho con \",[\"objectLabel\"],\", haga clic en \\\"Aprobar\\\" para mostrar que se siente escuchado.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Incluir enlace del portal\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instrucciones para generar el resultado de la verificación\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Dirección IP\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"Parece que aún no tiene un informe para este proyecto. Genere uno para obtener una descripción general de sus conversaciones.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"nfvG6u\":[\"Italiano (solo funciones de ECHO, Transcripción y Resúmenes)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Un momento\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Simplemente hable o escriba de forma natural. Su aporte llega directamente a nuestro equipo de producto y realmente nos ayuda a mejorar dembrane. Lo leemos todo.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"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.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Idioma\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Último\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Aprender más sobre webhooks\"],\"ffCwpJ\":[\"Dejar vacío para mantener el existente\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Base Legal\"],\"7kyKF5\":[\"Base legal actualizada\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"gkv8iG\":[\"Matrícula\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Enlace\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Enlace a la política de privacidad de tu organización que se mostrará a los participantes\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Vivo\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Modo de ejecución de agente en vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"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...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Iniciar sesión\"],\"LM/dWU\":[\"Iniciar sesión | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo eliminado\"],\"MjfaMh\":[\"Logo actualizado\"],\"nOhz3x\":[\"Cerrar sesión\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Más largo primero\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Gestionar plantillas\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Marcar todos como leídos\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Marcar como leído\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Modo\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"más\"],\"JcD7qf\":[\"Más acciones\"],\"QWdKwH\":[\"Mover\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Mover Conversación\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Debe ser al menos 10 minutos en el futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mis plantillas\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Nombre actualizado\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Nombre Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"Nuevo\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"u2uElg\":[\"Nuevas conversaciones agregadas desde este informe\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Nueva contraseña\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Nuevo informe\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Más nuevos primero\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.next\":[\"Siguiente\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No se encontraron acciones\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"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.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Aun no hay conversaciones. Puede programar un informe ahora y las conversaciones se incluiran una vez que se agreguen.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Aún no hay nadie en la organización.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"1iQvuD\":[\"Aún no hay informes\"],\"Ev2r9A\":[\"Sin resultados\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"Ninguna plantilla coincide con {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No hay temas de verificación disponibles.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Más antiguos primero\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"En curso\"],\"conversation.ongoing\":[\"En curso\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Solo cambia este ajuste en consulta con la(s) persona(s) responsable(s) del cumplimiento de la normativa de protección de datos dentro de tu organización.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Abrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Opcional\"],\"ZFIvWo\":[\"Opcional (recurre al inglés)\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Opciones\"],\"BzEFor\":[\"o\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"O prefiere chatear directamente?\"],\"1h45Hu\":[\"O escribe el tuyo\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"URL de la política de privacidad del organizador\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Contraseña\"],\"zJx6Vx\":[\"Contraseña cambiada\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"PTSHeg\":[\"Pausar lectura\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pendiente\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"La información personal será reemplazada por marcadores. La reproducción de audio, descarga y retranscripción se desactivarán para la nueva conversación.\"],\"zmwvG2\":[\"Teléfono\"],\"B8mlc2\":[\"Elija una fecha\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Fijar\"],\"u8qC4w\":[\"Fijar proyecto\"],\"S+WiJ3\":[\"Fije plantillas aquí para acceso rápido.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Fijados está lleno (máx. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Plantillas fijadas\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Grabe su respuesta haciendo clic en el botón \\\"Grabar\\\" a continuación. También puede responder en texto haciendo clic en el icono de texto.\\n**Mantenga esta pantalla encendida**\\n(pantalla negra = no está grabando)\"],\"Lu1j4b\":[\"Grabe su respuesta haciendo clic en el botón \\\"Grabar\\\" a continuación. También puede responder en texto haciendo clic en el icono de texto.\\n**Mantenga esta pantalla encendida**\\n(pantalla negra = no está grabando).\\nEsta transcripción será anonimizada y su anfitrión no podrá escuchar su grabación.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG o WebP. Se recortará en un círculo.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Contenido del Portal\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Editor del Portal\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"S8ugMC\":[\"Imprimir informe\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Proyecto creado\"],\"zjTrs1\":[\"Valor predeterminado del proyecto: activado. La información personal será reemplazada por marcadores. La reproducción de audio, descarga y retranscripción se desactivarán para la nueva conversación.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Biblioteca del Proyecto | dembrane\"],\"QDjWwu\":[\"Resumen Meta del Proyecto\"],\"lltun+\":[\"Project moved\"],\"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\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Vista General del Proyecto | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Proyectos\"],\"DK5DV3\":[\"Proyectos | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"EEYbdt\":[\"Publicar\"],\"vsX8VJ\":[\"Publique este informe primero para mostrar el enlace del portal\"],\"IHzoSN\":[\"Publique este informe para obtener un enlace para compartir\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Vuelva a introducir la nueva contraseña\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Leer en voz alta\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.s3check.reconnect\":[\"Reconectar\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Grabar\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Límite de grabación alcanzado\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerar\"],\"PpFJd2\":[\"Regenerar resumen\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"HPitDS\":[\"Registrar | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Recargar la página\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Recordar a los usuarios que verifiquen antes de finalizar\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Eliminar\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Eliminar avatar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"O90CN2\":[\"Eliminar logotipo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"6PsaMr\":[\"Renombrar chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Informe\"],\"e/MQa5\":[\"El informe ya se está generando\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"hh/mvZ\":[\"Generación del informe cancelada\"],\"sSy8vA\":[\"Generación del informe en curso...\"],\"v7O77U\":[\"La generación del informe fue cancelada. Puedes iniciar un nuevo informe a continuación.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"M9snPp\":[\"Informe programado\"],\"u9r3Di\":[\"Las plantillas de informes están en nuestra hoja de ruta.\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"t9yxlZ\":[\"Informes\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Solicitar Acceso\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"8H5nRH\":[\"Solicitar Restablecimiento de Contraseña | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"TMLAx2\":[\"Requerido\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reprogramar\"],\"6eIR/n\":[\"Reprogramar para\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Restablecer\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"9uplIY\":[\"Restablecer Contraseña | dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"+gmVxi\":[\"La retranscripción no está disponible para conversaciones anónimas\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Reintentar subida\"],\"2fCpt5\":[\"Volver al inicio\"],\"5k0NLb\":[\"Review\"],\"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.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Haga clic con el botón derecho para resaltar\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Filas por página\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Guardar\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Guardar como plantilla\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Guardar Cambios\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"5dVjYt\":[\"Guardar plantilla\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Guardando...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Programar\"],\"wCGy0o\":[\"Programar informe\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Desplazarse al final\"],\"A1taO8\":[\"Buscar\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Busca y selecciona las conversaciones para este chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"Hasta pronto\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Seleccionar todos los resultados\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Selecciona al menos un evento\"],\"d3O/ZP\":[\"Selecciona al menos un otro tema antes de eliminar este\"],\"NK2YNj\":[\"Seleccionar archivos de audio para subir\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Selecciona conversaciones y encuentra citas exactas\"],\"LyHz7Q\":[\"Selecciona conversaciones en la barra lateral\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Seleccione hasta 2 areas de enfoque para su informe\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para \\\"Verificar\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Seleccionar un 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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Enviar\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"BVRW7i\":[\"Configuración | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Compartir informe\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"nnWGzO\":[\"Comparta sus ideas con nuestro equipo\"],\"4o0klJ\":[\"Comparta su voz escaneando el codigo QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Mostrando su informe completado más reciente.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Omitir\"],\"participant.button.verify_prompt.skip\":[\"Omitir\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Comunidad de Slack\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Algo está bloqueando tu conexión. Tu audio no se guardará a menos que se resuelva este problema.\"],\"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\"],\"mwpVVD\":[\"Algo salió mal al generar su último informe.\"],\"2WNFmv\":[\"Algo salió mal al generar su informe.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"sBJ5MF\":[\"Sources\"],\"65A04M\":[\"Español\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Estado\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Planificación Estratégica\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Éxito\"],\"aG+cH9\":[\"Sugerir sugerencias dinámicas basadas en su conversación.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Sugerido:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Resumir\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"D+NlUC\":[\"Sistema\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Etiquetas\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Plantilla aplicada\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Nombre de plantilla\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Plantillas\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"El informe puede comenzar hasta 5 minutos después de la hora elegida.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Tema\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Pensando...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Esto puede ocurrir cuando una VPN o un firewall está bloqueando la conexión. Intenta desactivar tu VPN, cambiar a otra red (p. ej., punto de acceso móvil) o contacta con tu departamento de TI para obtener ayuda.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Esta información está anónima\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"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.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"Biblioteca\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Esta parte de la página no se ha cargado. Recargarla suele solucionarlo. Si sigue pasando, vuelve al inicio.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"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.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"Este espacio de trabajo ha agotado las horas de grabación incluidas. Pide a un administrador de la organización que mejore el plan.\"],\"nHYAFS\":[\"Este espacio de trabajo ha agotado las horas de grabación incluidas. Mejora tu plan para seguir usando la voz.\"],\"1pzlg0\":[\"Este espacio de trabajo ha agotado sus horas de grabación. Mejora tu plan para seguir usando la voz.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Hora\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Consejo: También puede crear una plantilla desde cualquier mensaje de chat que envíe, o duplicar una plantilla existente.\"],\"MHrjPM\":[\"Título\"],\"1xkgU6\":[\"Título auto-generado\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Para ayudarnos a actuar, intente incluir dónde ocurrió y qué estaba intentando hacer. Para errores, díganos qué salió mal. Para ideas, díganos qué necesidad resolvería para usted.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Tema creado correctamente\"],\"Sawj4V\":[\"Tema eliminado correctamente\"],\"xcp3ny\":[\"Etiqueta de tema\"],\"vQoAht\":[\"Tema actualizado correctamente\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribiendo...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Desactivar\"],\"QOnnq7\":[\"¿Desactivar la anonimización?\"],\"portal.anonymization.disable.warning\":[\"Desactivar la anonimización mientras hay grabaciones en curso puede tener consecuencias no deseadas. Las conversaciones activas también se verán afectadas durante la grabación. Por favor, use esto con precaución.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Escribe un mensaje o pulsa / para plantillas...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ucraniano (solo funciones de ECHO, Transcripción y Resúmenes)\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Razón desconocida\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Desfijar\"],\"vSdeRU\":[\"Desancla primero un proyecto (máx. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Desancla primero un proyecto (máx. 3)\"],\"dx+iaL\":[\"Desanclar proyecto\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Conversación sin título\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Informe sin título\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Actualizar\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Subir\"],\"V/OOEy\":[\"Sube un logo personalizado para reemplazar el logo de dembrane en el portal, panel de control, informes y guía de host.\"],\"AIGPM8\":[\"Subir avatar\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Nombre de usuario\"],\"1Nt3Kg\":[\"Usando el logo de dembrane por defecto\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Recordatorio de verificación\"],\"participant.banner.verification_required\":[\"Verificación requerida\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Temas de verificación\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vista\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"Ver tus respuestas\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Esperando a que terminen las conversaciones antes de generar un informe.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"No encontramos la página que buscabas. Puede que se haya movido.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"Nos encantaría saber de usted. Ya sea que tenga una idea para algo nuevo, haya encontrado un error, haya visto una traducción que no suena bien, o simplemente quiera compartir cómo le ha ido.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"¡Bienvenido a dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"¡Bienvenido!\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"¿Qué debe ECHO analizar o generar a partir de las conversaciones?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"Cuando un participante abre el portal, ingresa sus detalles y comienza una conversación\"],\"myUTw1\":[\"Cuando se ha generado un informe para el proyecto\"],\"7t3vo1\":[\"Cuando todo el audio ha sido convertido a texto y la transcripción completa está disponible\"],\"N0GETg\":[\"¿Cuándo se activan los webhooks?\"],\"KmUKwU\":[\"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. Las conversaciones anónimas también desactivan la reproducción de audio, el descarga de audio y la retranscripción para proteger la privacidad de los participantes. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"MEmr1I\":[\"Cuando finalices la conversación, los participantes que no han verificado aún serán solicitados para verificar o saltar\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"¿Cuándo se debe generar el informe?\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Tú\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"Puedes navegar a otra página y volver más tarde. Tu informe seguirá generándose en segundo plano.\"],\"E71LBI\":[\"Solo puedes subir hasta \",[\"MAX_FILES\"],\" archivos a la vez. Solo los primeros \",[\"0\"],\" archivos se agregarán.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"Puede intentarlo de nuevo a continuación.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Aún no has verificado ningún resultado. ¿Te gustaría verificar antes de terminar?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Pronto recibirá \",[\"objectLabel\"],\" para verificar.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"¡Su aprobación nos ayuda a comprender lo que realmente piensa!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"La generación de tu último informe fue cancelada. Se muestra tu informe completado más reciente.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Su nombre\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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 8124455cc..188fc5be1 100644 --- a/echo/frontend/src/locales/fr-FR.po +++ b/echo/frontend/src/locales/fr-FR.po @@ -214,7 +214,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2101 +#: src/components/chat/AgenticChatPanel.tsx:2114 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -479,11 +479,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:267 +#: src/components/chat/AgenticChatPanel.tsx:279 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:266 +#: src/components/chat/AgenticChatPanel.tsx:278 msgid "{name}'s transcript excerpt" msgstr "" @@ -1152,7 +1152,7 @@ msgstr "Avancé (Astuces et conseils)" msgid "Advanced Settings" msgstr "Paramètres avancés" -#: src/components/chat/AgenticChatPanel.tsx:385 +#: src/components/chat/AgenticChatPanel.tsx:398 msgid "Agent run failed" msgstr "" @@ -1436,7 +1436,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2250 +#: src/components/chat/AgenticChatPanel.tsx:2263 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1530,7 +1530,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1813 +#: src/components/chat/AgenticChatPanel.tsx:1826 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1547,7 +1547,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2231 +#: src/components/chat/AgenticChatPanel.tsx:2244 msgid "Ask about your conversations..." msgstr "" @@ -1885,7 +1885,7 @@ msgstr "" msgid "Book a call" msgstr "Prendre rendez-vous" -#: src/components/common/FeedbackPortalModal.tsx:98 +#: src/components/common/FeedbackPortalModal.tsx:115 msgid "Book a call with us" msgstr "Reservez un appel avec nous" @@ -1987,11 +1987,11 @@ msgstr "" #: src/components/conversation/ConversationAccordion.tsx:336 #: src/components/common/InputModal.tsx:77 #: src/components/common/ImageCropModal.tsx:145 -#: src/components/common/FeedbackPortalModal.tsx:124 +#: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:734 -#: src/components/chat/AgenticChatPanel.tsx:2139 +#: src/components/chat/AgenticChatPanel.tsx:747 +#: src/components/chat/AgenticChatPanel.tsx:2152 msgid "Cancel" msgstr "Annuler" @@ -2024,7 +2024,7 @@ msgstr "Annuler" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:722 +#: src/components/chat/AgenticChatPanel.tsx:735 msgid "Cancel current run" msgstr "" @@ -2190,7 +2190,7 @@ msgstr "Changer de langue pendant une conversation active peut provoquer des ré #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1657 +#: src/components/chat/AgenticChatPanel.tsx:1670 msgid "Chat" msgstr "Discussion" @@ -2529,7 +2529,7 @@ msgstr "Contenu" msgid "Context" msgstr "Contexte" -#: src/components/chat/ChatHistoryMessage.tsx:394 +#: src/components/chat/ChatHistoryMessage.tsx:419 msgid "Context added:" msgstr "Contexte ajouté :" @@ -3269,7 +3269,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2268 +#: src/components/chat/AgenticChatPanel.tsx:2281 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3457,7 +3457,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:404 +#: src/components/chat/AgenticChatPanel.tsx:417 msgid "Done" msgstr "" @@ -3827,8 +3827,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:409 -#: src/components/chat/AgenticChatPanel.tsx:1759 +#: src/components/chat/AgenticChatPanel.tsx:422 +#: src/components/chat/AgenticChatPanel.tsx:1772 msgid "Error" msgstr "Erreur" @@ -4180,11 +4180,11 @@ msgstr "Échec de la révision du résultat. 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/chat/AgenticChatPanel.tsx:1650 +#: src/components/chat/AgenticChatPanel.tsx:1663 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1609 +#: src/components/chat/AgenticChatPanel.tsx:1622 msgid "Failed to submit agentic message" msgstr "" @@ -4230,7 +4230,7 @@ msgstr "Fonctionnalité bientôt disponible" msgid "Feedback" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:44 +#: src/components/common/FeedbackPortalModal.tsx:61 msgid "Feedback portal" msgstr "Portail de commentaires" @@ -4345,13 +4345,13 @@ msgstr "" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2143 -#: src/components/chat/AgenticChatPanel.tsx:2144 -#: src/components/chat/AgenticChatPanel.tsx:2278 +#: src/components/chat/AgenticChatPanel.tsx:2156 +#: src/components/chat/AgenticChatPanel.tsx:2157 +#: src/components/chat/AgenticChatPanel.tsx:2291 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:240 +#: src/components/chat/AgenticChatPanel.tsx:252 msgid "Focusing on:" msgstr "" @@ -4718,7 +4718,7 @@ msgstr "" msgid "Hide revision data" msgstr "Masquer les données de révision" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Hide steps" msgstr "" @@ -4782,11 +4782,11 @@ msgstr "" "* Quel est l'objectif principal ou la métrique clé\n" "* À quoi ressemble le succès" -#: src/components/chat/AgenticChatPanel.tsx:1927 +#: src/components/chat/AgenticChatPanel.tsx:1940 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1943 +#: src/components/chat/AgenticChatPanel.tsx:1956 msgid "I applied the goal." msgstr "" @@ -4840,7 +4840,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1837 +#: src/components/chat/AgenticChatPanel.tsx:1850 msgid "Improve my setup" msgstr "" @@ -5134,7 +5134,7 @@ msgstr "" msgid "Join for support (24h)" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:115 +#: src/components/common/FeedbackPortalModal.tsx:132 msgid "Join our Slack community" msgstr "" @@ -5188,7 +5188,7 @@ msgstr "" msgid "Just started" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:64 +#: src/components/common/FeedbackPortalModal.tsx:81 msgid "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." msgstr "Parlez ou écrivez naturellement. Votre contribution va directement à notre équipe produit et nous aide vraiment à améliorer dembrane. Nous lisons tout." @@ -5419,11 +5419,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Lien vers la politique de confidentialité de votre organisation qui sera affichée aux participants" -#: src/components/chat/AgenticChatPanel.tsx:1827 +#: src/components/chat/AgenticChatPanel.tsx:1840 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1828 +#: src/components/chat/AgenticChatPanel.tsx:1841 msgid "List the conversations in this project." msgstr "" @@ -5482,7 +5482,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5536,7 +5536,7 @@ msgstr "Chargement des microphones..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1770 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Loading this chat..." msgstr "" @@ -5792,7 +5792,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2246 +#: src/components/chat/AgenticChatPanel.tsx:2259 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -6799,8 +6799,8 @@ msgstr "" msgid "Open to the workspace" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:227 -#: src/components/chat/ChatHistoryMessage.tsx:231 +#: src/components/chat/ChatHistoryMessage.tsx:250 +#: src/components/chat/ChatHistoryMessage.tsx:254 msgid "Open transcript" msgstr "" @@ -6864,7 +6864,7 @@ msgstr "ou" msgid "Or choose a time" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:91 +#: src/components/common/FeedbackPortalModal.tsx:108 msgid "Or prefer to chat directly?" msgstr "Ou preferer discuter directement ?" @@ -7728,7 +7728,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:587 +#: src/components/chat/AgenticChatPanel.tsx:600 msgid "Ran {0} steps at once" msgstr "" @@ -7853,7 +7853,7 @@ msgstr "" msgid "participant.button.record" msgstr "Enregistrer" -#: src/components/chat/AgenticChatPanel.tsx:2168 +#: src/components/chat/AgenticChatPanel.tsx:2181 msgid "Record a voice message" msgstr "" @@ -7889,7 +7889,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Enregistrement en pause" -#: src/components/chat/AgenticChatPanel.tsx:859 +#: src/components/chat/AgenticChatPanel.tsx:872 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8095,7 +8095,7 @@ msgid "project.sidebar.chat.rename" msgstr "Renommer" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1720 +#: src/components/chat/AgenticChatPanel.tsx:1733 msgid "Rename chat" msgstr "Renommer le chat" @@ -8413,7 +8413,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Examiner les fichiers avant le téléchargement" -#: src/components/chat/AgenticChatPanel.tsx:1838 +#: src/components/chat/AgenticChatPanel.tsx:1851 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8485,7 +8485,7 @@ msgstr "" msgid "Rows per page" msgstr "Lignes par page" -#: src/components/chat/AgenticChatPanel.tsx:414 +#: src/components/chat/AgenticChatPanel.tsx:427 msgid "Running" msgstr "" @@ -8516,7 +8516,7 @@ msgstr "Enregistrer" msgid "Save access" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:296 +#: src/components/chat/ChatHistoryMessage.tsx:319 msgid "Save as template" msgstr "Enregistrer comme modèle" @@ -8559,7 +8559,7 @@ msgstr "" msgid "Saving..." msgstr "Enregistrement..." -#: src/components/common/FeedbackPortalModal.tsx:87 +#: src/components/common/FeedbackPortalModal.tsx:104 msgid "Scan or click the QR code to open the feedback portal" msgstr "" @@ -8941,7 +8941,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2205 +#: src/components/chat/AgenticChatPanel.tsx:2218 msgid "Send" msgstr "Envoyer" @@ -9205,7 +9205,7 @@ msgstr "Afficher les références" msgid "Show revision data" msgstr "Afficher les données de révision" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Show steps" msgstr "" @@ -9324,7 +9324,7 @@ msgstr "Un problème est survenu lors de la génération de votre dernier rappor msgid "Something went wrong generating your report." msgstr "Un problème est survenu lors de la génération de votre rapport." -#: src/components/chat/AgenticChatPanel.tsx:206 +#: src/components/chat/AgenticChatPanel.tsx:218 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9373,6 +9373,10 @@ msgstr "Trier" msgid "Source {0}" msgstr "Source {0}" +#: src/components/chat/ChatHistoryMessage.tsx:359 +msgid "Sources" +msgstr "" + #: src/components/project/ProjectPortalEditor.tsx:644 msgid "Spanish" msgstr "Espagnol" @@ -9488,7 +9492,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2163 +#: src/components/chat/AgenticChatPanel.tsx:2176 msgid "Stop" msgstr "Arrêter" @@ -9497,7 +9501,7 @@ msgstr "Arrêter" msgid "participant.button.stop" msgstr "Arrêter" -#: src/components/chat/AgenticChatPanel.tsx:2153 +#: src/components/chat/AgenticChatPanel.tsx:2166 msgid "Stop recording and turn it into text" msgstr "" @@ -10207,7 +10211,7 @@ msgstr "Ce rapport n'est pas encore disponible. " msgid "This report was opened by {0} people" msgstr "Ce rapport a été ouvert par {0} personnes" -#: src/components/chat/AgenticChatPanel.tsx:204 +#: src/components/chat/AgenticChatPanel.tsx:216 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10274,7 +10278,7 @@ msgstr "Cet espace de travail a utilisé les heures d'enregistrement incluses. D msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "Cet espace de travail a utilisé les heures d'enregistrement incluses. Passez à une offre supérieure pour continuer à utiliser la voix." -#: src/components/chat/AgenticChatPanel.tsx:2182 +#: src/components/chat/AgenticChatPanel.tsx:2195 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "Cet espace de travail a utilisé ses heures d'enregistrement. Passez à une offre supérieure pour continuer à utiliser la voix." @@ -10376,7 +10380,7 @@ msgstr "" msgid "To assign a new tag, please create it first in the portal settings." msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:57 +#: src/components/common/FeedbackPortalModal.tsx:74 msgid "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." msgstr "Pour nous aider à agir, essayez d'inclure où cela s'est produit et ce que vous essayiez de faire. Pour les bugs, dites-nous ce qui s'est mal passé. Pour les idées, dites-nous quel besoin cela résoudrait pour vous." @@ -10393,7 +10397,7 @@ msgstr "Trop grande" msgid "Too long" msgstr "Trop long" -#: src/components/chat/AgenticChatPanel.tsx:2117 +#: src/components/chat/AgenticChatPanel.tsx:2130 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10491,7 +10495,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcription en cours..." -#: src/components/chat/AgenticChatPanel.tsx:270 +#: src/components/chat/AgenticChatPanel.tsx:282 msgid "transcript" msgstr "" @@ -10507,7 +10511,7 @@ msgstr "Transcription" msgid "Transcript copied to clipboard" msgstr "Transcription copiée dans le presse-papiers" -#: src/components/chat/AgenticChatPanel.tsx:269 +#: src/components/chat/AgenticChatPanel.tsx:281 msgid "transcript excerpt" msgstr "" @@ -11015,7 +11019,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2264 +#: src/components/chat/AgenticChatPanel.tsx:2277 msgid "Use Shift + Enter to add a new line" msgstr "Utilisez Shift + Entrée pour ajouter une nouvelle ligne" @@ -11299,7 +11303,7 @@ msgstr "" 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 "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." -#: src/components/common/FeedbackPortalModal.tsx:50 +#: src/components/common/FeedbackPortalModal.tsx:67 msgid "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." msgstr "Nous aimerions avoir de vos nouvelles. Que vous ayez une idée pour quelque chose de nouveau, que vous ayez trouvé un bug, repéré une traduction qui ne sonne pas bien, ou que vous souhaitiez simplement partager comment les choses se passent." @@ -11422,11 +11426,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "Que doit ECHO analyser ou générer à partir des conversations ?" -#: src/components/chat/AgenticChatPanel.tsx:1833 +#: src/components/chat/AgenticChatPanel.tsx:1846 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1832 +#: src/components/chat/AgenticChatPanel.tsx:1845 msgid "What themes came up?" msgstr "" @@ -11496,7 +11500,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1810 +#: src/components/chat/AgenticChatPanel.tsx:1823 msgid "Where would you like to start?" msgstr "" @@ -11539,11 +11543,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:588 +#: src/components/chat/AgenticChatPanel.tsx:601 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1682 +#: src/components/chat/AgenticChatPanel.tsx:1695 msgid "Working on your answer..." msgstr "" @@ -11807,7 +11811,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "Vous semblez être hors ligne, veuillez vérifier votre connexion internet" -#: src/components/chat/AgenticChatPanel.tsx:202 +#: src/components/chat/AgenticChatPanel.tsx:214 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/fr-FR.ts b/echo/frontend/src/locales/fr-FR.ts index 7f28732db..842db1179 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.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(facultatif)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" vues\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversations • Modifié \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"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.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 vue\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. Lorsqu'un événement de conversation ou de rapport se produit, nous envoyons automatiquement les données à votre URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"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)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"Un nouveau rapport sera automatiquement généré et publié à l'heure prévue.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"Un rapport est déjà en cours de génération pour ce projet. Veuillez attendre qu'il soit terminé.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Compte\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action par\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"8T7YRB\":[\"Ajoutez d'abord des conversations a votre projet\"],\"LL1rvo\":[\"Ajouter un sujet personnalisé\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Ajouter un sujet\"],\"AHaRrL\":[\"Ajouter des traductions\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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 :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"Du6bPw\":[\"Adresse\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Exécution guidée par les outils\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Tout\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Tous les modèles\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Presque terminé\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Une erreur inattendue s'est produite. Recharger la page ou revenir à l'accueil aide souvent.\"],\"F4cOH1\":[\"Langue d'analyse\"],\"ZlwDi6\":[\"Analytique\"],\"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.\"],\"Dzr23X\":[\"Annonces\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymiser la transcription\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"YdiKaK\":[\"conversation anonymisée\"],\"iPiP6k\":[\"Conversation anonymisée\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Apparence\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Appliquer\"],\"4TwsNi\":[\"Appliquer le modèle\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"uqhbrg\":[\"Êtes-vous sûr de vouloir supprimer ce chat ? Cette action est irréversible.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"yrk3z3\":[\"Êtes-vous sûr de vouloir supprimer ce sujet personnalisé ? Cette action ne peut pas être annulée.\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"ELQ+fw\":[\"Êtes-vous sûr de vouloir supprimer ce rapport ? Cette action est irréversible.\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"e3BGhi\":[\"Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action est irréversible.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"ZmeZPn\":[\"Êtes-vous sûr de vouloir supprimer votre avatar ?\"],\"wQ5jM6\":[\"Êtes-vous sûr de vouloir supprimer votre logo personnalisé ? Le logo dembrane par défaut sera utilisé à la place.\"],\"F+vBv0\":[\"Demander\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Le téléchargement de l'audio n'est pas disponible pour les conversations anonymisées\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La lecture de l'audio n'est pas disponible pour les conversations anonymisées\"],\"IOBCIN\":[\"Conseil audio\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"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.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar supprimé\"],\"jSKImf\":[\"Avatar mis à jour\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Retour à la sélection\"],\"UNaXdI\":[\"Retour aux modèles\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"KKLfx1\":[\"Reservez un appel avec nous\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"En supprimant ce projet, vous supprimerez toutes les données associées. Cette action est irréversible. Êtes-vous absolument sûr ?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Annuler la planification\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"SL9Qao\":[\"Impossible de reprogrammer dans les 10 minutes précédant l'heure prévue\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Carte\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Changer de langue\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Changer le mot de passe\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Discussion | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Nom du chat\"],\"8Q+lLG\":[\"Discussions\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"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\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Gestion client\"],\"+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\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"CfO59/\":[\"Comparer & Contraster Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Terminé\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"7VpPHA\":[\"Confirmer\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirmer le nouveau mot de passe\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Publier\"],\"vz1fGK\":[\"Confirmer la reprogrammation\"],\"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\"],\"participant.modal.s3check.title\":[\"Problème de connexion\"],\"WimHuY\":[\"Connexion défectueuse\"],\"l9fkrm\":[\"Consentement\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Contenu\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"JX3KT4\":[\"Suggestions contextuelles\"],\"xGVfLh\":[\"Continuer\"],\"participant.button.continue\":[\"Continuer\"],\"participant.ready.to.begin.button.text\":[\"Continuer\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"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\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"iaPtht\":[\"copie\"],\"he3ygx\":[\"Copier\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copier le lien\"],\"H4brGj\":[\"Copier le lien dans le presse-papiers\"],\"AjrNNs\":[\"Copier le contenu du rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"OvEjsP\":[\"Copie en cours...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Votre sélection n'a pas pu être reprise. Sélectionnez à nouveau ci-dessous.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Impossible de copier dans le presse-papiers. Veuillez réessayer.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Impossible d'ouvrir la liste des conversations. Réessayez.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"oJfYM5\":[\"Créer un brief de recherche à partir des conversations récentes\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Créer une bibliothèque\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Créer un rapport\"],\"A5hiCy\":[\"Créer un modèle\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Créé le\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Recadrer l'avatar\"],\"udBqWc\":[\"Recadrer l'image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recadrer le logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Logo actuel\"],\"Pn2B7/\":[\"Mot de passe actuel\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"K/78Yl\":[\"Déléguer une analyse multi-étapes avec l'exécution en direct des outils\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Supprimer le chat\"],\"2GCE3m\":[\"Supprimer la conversation\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"j5pYC4\":[\"Supprimer le sujet personnalisé\"],\"mp235G\":[\"Supprimer le projet\"],\"++iDlT\":[\"Supprimer le projet\"],\"rUWrSE\":[\"Supprimer le rapport\"],\"qr0gpK\":[\"Supprimer le tag\"],\"DFjdv0\":[\"Supprimer le modèle\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Supprimer le webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Supprimé avec succès\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Décrivez ce que le modèle de langage doit extraire ou résumer de la conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Détermine sous quelle base juridique de GDPR les données personnelles sont traitées. Cette configuration s'applique à tous vos projets et peut être modifiée dans vos paramètres de compte.\"],\"YrOV6x\":[\"Détermine sous quelle base juridique de GDPR les données personnelles sont traitées. Cette configuration s'applique à tous vos projets et peut être modifiée dans vos paramètres de compte.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Nom d'affichage\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Brouillon des actions suivantes et les organiser par priorité\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Dupliquer\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"p. ex. \\\"Focus sur les thèmes de durabilité\\\" ou \\\"Que pensent les participants de la nouvelle politique ?\\\"\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"ex. Résumé hebdomadaire des parties prenantes\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"Y/3VME\":[\"Modifier le sujet personnalisé\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Mode édition\"],\"niSWGL\":[\"Modifier les options\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"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\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@travail.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji affiché à côté du sujet, par exemple : 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"D3AnH0\":[\"Activer Explorer\"],\"4KKbfZ\":[\"Activer la participation\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"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.\"],\"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é\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Saisir le mot de passe actuel\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"VpwcSk\":[\"Saisir le nouveau mot de passe\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Quitter le plein écran\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Expérimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"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\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"UQ6LqT\":[\"Échec de la création du sujet personnalisé\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Échec de la suppression du sujet personnalisé\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"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\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Impossible de supprimer l'avatar\"],\"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\"],\"IMUHg3\":[\"Replanification echouee. Veuillez choisir un horaire plus eloigne et reessayer.\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Échec de la mise à jour du sujet personnalisé\"],\"BpuK7o\":[\"Échec de la mise à jour de la base juridique\"],\"Avee+B\":[\"Impossible de mettre à jour le nom\"],\"gnm1CH\":[\"Échec de la mise à jour de l'épingle\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Impossible de télécharger l'avatar\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Portail de commentaires\"],\"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é\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Trouver des contradictions et suggérer des questions de suivi\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Terminé\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Taille de la police\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"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.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Français\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"3qkggm\":[\"Plein écran\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Générer\"],\"EIdJgG\":[\"Générer un nouveau rapport\"],\"QsUhrf\":[\"Générer un rapport\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"MWSGhX\":[\"Générer la bibliothèque\"],\"5SWGxv\":[\"Générer maintenant\"],\"GWUJ9X\":[\"Générer maintenant\"],\"QqIxfi\":[\"Générer un secret\"],\"gitFA/\":[\"Générer un résumé\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Génération du rapport...\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"hMOYzR\":[\"Génération de votre rapport en cours...\"],\"DDcvSo\":[\"Allemand\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"DXr0zk\":[\"Plein écran\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Aller aux paramètres\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"uMjvI3\":[\"Guider le rapport\"],\"myXGZW\":[\"Guide\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Masqué\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"eHo/Jc\":[\"Masquer les données\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Concept spécifique mis en évidence\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Accueil\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"Je comprends\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"Si vous êtes satisfait de \",[\"objectLabel\"],\", cliquez sur \\\"Approuver\\\" pour montrer que vous vous sentez entendu.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Inclure le lien du portail\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Perspectives\"],\"MSVCjk\":[\"Instructions pour générer le résultat de la vérification\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Adresse IP\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"Il semble que vous n'ayez pas encore de rapport pour ce projet. Générez-en un pour obtenir un aperçu de vos conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"nfvG6u\":[\"Italien (uniquement les fonctionnalités ECHO, Transcription et Résumés)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Un instant\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Parlez ou écrivez naturellement. Votre contribution va directement à notre équipe produit et nous aide vraiment à améliorer dembrane. Nous lisons tout.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"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.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Langue\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Dernier\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Base juridique\"],\"7kyKF5\":[\"Base juridique mise à jour\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"gkv8iG\":[\"Plaque d'immatriculation\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Lien\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Lien vers la politique de confidentialité de votre organisation qui sera affichée aux participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Direct\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Mode d'exécution de l'agent en direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Vue en direct\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"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...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Connexion\"],\"LM/dWU\":[\"Connexion | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo supprimé\"],\"MjfaMh\":[\"Logo mis à jour\"],\"nOhz3x\":[\"Déconnexion\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Plus long en premier\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Gérer les modèles\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Marquer comme lue\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Notes de réunion\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"autres\"],\"JcD7qf\":[\"Plus d'actions\"],\"QWdKwH\":[\"Déplacer\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Déplacer\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Doit etre au moins 10 minutes dans le futur\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mes modèles\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Nom mis à jour\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Nom Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"Nouveau\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"u2uElg\":[\"Nouvelles conversations ajoutees depuis ce rapport\"],\"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.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Nouveau mot de passe\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Nouveau rapport\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Plus récent en premier\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.next\":[\"Suivant\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Aucune action trouvée\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"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\"],\"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.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Pas encore de conversations. Vous pouvez planifier un rapport maintenant et les conversations seront incluses une fois ajoutees.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Personne dans l'organisation pour l'instant.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"1iQvuD\":[\"Pas encore de rapports\"],\"Ev2r9A\":[\"Aucun résultat\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"Aucun modèle ne correspond à {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"Aucun sujet de vérification disponible.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Plus ancien en premier\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"En cours\"],\"conversation.ongoing\":[\"En cours\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Modifiez uniquement ce paramètre en consultation avec la(les) personne(s) responsable(s) de la protection des données dans votre organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Ouvrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optionnel\"],\"ZFIvWo\":[\"Optionnel (retour à l'anglais)\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"ou\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Ou preferer discuter directement ?\"],\"1h45Hu\":[\"Ou écrivez le vôtre\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"URL de la politique de confidentialité de l'organisateur\"],\"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\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Nom et email du participant\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Mot de passe\"],\"zJx6Vx\":[\"Mot de passe modifié\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"En attente\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Les informations personnelles seront remplacées par des espaces réservés. La lecture audio, le téléchargement et la retranscription seront désactivés pour la nouvelle conversation.\"],\"zmwvG2\":[\"Téléphone\"],\"B8mlc2\":[\"Choisir une date\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Épingler\"],\"u8qC4w\":[\"Épingler le projet\"],\"S+WiJ3\":[\"Épinglez des modèles ici pour un accès rapide.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Épinglés est plein (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Modèles épinglés\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également répondre par écrit en cliquant sur l'icône de texte.\\n**Veuillez garder cet écran allumé**\\n(écran noir = pas d'enregistrement)\"],\"Lu1j4b\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également répondre par écrit en cliquant sur l'icône de texte.\\n**Veuillez garder cet écran allumé**\\n(écran noir = pas d'enregistrement).\\nVotre transcription sera anonymisée et votre hôte ne pourra pas écouter votre enregistrement.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG ou WebP. Sera recadré en cercle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Contenu du Portail\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"S8ugMC\":[\"Imprimer le rapport\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projet créé\"],\"zjTrs1\":[\"Valeur par défaut du projet : activé. Les informations personnelles seront remplacées par des espaces réservés. La lecture audio, le téléchargement et la retranscription seront désactivés pour la nouvelle conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Bibliothèque de projet | dembrane\"],\"QDjWwu\":[\"Résumé Meta du Projet\"],\"lltun+\":[\"Project moved\"],\"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\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Aperçu du projet | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projets\"],\"DK5DV3\":[\"Projets | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"EEYbdt\":[\"Publier\"],\"vsX8VJ\":[\"Publiez ce rapport d'abord pour afficher le lien du portail\"],\"IHzoSN\":[\"Publiez ce rapport pour obtenir un lien de partage\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Ressaisir le nouveau mot de passe\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Lire à haute voix\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"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.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.s3check.reconnect\":[\"Reconnecter\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Enregistrer\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Limite d'enregistrement atteinte\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"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\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Régénérer\"],\"PpFJd2\":[\"Régénérer le résumé\"],\"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...\"],\"HPitDS\":[\"S'enregistrer | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Recharger la page\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Rappeler aux utilisateurs de vérifier avant de finir\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Supprimer\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Supprimer l'avatar\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"O90CN2\":[\"Supprimer le logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"6PsaMr\":[\"Renommer le chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de réponse\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Rapport\"],\"e/MQa5\":[\"Rapport déjà en cours de génération\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"hh/mvZ\":[\"Génération du rapport annulée\"],\"sSy8vA\":[\"Génération du rapport en cours...\"],\"v7O77U\":[\"La génération du rapport a été annulée. Vous pouvez démarrer un nouveau rapport ci-dessous.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Notifications de rapports\"],\"M9snPp\":[\"Rapport programmé\"],\"u9r3Di\":[\"Les modèles de rapport sont sur notre feuille de route.\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"t9yxlZ\":[\"Rapports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Demander l'accès\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"8H5nRH\":[\"Demander le Réinitialisation du Mot de Passe | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"TMLAx2\":[\"Requis\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reprogrammer\"],\"6eIR/n\":[\"Replanifier pour\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Réinitialiser\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"9uplIY\":[\"Réinitialiser le Mot de Passe | dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"+gmVxi\":[\"La rétranscrire n'est pas disponible pour les conversations anonymisées\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"2fCpt5\":[\"Retour à l'accueil\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Lignes par page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Enregistrer\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Enregistrer comme modèle\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"5dVjYt\":[\"Enregistrer le modèle\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Enregistrement...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Planifier\"],\"wCGy0o\":[\"Programmer le rapport\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Défiler vers le bas\"],\"A1taO8\":[\"Rechercher\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Recherchez et sélectionnez les conversations pour ce chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"À bientôt\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"d3O/ZP\":[\"Sélectionner au moins un autre sujet avant de supprimer celui-ci\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Selectionnez jusqu'a 2 axes de focus pour votre rapport\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour \\\"Vérifier\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Envoyer\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nom de la Séance\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"BVRW7i\":[\"Paramètres | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Partager le rapport\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"nnWGzO\":[\"Partagez vos idées avec notre équipe\"],\"4o0klJ\":[\"Partagez votre voix en scannant le code QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Affichage de votre dernier rapport terminé.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Passer\"],\"participant.button.verify_prompt.skip\":[\"Passer\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Communauté Slack\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Quelque chose bloque votre connexion. Votre audio ne sera pas sauvegardé tant que ce problème ne sera pas résolu.\"],\"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.\"],\"mwpVVD\":[\"Un problème est survenu lors de la génération de votre dernier rapport.\"],\"2WNFmv\":[\"Un problème est survenu lors de la génération de votre rapport.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"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.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"65A04M\":[\"Espagnol\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Commencer de zéro\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Statut\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Planification Stratégique\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Succès\"],\"aG+cH9\":[\"Suggérer des suggestions dynamiques basées sur votre conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggéré:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Résumer\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Étiquettes\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template appliqué\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Nom du template\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Modèles\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"Le rapport peut démarrer jusqu'à 5 minutes après l'heure choisie.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Thème\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Cela peut se produire lorsqu'un VPN ou un pare-feu bloque la connexion. Essayez de désactiver votre VPN, de passer à un autre réseau (par ex. partage de connexion mobile) ou contactez votre service informatique pour obtenir de l'aide.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Ces informations sont anonymisées\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"Bibliothèque\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Cette partie de la page n'a pas pu se charger. Recharger la page règle souvent le problème. Si cela continue, revenez à l'accueil.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"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.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"Cet espace de travail a utilisé les heures d'enregistrement incluses. Demandez à un administrateur de l'organisation de passer à une offre supérieure.\"],\"nHYAFS\":[\"Cet espace de travail a utilisé les heures d'enregistrement incluses. Passez à une offre supérieure pour continuer à utiliser la voix.\"],\"1pzlg0\":[\"Cet espace de travail a utilisé ses heures d'enregistrement. Passez à une offre supérieure pour continuer à utiliser la voix.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Heure\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Astuce : Vous pouvez aussi créer un modèle à partir de n'importe quel message de chat que vous envoyez, ou dupliquer un modèle existant.\"],\"MHrjPM\":[\"Titre\"],\"1xkgU6\":[\"Titre auto-généré\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Pour nous aider à agir, essayez d'inclure où cela s'est produit et ce que vous essayiez de faire. Pour les bugs, dites-nous ce qui s'est mal passé. Pour les idées, dites-nous quel besoin cela résoudrait pour vous.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Sujet créé avec succès\"],\"Sawj4V\":[\"Sujet supprimé avec succès\"],\"xcp3ny\":[\"Étiquette de sujet\"],\"vQoAht\":[\"Sujet mis à jour avec succès\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcription en cours...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Tu peux demander\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Désactiver\"],\"QOnnq7\":[\"Désactiver l'anonymisation ?\"],\"portal.anonymization.disable.warning\":[\"La désactivation de l'anonymisation pendant les enregistrements en cours peut avoir des conséquences inattendues. Les conversations actives seront également affectées en cours d'enregistrement. Veuillez utiliser cette option avec prudence.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Tapez un message ou appuyez sur / pour les templates...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainien (uniquement les fonctionnalités ECHO, Transcription et Résumés)\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Raison inconnue\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Détacher\"],\"vSdeRU\":[\"Désépinglez d'abord un projet (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Désépinglez d'abord un projet (max 3)\"],\"dx+iaL\":[\"Désépingler le projet\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Conversation sans titre\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Rapport sans titre\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Mettre à jour\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Télécharger\"],\"V/OOEy\":[\"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.\"],\"AIGPM8\":[\"Télécharger un avatar\"],\"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\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Nom d'utilisateur\"],\"1Nt3Kg\":[\"Utilisation du logo dembrane par défaut\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Rappel de vérification\"],\"participant.banner.verification_required\":[\"Vérification requise\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Sujets de vérification\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vue\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"Voir vos réponses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"En attente de la fin des conversations avant de générer un rapport.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"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.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"Nous n'avons pas trouvé la page que vous cherchiez. Elle a peut-être été déplacée.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"Nous aimerions avoir de vos nouvelles. Que vous ayez une idée pour quelque chose de nouveau, que vous ayez trouvé un bug, repéré une traduction qui ne sonne pas bien, ou que vous souhaitiez simplement partager comment les choses se passent.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Bienvenue sur dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Bienvenue !\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"Que souhaitez-vous vérifier ?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"Que doit ECHO analyser ou générer à partir des conversations ?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"myUTw1\":[\"Lorsqu'un rapport a été généré pour le projet\"],\"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 ?\"],\"KmUKwU\":[\"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. Les conversations anonymisées désactivent également la lecture de l'audio, le téléchargement de l'audio et la rétranscrire pour protéger la confidentialité des participants. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"MEmr1I\":[\"Lorsque vous terminez la conversation, les participants qui n'ont pas encore vérifié seront invités à vérifier ou à sauter\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"Quand le rapport doit-il être généré ?\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Vous\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"Vous pouvez quitter cette page et revenir plus tard. Votre rapport continuera à être généré en arrière-plan.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"Vous pouvez réessayer ci-dessous.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Vous n'avez encore vérifié aucun résultat. Souhaitez-vous vérifier avant de terminer ?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"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.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Vous recevrez bientôt \",[\"objectLabel\"],\" à vérifier.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Votre approbation nous aide à comprendre ce que vous pensez vraiment !\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"La génération de votre dernier rapport a été annulée. Affichage de votre rapport le plus récent.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Votre nom\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(facultatif)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" vues\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversations • Modifié \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"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.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 vue\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. Lorsqu'un événement de conversation ou de rapport se produit, nous envoyons automatiquement les données à votre URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"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)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"Un nouveau rapport sera automatiquement généré et publié à l'heure prévue.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"Un rapport est déjà en cours de génération pour ce projet. Veuillez attendre qu'il soit terminé.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Compte\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Mot de passe du compte\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action par\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"m16xKo\":[\"Ajouter\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Ajouter des conversations au contexte\"],\"8T7YRB\":[\"Ajoutez d'abord des conversations a votre projet\"],\"LL1rvo\":[\"Ajouter un sujet personnalisé\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Ajouter un sujet\"],\"AHaRrL\":[\"Ajouter des traductions\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Ajoutées\"],\"Na90E+\":[\"E-mails ajoutés\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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 :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"Du6bPw\":[\"Adresse\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Exécution guidée par les outils\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Tout\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Tous les modèles\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Permettre aux participants d'utiliser le lien pour démarrer de nouvelles conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Presque terminé\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Déjà ajouté à cette conversation\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Déjà dans le contexte\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Une erreur inattendue s'est produite. Recharger la page ou revenir à l'accueil aide souvent.\"],\"F4cOH1\":[\"Langue d'analyse\"],\"ZlwDi6\":[\"Analytique\"],\"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.\"],\"Dzr23X\":[\"Annonces\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymiser la transcription\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"YdiKaK\":[\"conversation anonymisée\"],\"iPiP6k\":[\"Conversation anonymisée\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Apparence\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Appliquer\"],\"4TwsNi\":[\"Appliquer le modèle\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"uqhbrg\":[\"Êtes-vous sûr de vouloir supprimer ce chat ? Cette action est irréversible.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"yrk3z3\":[\"Êtes-vous sûr de vouloir supprimer ce sujet personnalisé ? Cette action ne peut pas être annulée.\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"ELQ+fw\":[\"Êtes-vous sûr de vouloir supprimer ce rapport ? Cette action est irréversible.\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"e3BGhi\":[\"Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action est irréversible.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"ZmeZPn\":[\"Êtes-vous sûr de vouloir supprimer votre avatar ?\"],\"wQ5jM6\":[\"Êtes-vous sûr de vouloir supprimer votre logo personnalisé ? Le logo dembrane par défaut sera utilisé à la place.\"],\"F+vBv0\":[\"Demander\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Le téléchargement de l'audio n'est pas disponible pour les conversations anonymisées\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La lecture de l'audio n'est pas disponible pour les conversations anonymisées\"],\"IOBCIN\":[\"Conseil audio\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"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.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar supprimé\"],\"jSKImf\":[\"Avatar mis à jour\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Retour à la sélection\"],\"UNaXdI\":[\"Retour aux modèles\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basique (Diapositives tutorielles essentielles)\"],\"epXTwc\":[\"Paramètres de base\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"KKLfx1\":[\"Reservez un appel avec nous\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"En supprimant ce projet, vous supprimerez toutes les données associées. Cette action est irréversible. Êtes-vous absolument sûr ?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Annuler la planification\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"SL9Qao\":[\"Impossible de reprogrammer dans les 10 minutes précédant l'heure prévue\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Carte\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Changer de langue\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Changer le mot de passe\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Discussion | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Nom du chat\"],\"8Q+lLG\":[\"Discussions\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"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\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Gestion client\"],\"+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\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"CfO59/\":[\"Comparer & Contraster Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Terminé\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"7VpPHA\":[\"Confirmer\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirmer le nouveau mot de passe\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Publier\"],\"vz1fGK\":[\"Confirmer la reprogrammation\"],\"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\"],\"participant.modal.s3check.title\":[\"Problème de connexion\"],\"WimHuY\":[\"Connexion défectueuse\"],\"l9fkrm\":[\"Consentement\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Contenu\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"JX3KT4\":[\"Suggestions contextuelles\"],\"xGVfLh\":[\"Continuer\"],\"participant.button.continue\":[\"Continuer\"],\"participant.ready.to.begin.button.text\":[\"Continuer\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"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\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Période de repos. Disponible dans \",[\"0\"]],\"6V3Ea3\":[\"Copié\"],\"84o0nc\":[\"Copié depuis la conversation originale\"],\"PiH3UR\":[\"Copié !\"],\"iaPtht\":[\"copie\"],\"he3ygx\":[\"Copier\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copier le lien\"],\"H4brGj\":[\"Copier le lien dans le presse-papiers\"],\"AjrNNs\":[\"Copier le contenu du rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"OvEjsP\":[\"Copie en cours...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Votre sélection n'a pas pu être reprise. Sélectionnez à nouveau ci-dessous.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Impossible de copier dans le presse-papiers. Veuillez réessayer.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Impossible d'ouvrir la liste des conversations. Réessayez.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"oJfYM5\":[\"Créer un brief de recherche à partir des conversations récentes\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Créer une bibliothèque\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Créer un rapport\"],\"A5hiCy\":[\"Créer un modèle\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Créé le\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Recadrer l'avatar\"],\"udBqWc\":[\"Recadrer l'image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recadrer le logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Logo actuel\"],\"Pn2B7/\":[\"Mot de passe actuel\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Personnalisé\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Logo personnalisé\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"URL du tableau de bord (lien direct vers l'aperçu de la conversation)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"K/78Yl\":[\"Déléguer une analyse multi-étapes avec l'exécution en direct des outils\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Supprimer le chat\"],\"2GCE3m\":[\"Supprimer la conversation\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"j5pYC4\":[\"Supprimer le sujet personnalisé\"],\"mp235G\":[\"Supprimer le projet\"],\"++iDlT\":[\"Supprimer le projet\"],\"rUWrSE\":[\"Supprimer le rapport\"],\"qr0gpK\":[\"Supprimer le tag\"],\"DFjdv0\":[\"Supprimer le modèle\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Supprimer le webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Supprimé avec succès\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Décrivez ce que le modèle de langage doit extraire ou résumer de la conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Détermine sous quelle base juridique de GDPR les données personnelles sont traitées. Cette configuration s'applique à tous vos projets et peut être modifiée dans vos paramètres de compte.\"],\"YrOV6x\":[\"Détermine sous quelle base juridique de GDPR les données personnelles sont traitées. Cette configuration s'applique à tous vos projets et peut être modifiée dans vos paramètres de compte.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Nom d'affichage\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Brouillon des actions suivantes et les organiser par priorité\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Dupliquer\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"p. ex. \\\"Focus sur les thèmes de durabilité\\\" ou \\\"Que pensent les participants de la nouvelle politique ?\\\"\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"ex. Résumé hebdomadaire des parties prenantes\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"Y/3VME\":[\"Modifier le sujet personnalisé\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Mode édition\"],\"niSWGL\":[\"Modifier les options\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"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\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@travail.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji affiché à côté du sujet, par exemple : 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"D3AnH0\":[\"Activer Explorer\"],\"4KKbfZ\":[\"Activer la participation\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"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.\"],\"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é\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Saisir le mot de passe actuel\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"VpwcSk\":[\"Saisir le nouveau mot de passe\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Quitter le plein écran\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Expérimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"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\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"UQ6LqT\":[\"Échec de la création du sujet personnalisé\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Échec de la suppression du sujet personnalisé\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"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\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Impossible de supprimer l'avatar\"],\"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\"],\"IMUHg3\":[\"Replanification echouee. Veuillez choisir un horaire plus eloigne et reessayer.\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Échec de la mise à jour du sujet personnalisé\"],\"BpuK7o\":[\"Échec de la mise à jour de la base juridique\"],\"Avee+B\":[\"Impossible de mettre à jour le nom\"],\"gnm1CH\":[\"Échec de la mise à jour de l'épingle\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Impossible de télécharger l'avatar\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Portail de commentaires\"],\"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é\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Trouver des contradictions et suggérer des questions de suivi\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Terminé\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Taille de la police\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"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.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Français\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"3qkggm\":[\"Plein écran\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Générer\"],\"EIdJgG\":[\"Générer un nouveau rapport\"],\"QsUhrf\":[\"Générer un rapport\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"MWSGhX\":[\"Générer la bibliothèque\"],\"5SWGxv\":[\"Générer maintenant\"],\"GWUJ9X\":[\"Générer maintenant\"],\"QqIxfi\":[\"Générer un secret\"],\"gitFA/\":[\"Générer un résumé\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Génération du rapport...\"],\"kzY+nd\":[\"Génération du résumé. Patiente un peu...\"],\"hMOYzR\":[\"Génération de votre rapport en cours...\"],\"DDcvSo\":[\"Allemand\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"DXr0zk\":[\"Plein écran\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Aller aux paramètres\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"uMjvI3\":[\"Guider le rapport\"],\"myXGZW\":[\"Guide\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Masqué\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"eHo/Jc\":[\"Masquer les données\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Concept spécifique mis en évidence\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Accueil\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"Je comprends\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"Si vous êtes satisfait de \",[\"objectLabel\"],\", cliquez sur \\\"Approuver\\\" pour montrer que vous vous sentez entendu.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Inclure le lien du portail\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Perspectives\"],\"MSVCjk\":[\"Instructions pour générer le résultat de la vérification\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Adresse IP\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"Il semble que vous n'ayez pas encore de rapport pour ce projet. Générez-en un pour obtenir un aperçu de vos conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"nfvG6u\":[\"Italien (uniquement les fonctionnalités ECHO, Transcription et Résumés)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Un instant\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Parlez ou écrivez naturellement. Votre contribution va directement à notre équipe produit et nous aide vraiment à améliorer dembrane. Nous lisons tout.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"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.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Langue\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Dernier\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"En savoir plus sur les webhooks\"],\"ffCwpJ\":[\"Laisser vide pour conserver l'existant\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Base juridique\"],\"7kyKF5\":[\"Base juridique mise à jour\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"gkv8iG\":[\"Plaque d'immatriculation\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Lien\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Lien vers la politique de confidentialité de votre organisation qui sera affichée aux participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Direct\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Mode d'exécution de l'agent en direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Vue en direct\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"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...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Connexion\"],\"LM/dWU\":[\"Connexion | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo supprimé\"],\"MjfaMh\":[\"Logo mis à jour\"],\"nOhz3x\":[\"Déconnexion\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Plus long en premier\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Gérer les modèles\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Marquer comme lue\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Notes de réunion\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"autres\"],\"JcD7qf\":[\"Plus d'actions\"],\"QWdKwH\":[\"Déplacer\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Déplacer\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Doit etre au moins 10 minutes dans le futur\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mes modèles\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Nom mis à jour\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Nom Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"Nouveau\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"u2uElg\":[\"Nouvelles conversations ajoutees depuis ce rapport\"],\"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.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Nouveau mot de passe\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Nouveau rapport\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Plus récent en premier\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.next\":[\"Suivant\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Aucune action trouvée\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"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\"],\"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.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Pas encore de conversations. Vous pouvez planifier un rapport maintenant et les conversations seront incluses une fois ajoutees.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Personne dans l'organisation pour l'instant.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"1iQvuD\":[\"Pas encore de rapports\"],\"Ev2r9A\":[\"Aucun résultat\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"Aucun modèle ne correspond à {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"Aucun sujet de vérification disponible.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Plus ancien en premier\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"En cours\"],\"conversation.ongoing\":[\"En cours\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Modifiez uniquement ce paramètre en consultation avec la(les) personne(s) responsable(s) de la protection des données dans votre organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Ouvrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optionnel\"],\"ZFIvWo\":[\"Optionnel (retour à l'anglais)\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"ou\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Ou preferer discuter directement ?\"],\"1h45Hu\":[\"Ou écrivez le vôtre\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"URL de la politique de confidentialité de l'organisateur\"],\"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\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Nom et email du participant\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Mot de passe\"],\"zJx6Vx\":[\"Mot de passe modifié\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"PTSHeg\":[\"Mettre en pause la lecture\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"En attente\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Les informations personnelles seront remplacées par des espaces réservés. La lecture audio, le téléchargement et la retranscription seront désactivés pour la nouvelle conversation.\"],\"zmwvG2\":[\"Téléphone\"],\"B8mlc2\":[\"Choisir une date\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Épingler\"],\"u8qC4w\":[\"Épingler le projet\"],\"S+WiJ3\":[\"Épinglez des modèles ici pour un accès rapide.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Épinglés est plein (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Modèles épinglés\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également répondre par écrit en cliquant sur l'icône de texte.\\n**Veuillez garder cet écran allumé**\\n(écran noir = pas d'enregistrement)\"],\"Lu1j4b\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également répondre par écrit en cliquant sur l'icône de texte.\\n**Veuillez garder cet écran allumé**\\n(écran noir = pas d'enregistrement).\\nVotre transcription sera anonymisée et votre hôte ne pourra pas écouter votre enregistrement.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG ou WebP. Sera recadré en cercle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Contenu du Portail\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"S8ugMC\":[\"Imprimer le rapport\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projet créé\"],\"zjTrs1\":[\"Valeur par défaut du projet : activé. Les informations personnelles seront remplacées par des espaces réservés. La lecture audio, le téléchargement et la retranscription seront désactivés pour la nouvelle conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Bibliothèque de projet | dembrane\"],\"QDjWwu\":[\"Résumé Meta du Projet\"],\"lltun+\":[\"Project moved\"],\"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\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Aperçu du projet | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projets\"],\"DK5DV3\":[\"Projets | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"EEYbdt\":[\"Publier\"],\"vsX8VJ\":[\"Publiez ce rapport d'abord pour afficher le lien du portail\"],\"IHzoSN\":[\"Publiez ce rapport pour obtenir un lien de partage\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Ressaisir le nouveau mot de passe\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Lire à haute voix\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"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.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.s3check.reconnect\":[\"Reconnecter\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Enregistrer\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Limite d'enregistrement atteinte\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"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\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Régénérer\"],\"PpFJd2\":[\"Régénérer le résumé\"],\"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...\"],\"HPitDS\":[\"S'enregistrer | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Recharger la page\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Rappeler aux utilisateurs de vérifier avant de finir\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Supprimer\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Supprimer l'avatar\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"O90CN2\":[\"Supprimer le logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"6PsaMr\":[\"Renommer le chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de réponse\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Rapport\"],\"e/MQa5\":[\"Rapport déjà en cours de génération\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"hh/mvZ\":[\"Génération du rapport annulée\"],\"sSy8vA\":[\"Génération du rapport en cours...\"],\"v7O77U\":[\"La génération du rapport a été annulée. Vous pouvez démarrer un nouveau rapport ci-dessous.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Notifications de rapports\"],\"M9snPp\":[\"Rapport programmé\"],\"u9r3Di\":[\"Les modèles de rapport sont sur notre feuille de route.\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"t9yxlZ\":[\"Rapports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Demander l'accès\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"8H5nRH\":[\"Demander le Réinitialisation du Mot de Passe | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"TMLAx2\":[\"Requis\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reprogrammer\"],\"6eIR/n\":[\"Replanifier pour\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Réinitialiser\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"9uplIY\":[\"Réinitialiser le Mot de Passe | dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"+gmVxi\":[\"La rétranscrire n'est pas disponible pour les conversations anonymisées\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"2fCpt5\":[\"Retour à l'accueil\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Cliquez avec le bouton droit pour mettre en évidence\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Lignes par page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Enregistrer\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Enregistrer comme modèle\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"5dVjYt\":[\"Enregistrer le modèle\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Enregistrement...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Planifier\"],\"wCGy0o\":[\"Programmer le rapport\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Défiler vers le bas\"],\"A1taO8\":[\"Rechercher\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Recherchez et sélectionnez les conversations pour ce chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"À bientôt\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Sélectionner tous les résultats\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Sélectionner au moins un événement\"],\"d3O/ZP\":[\"Sélectionner au moins un autre sujet avant de supprimer celui-ci\"],\"NK2YNj\":[\"Sélectionner les fichiers audio à télécharger\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Sélectionne des conversations et trouve des citations précises\"],\"LyHz7Q\":[\"Sélectionne des conversations dans la barre latérale\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Selectionnez jusqu'a 2 axes de focus pour votre rapport\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour \\\"Vérifier\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Envoyer\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nom de la Séance\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"BVRW7i\":[\"Paramètres | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Partager le rapport\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"nnWGzO\":[\"Partagez vos idées avec notre équipe\"],\"4o0klJ\":[\"Partagez votre voix en scannant le code QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Affichage de votre dernier rapport terminé.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Passer\"],\"participant.button.verify_prompt.skip\":[\"Passer\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Communauté Slack\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Quelque chose bloque votre connexion. Votre audio ne sera pas sauvegardé tant que ce problème ne sera pas résolu.\"],\"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.\"],\"mwpVVD\":[\"Un problème est survenu lors de la génération de votre dernier rapport.\"],\"2WNFmv\":[\"Un problème est survenu lors de la génération de votre rapport.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"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.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"sBJ5MF\":[\"Sources\"],\"65A04M\":[\"Espagnol\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Commencer de zéro\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Statut\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Planification Stratégique\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Succès\"],\"aG+cH9\":[\"Suggérer des suggestions dynamiques basées sur votre conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggéré:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Résumer\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"D+NlUC\":[\"Système\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Étiquettes\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template appliqué\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Nom du template\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Modèles\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"Le rapport peut démarrer jusqu'à 5 minutes après l'heure choisie.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Thème\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Cela peut se produire lorsqu'un VPN ou un pare-feu bloque la connexion. Essayez de désactiver votre VPN, de passer à un autre réseau (par ex. partage de connexion mobile) ou contactez votre service informatique pour obtenir de l'aide.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Ces informations sont anonymisées\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"Bibliothèque\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Cette partie de la page n'a pas pu se charger. Recharger la page règle souvent le problème. Si cela continue, revenez à l'accueil.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"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.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"Cet espace de travail a utilisé les heures d'enregistrement incluses. Demandez à un administrateur de l'organisation de passer à une offre supérieure.\"],\"nHYAFS\":[\"Cet espace de travail a utilisé les heures d'enregistrement incluses. Passez à une offre supérieure pour continuer à utiliser la voix.\"],\"1pzlg0\":[\"Cet espace de travail a utilisé ses heures d'enregistrement. Passez à une offre supérieure pour continuer à utiliser la voix.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Heure\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Astuce : Vous pouvez aussi créer un modèle à partir de n'importe quel message de chat que vous envoyez, ou dupliquer un modèle existant.\"],\"MHrjPM\":[\"Titre\"],\"1xkgU6\":[\"Titre auto-généré\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Pour nous aider à agir, essayez d'inclure où cela s'est produit et ce que vous essayiez de faire. Pour les bugs, dites-nous ce qui s'est mal passé. Pour les idées, dites-nous quel besoin cela résoudrait pour vous.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Sujet créé avec succès\"],\"Sawj4V\":[\"Sujet supprimé avec succès\"],\"xcp3ny\":[\"Étiquette de sujet\"],\"vQoAht\":[\"Sujet mis à jour avec succès\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcription en cours...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Tu peux demander\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Désactiver\"],\"QOnnq7\":[\"Désactiver l'anonymisation ?\"],\"portal.anonymization.disable.warning\":[\"La désactivation de l'anonymisation pendant les enregistrements en cours peut avoir des conséquences inattendues. Les conversations actives seront également affectées en cours d'enregistrement. Veuillez utiliser cette option avec prudence.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Tapez un message ou appuyez sur / pour les templates...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainien (uniquement les fonctionnalités ECHO, Transcription et Résumés)\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Raison inconnue\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Détacher\"],\"vSdeRU\":[\"Désépinglez d'abord un projet (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Désépinglez d'abord un projet (max 3)\"],\"dx+iaL\":[\"Désépingler le projet\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Conversation sans titre\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Rapport sans titre\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Mettre à jour\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Télécharger\"],\"V/OOEy\":[\"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.\"],\"AIGPM8\":[\"Télécharger un avatar\"],\"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\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Nom d'utilisateur\"],\"1Nt3Kg\":[\"Utilisation du logo dembrane par défaut\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Rappel de vérification\"],\"participant.banner.verification_required\":[\"Vérification requise\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Sujets de vérification\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vue\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"Voir vos réponses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"En attente de la fin des conversations avant de générer un rapport.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"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.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"Nous n'avons pas trouvé la page que vous cherchiez. Elle a peut-être été déplacée.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"Nous aimerions avoir de vos nouvelles. Que vous ayez une idée pour quelque chose de nouveau, que vous ayez trouvé un bug, repéré une traduction qui ne sonne pas bien, ou que vous souhaitiez simplement partager comment les choses se passent.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Bienvenue sur dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Bienvenue !\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"Que souhaitez-vous vérifier ?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"Que doit ECHO analyser ou générer à partir des conversations ?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"Lorsqu'un participant ouvre le portail, entre ses détails et commence une conversation\"],\"myUTw1\":[\"Lorsqu'un rapport a été généré pour le projet\"],\"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 ?\"],\"KmUKwU\":[\"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. Les conversations anonymisées désactivent également la lecture de l'audio, le téléchargement de l'audio et la rétranscrire pour protéger la confidentialité des participants. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"MEmr1I\":[\"Lorsque vous terminez la conversation, les participants qui n'ont pas encore vérifié seront invités à vérifier ou à sauter\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"Quand le rapport doit-il être généré ?\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Souhaitez-vous ajouter cette étiquette à vos filtres actuels ?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Vous\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"Vous pouvez quitter cette page et revenir plus tard. Votre rapport continuera à être généré en arrière-plan.\"],\"E71LBI\":[\"Vous ne pouvez télécharger que jusqu'à \",[\"MAX_FILES\"],\" fichiers à la fois. Seuls les premiers \",[\"0\"],\" fichiers seront ajoutés.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"Vous pouvez réessayer ci-dessous.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Vous n'avez encore vérifié aucun résultat. Souhaitez-vous vérifier avant de terminer ?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"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.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Vous recevrez bientôt \",[\"objectLabel\"],\" à vérifier.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Votre approbation nous aide à comprendre ce que vous pensez vraiment !\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"La génération de votre dernier rapport a été annulée. Affichage de votre rapport le plus récent.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Votre nom\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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 6488d71aa..58c2be932 100644 --- a/echo/frontend/src/locales/it-IT.po +++ b/echo/frontend/src/locales/it-IT.po @@ -213,7 +213,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2101 +#: src/components/chat/AgenticChatPanel.tsx:2114 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -478,11 +478,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:267 +#: src/components/chat/AgenticChatPanel.tsx:279 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:266 +#: src/components/chat/AgenticChatPanel.tsx:278 msgid "{name}'s transcript excerpt" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "Advanced (Tips and best practices)" msgid "Advanced Settings" msgstr "Advanced Settings" -#: src/components/chat/AgenticChatPanel.tsx:385 +#: src/components/chat/AgenticChatPanel.tsx:398 msgid "Agent run failed" msgstr "" @@ -1435,7 +1435,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2250 +#: src/components/chat/AgenticChatPanel.tsx:2263 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1529,7 +1529,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1813 +#: src/components/chat/AgenticChatPanel.tsx:1826 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1546,7 +1546,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2231 +#: src/components/chat/AgenticChatPanel.tsx:2244 msgid "Ask about your conversations..." msgstr "" @@ -1884,7 +1884,7 @@ msgstr "" msgid "Book a call" msgstr "Book a call" -#: src/components/common/FeedbackPortalModal.tsx:98 +#: src/components/common/FeedbackPortalModal.tsx:115 msgid "Book a call with us" msgstr "Prenota una chiamata con noi" @@ -1986,11 +1986,11 @@ msgstr "" #: src/components/conversation/ConversationAccordion.tsx:336 #: src/components/common/InputModal.tsx:77 #: src/components/common/ImageCropModal.tsx:145 -#: src/components/common/FeedbackPortalModal.tsx:124 +#: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:734 -#: src/components/chat/AgenticChatPanel.tsx:2139 +#: src/components/chat/AgenticChatPanel.tsx:747 +#: src/components/chat/AgenticChatPanel.tsx:2152 msgid "Cancel" msgstr "Cancel" @@ -2023,7 +2023,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:722 +#: src/components/chat/AgenticChatPanel.tsx:735 msgid "Cancel current run" msgstr "" @@ -2189,7 +2189,7 @@ msgstr "Changing language during an active chat may lead to unexpected results. #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1657 +#: src/components/chat/AgenticChatPanel.tsx:1670 msgid "Chat" msgstr "Chat" @@ -2528,7 +2528,7 @@ msgstr "Content" msgid "Context" msgstr "Context" -#: src/components/chat/ChatHistoryMessage.tsx:394 +#: src/components/chat/ChatHistoryMessage.tsx:419 msgid "Context added:" msgstr "Context added:" @@ -3268,7 +3268,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2268 +#: src/components/chat/AgenticChatPanel.tsx:2281 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3456,7 +3456,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:404 +#: src/components/chat/AgenticChatPanel.tsx:417 msgid "Done" msgstr "" @@ -3826,8 +3826,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:409 -#: src/components/chat/AgenticChatPanel.tsx:1759 +#: src/components/chat/AgenticChatPanel.tsx:422 +#: src/components/chat/AgenticChatPanel.tsx:1772 msgid "Error" msgstr "Error" @@ -4179,11 +4179,11 @@ msgstr "Failed to revise outcome. 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/chat/AgenticChatPanel.tsx:1650 +#: src/components/chat/AgenticChatPanel.tsx:1663 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1609 +#: src/components/chat/AgenticChatPanel.tsx:1622 msgid "Failed to submit agentic message" msgstr "" @@ -4229,7 +4229,7 @@ msgstr "Feature available soon" msgid "Feedback" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:44 +#: src/components/common/FeedbackPortalModal.tsx:61 msgid "Feedback portal" msgstr "Feedback portal" @@ -4344,13 +4344,13 @@ msgstr "" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2143 -#: src/components/chat/AgenticChatPanel.tsx:2144 -#: src/components/chat/AgenticChatPanel.tsx:2278 +#: src/components/chat/AgenticChatPanel.tsx:2156 +#: src/components/chat/AgenticChatPanel.tsx:2157 +#: src/components/chat/AgenticChatPanel.tsx:2291 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:240 +#: src/components/chat/AgenticChatPanel.tsx:252 msgid "Focusing on:" msgstr "" @@ -4717,7 +4717,7 @@ msgstr "" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Hide steps" msgstr "" @@ -4781,11 +4781,11 @@ msgstr "" "* What is the north star goal or key metric\n" "* What does success look like" -#: src/components/chat/AgenticChatPanel.tsx:1927 +#: src/components/chat/AgenticChatPanel.tsx:1940 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1943 +#: src/components/chat/AgenticChatPanel.tsx:1956 msgid "I applied the goal." msgstr "" @@ -4839,7 +4839,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1837 +#: src/components/chat/AgenticChatPanel.tsx:1850 msgid "Improve my setup" msgstr "" @@ -5133,7 +5133,7 @@ msgstr "" msgid "Join for support (24h)" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:115 +#: src/components/common/FeedbackPortalModal.tsx:132 msgid "Join our Slack community" msgstr "" @@ -5187,7 +5187,7 @@ msgstr "" msgid "Just started" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:64 +#: src/components/common/FeedbackPortalModal.tsx:81 msgid "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." msgstr "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." @@ -5418,11 +5418,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link to your organisation's privacy policy that will be shown to participants" -#: src/components/chat/AgenticChatPanel.tsx:1827 +#: src/components/chat/AgenticChatPanel.tsx:1840 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1828 +#: src/components/chat/AgenticChatPanel.tsx:1841 msgid "List the conversations in this project." msgstr "" @@ -5481,7 +5481,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5535,7 +5535,7 @@ msgstr "Loading microphones..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1770 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Loading this chat..." msgstr "" @@ -5791,7 +5791,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2246 +#: src/components/chat/AgenticChatPanel.tsx:2259 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -6798,8 +6798,8 @@ msgstr "" msgid "Open to the workspace" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:227 -#: src/components/chat/ChatHistoryMessage.tsx:231 +#: src/components/chat/ChatHistoryMessage.tsx:250 +#: src/components/chat/ChatHistoryMessage.tsx:254 msgid "Open transcript" msgstr "" @@ -6863,7 +6863,7 @@ msgstr "or" msgid "Or choose a time" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:91 +#: src/components/common/FeedbackPortalModal.tsx:108 msgid "Or prefer to chat directly?" msgstr "O preferisci chattare direttamente?" @@ -7727,7 +7727,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:587 +#: src/components/chat/AgenticChatPanel.tsx:600 msgid "Ran {0} steps at once" msgstr "" @@ -7852,7 +7852,7 @@ msgstr "" msgid "participant.button.record" msgstr "Record" -#: src/components/chat/AgenticChatPanel.tsx:2168 +#: src/components/chat/AgenticChatPanel.tsx:2181 msgid "Record a voice message" msgstr "" @@ -7888,7 +7888,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Recording Paused" -#: src/components/chat/AgenticChatPanel.tsx:859 +#: src/components/chat/AgenticChatPanel.tsx:872 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8094,7 +8094,7 @@ msgid "project.sidebar.chat.rename" msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1720 +#: src/components/chat/AgenticChatPanel.tsx:1733 msgid "Rename chat" msgstr "Rename chat" @@ -8412,7 +8412,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1838 +#: src/components/chat/AgenticChatPanel.tsx:1851 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8484,7 +8484,7 @@ msgstr "" msgid "Rows per page" msgstr "Rows per page" -#: src/components/chat/AgenticChatPanel.tsx:414 +#: src/components/chat/AgenticChatPanel.tsx:427 msgid "Running" msgstr "" @@ -8515,7 +8515,7 @@ msgstr "Save" msgid "Save access" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:296 +#: src/components/chat/ChatHistoryMessage.tsx:319 msgid "Save as template" msgstr "Save as template" @@ -8558,7 +8558,7 @@ msgstr "" msgid "Saving..." msgstr "Saving..." -#: src/components/common/FeedbackPortalModal.tsx:87 +#: src/components/common/FeedbackPortalModal.tsx:104 msgid "Scan or click the QR code to open the feedback portal" msgstr "" @@ -8940,7 +8940,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2205 +#: src/components/chat/AgenticChatPanel.tsx:2218 msgid "Send" msgstr "Send" @@ -9204,7 +9204,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Show steps" msgstr "" @@ -9323,7 +9323,7 @@ msgstr "Something went wrong generating your latest report." msgid "Something went wrong generating your report." msgstr "Something went wrong generating your report." -#: src/components/chat/AgenticChatPanel.tsx:206 +#: src/components/chat/AgenticChatPanel.tsx:218 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9372,6 +9372,10 @@ msgstr "Sort" msgid "Source {0}" msgstr "Source {0}" +#: src/components/chat/ChatHistoryMessage.tsx:359 +msgid "Sources" +msgstr "" + #: src/components/project/ProjectPortalEditor.tsx:644 msgid "Spanish" msgstr "Spanish" @@ -9487,7 +9491,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2163 +#: src/components/chat/AgenticChatPanel.tsx:2176 msgid "Stop" msgstr "Stop" @@ -9496,7 +9500,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2153 +#: src/components/chat/AgenticChatPanel.tsx:2166 msgid "Stop recording and turn it into text" msgstr "" @@ -10206,7 +10210,7 @@ msgstr "This report is not yet available. " msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" -#: src/components/chat/AgenticChatPanel.tsx:204 +#: src/components/chat/AgenticChatPanel.tsx:216 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10273,7 +10277,7 @@ msgstr "" msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2182 +#: src/components/chat/AgenticChatPanel.tsx:2195 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "" @@ -10375,7 +10379,7 @@ msgstr "" msgid "To assign a new tag, please create it first in the portal settings." msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:57 +#: src/components/common/FeedbackPortalModal.tsx:74 msgid "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." msgstr "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." @@ -10392,7 +10396,7 @@ msgstr "Too large" msgid "Too long" msgstr "Too long" -#: src/components/chat/AgenticChatPanel.tsx:2117 +#: src/components/chat/AgenticChatPanel.tsx:2130 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10490,7 +10494,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:270 +#: src/components/chat/AgenticChatPanel.tsx:282 msgid "transcript" msgstr "" @@ -10506,7 +10510,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:269 +#: src/components/chat/AgenticChatPanel.tsx:281 msgid "transcript excerpt" msgstr "" @@ -11017,7 +11021,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2264 +#: src/components/chat/AgenticChatPanel.tsx:2277 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" @@ -11301,7 +11305,7 @@ msgstr "" 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." -#: src/components/common/FeedbackPortalModal.tsx:50 +#: src/components/common/FeedbackPortalModal.tsx:67 msgid "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." msgstr "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." @@ -11424,11 +11428,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "What should ECHO analyse or generate from the conversations?" -#: src/components/chat/AgenticChatPanel.tsx:1833 +#: src/components/chat/AgenticChatPanel.tsx:1846 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1832 +#: src/components/chat/AgenticChatPanel.tsx:1845 msgid "What themes came up?" msgstr "" @@ -11498,7 +11502,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1810 +#: src/components/chat/AgenticChatPanel.tsx:1823 msgid "Where would you like to start?" msgstr "" @@ -11541,11 +11545,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:588 +#: src/components/chat/AgenticChatPanel.tsx:601 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1682 +#: src/components/chat/AgenticChatPanel.tsx:1695 msgid "Working on your answer..." msgstr "" @@ -11809,7 +11813,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" -#: src/components/chat/AgenticChatPanel.tsx:202 +#: src/components/chat/AgenticChatPanel.tsx:214 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/it-IT.ts b/echo/frontend/src/locales/it-IT.ts index 1584a449c..4430c21c5 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.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" views\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"A report is already being generated for this project. Please wait for it to complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Account password\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action By\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Aggiungi prima delle conversazioni al tuo progetto\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Almost there\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Already added to this chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Already in context\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"C'è stato un errore imprevisto. Di solito basta ricaricare la pagina o tornare alla home.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Announcements\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"IOBCIN\":[\"Audio Tip\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Prenota una chiamata con noi\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"iaPtht\":[\"copy\"],\"he3ygx\":[\"Copy\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Data\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"YrOV6x\":[\"Determines under which GDPR legal basis personal data is processed. This setting applies to all your projects and can be changed in your account settings.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"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\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Riprogrammazione non riuscita. Scegli un orario più avanti e riprova.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"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\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Font Size\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generating report...\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"hMOYzR\":[\"Generating your report...\"],\"DDcvSo\":[\"German\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Go to Settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guidato\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"I understand\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Legal Basis\"],\"7kyKF5\":[\"Legal basis updated\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link to your organisation's privacy policy that will be shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Mark all read\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Mark as read\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Deve essere almeno 10 minuti nel futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"Nuove conversazioni aggiunte da questo report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"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.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Ancora nessuna conversazione. Puoi programmare un report ora. Le aggiungiamo quando arrivano.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Ancora nessuno nell'organizzazione.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"O preferisci chattare direttamente?\"],\"1h45Hu\":[\"Or write your own\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"Organiser's Privacy Policy URL\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Scegli una data\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"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)\"],\"Lu1j4b\":[\"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).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Project Library | dembrane\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Recording limit reached\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Ricarica la pagina\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Riprogramma per\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Torna alla home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rows per page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Cerca e seleziona le conversazioni per questa chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Select at least one event\"],\"d3O/ZP\":[\"Select at least one other topic before deleting this one\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Seleziona fino a 2 aree di focus per il tuo report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Condividi la tua voce scansionando il codice QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"65A04M\":[\"Spanish\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Questa parte della pagina non si è caricata. Di solito basta ricaricare. Se succede ancora, torna alla home.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"This workspace has used its included recording hours. Ask an organisation admin to upgrade.\"],\"nHYAFS\":[\"This workspace has used its included recording hours. Upgrade to keep using voice.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Ora\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Upload\"],\"V/OOEy\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Username\"],\"1Nt3Kg\":[\"Using default dembrane logo\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"Non abbiamo trovato la pagina che cercavi. Forse è stata spostata.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Benvenuto nella modalità Panoramica. Ho caricato i riassunti di tutte le tue conversazioni. Chiedimi schemi, temi o approfondimenti nei tuoi dati. Per citazioni esatte, apri una nuova chat in modalità Contesto Specifico.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"myUTw1\":[\"When a report has been generated for the project\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" views\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"A report is already being generated for this project. Please wait for it to complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Account password\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action By\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Aggiungi prima delle conversazioni al tuo progetto\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Almost there\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Already added to this chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Already in context\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"C'è stato un errore imprevisto. Di solito basta ricaricare la pagina o tornare alla home.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Announcements\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"IOBCIN\":[\"Audio Tip\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Prenota una chiamata con noi\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"iaPtht\":[\"copy\"],\"he3ygx\":[\"Copy\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Data\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"YrOV6x\":[\"Determines under which GDPR legal basis personal data is processed. This setting applies to all your projects and can be changed in your account settings.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"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\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Riprogrammazione non riuscita. Scegli un orario più avanti e riprova.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"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\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Font Size\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generating report...\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"hMOYzR\":[\"Generating your report...\"],\"DDcvSo\":[\"German\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Go to Settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guidato\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"I understand\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Legal Basis\"],\"7kyKF5\":[\"Legal basis updated\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link to your organisation's privacy policy that will be shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Mark all read\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Mark as read\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Deve essere almeno 10 minuti nel futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"Nuove conversazioni aggiunte da questo report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"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.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Ancora nessuna conversazione. Puoi programmare un report ora. Le aggiungiamo quando arrivano.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Ancora nessuno nell'organizzazione.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"O preferisci chattare direttamente?\"],\"1h45Hu\":[\"Or write your own\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"Organiser's Privacy Policy URL\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Scegli una data\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"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)\"],\"Lu1j4b\":[\"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).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Project Library | dembrane\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Recording limit reached\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Ricarica la pagina\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Riprogramma per\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Torna alla home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rows per page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Cerca e seleziona le conversazioni per questa chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Select at least one event\"],\"d3O/ZP\":[\"Select at least one other topic before deleting this one\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Seleziona fino a 2 aree di focus per il tuo report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Condividi la tua voce scansionando il codice QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"sBJ5MF\":[\"Sources\"],\"65A04M\":[\"Spanish\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Questa parte della pagina non si è caricata. Di solito basta ricaricare. Se succede ancora, torna alla home.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"This workspace has used its included recording hours. Ask an organisation admin to upgrade.\"],\"nHYAFS\":[\"This workspace has used its included recording hours. Upgrade to keep using voice.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Ora\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Upload\"],\"V/OOEy\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Username\"],\"1Nt3Kg\":[\"Using default dembrane logo\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"Non abbiamo trovato la pagina che cercavi. Forse è stata spostata.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Benvenuto nella modalità Panoramica. Ho caricato i riassunti di tutte le tue conversazioni. Chiedimi schemi, temi o approfondimenti nei tuoi dati. Per citazioni esatte, apri una nuova chat in modalità Contesto Specifico.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"myUTw1\":[\"When a report has been generated for the project\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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 f994c86d4..88fee5f1e 100644 --- a/echo/frontend/src/locales/nl-NL.po +++ b/echo/frontend/src/locales/nl-NL.po @@ -214,7 +214,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "{0, plural, one {# werkruimte} other {# werkruimtes}}" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2101 +#: src/components/chat/AgenticChatPanel.tsx:2114 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "{0, plural, one {Focus op # gesprek:} other {Focus op # gesprekken:}}" @@ -479,11 +479,11 @@ msgstr "{liveProjectCount, plural, one {Verwijder het # project in deze werkruim msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "{MONTHLY_BILLING_PREMIUM_PCT}% korting" -#: src/components/chat/AgenticChatPanel.tsx:267 +#: src/components/chat/AgenticChatPanel.tsx:279 msgid "{name}'s conversation" msgstr "Gesprek van {name}" -#: src/components/chat/AgenticChatPanel.tsx:266 +#: src/components/chat/AgenticChatPanel.tsx:278 msgid "{name}'s transcript excerpt" msgstr "Transcriptfragment van {name}" @@ -1152,7 +1152,7 @@ msgstr "Geavanceerd (Tips en best practices)" msgid "Advanced Settings" msgstr "Geavanceerde instellingen" -#: src/components/chat/AgenticChatPanel.tsx:385 +#: src/components/chat/AgenticChatPanel.tsx:398 msgid "Agent run failed" msgstr "Agent-run mislukt" @@ -1433,7 +1433,7 @@ msgid "Approaching a limit this month" msgstr "Bijna een limiet bereikt deze maand" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2250 +#: src/components/chat/AgenticChatPanel.tsx:2263 msgid "Approaching limit: {0} / 32,000 characters" msgstr "Bijna aan de limiet: {0} / 32.000 tekens" @@ -1527,7 +1527,7 @@ msgstr "Vragen | dembrane" msgid "Ask a organisation admin to request this upgrade." msgstr "Vraag een organisatie-admin om deze upgrade aan te vragen." -#: src/components/chat/AgenticChatPanel.tsx:1813 +#: src/components/chat/AgenticChatPanel.tsx:1826 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "Stel een vraag over de gesprekken in dit project, of vraag hulp bij het opzetten ervan. Elke wijziging wordt eerst ter beoordeling voorgesteld en er wordt niets opgeslagen totdat je het goedkeurt." @@ -1544,7 +1544,7 @@ msgid "Ask about these" msgstr "Hierover vragen" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2231 +#: src/components/chat/AgenticChatPanel.tsx:2244 msgid "Ask about your conversations..." msgstr "Vraag iets over je gesprekken..." @@ -1882,7 +1882,7 @@ msgstr "Factuurperiode" msgid "Book a call" msgstr "Een gesprek boeken" -#: src/components/common/FeedbackPortalModal.tsx:98 +#: src/components/common/FeedbackPortalModal.tsx:115 msgid "Book a call with us" msgstr "Plan een gesprek met ons" @@ -1984,11 +1984,11 @@ msgstr "kan lezen" #: src/components/conversation/ConversationAccordion.tsx:336 #: src/components/common/InputModal.tsx:77 #: src/components/common/ImageCropModal.tsx:145 -#: src/components/common/FeedbackPortalModal.tsx:124 +#: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:734 -#: src/components/chat/AgenticChatPanel.tsx:2139 +#: src/components/chat/AgenticChatPanel.tsx:747 +#: src/components/chat/AgenticChatPanel.tsx:2152 msgid "Cancel" msgstr "Annuleren" @@ -2021,7 +2021,7 @@ msgstr "Annuleren" msgid "Cancel anytime. You keep access until the period ends." msgstr "Annuleer wanneer je wilt. Je houdt toegang tot het einde van de periode." -#: src/components/chat/AgenticChatPanel.tsx:722 +#: src/components/chat/AgenticChatPanel.tsx:735 msgid "Cancel current run" msgstr "Huidige run stoppen" @@ -2187,7 +2187,7 @@ msgstr "Wijziging van de taal tijdens een actief gesprek kan onverwachte resulta #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1657 +#: src/components/chat/AgenticChatPanel.tsx:1670 msgid "Chat" msgstr "Chat" @@ -2526,7 +2526,7 @@ msgstr "Inhoud" msgid "Context" msgstr "Context" -#: src/components/chat/ChatHistoryMessage.tsx:394 +#: src/components/chat/ChatHistoryMessage.tsx:419 msgid "Context added:" msgstr "Context toegevoegd:" @@ -3266,7 +3266,7 @@ msgstr "dembrane B.V. {0}, alle rechten voorbehouden." #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2268 +#: src/components/chat/AgenticChatPanel.tsx:2281 msgid "dembrane can make mistakes. Please double-check responses." msgstr "dembrane kan fouten maken. Controleer antwoorden altijd even." @@ -3454,7 +3454,7 @@ msgstr "Wordt niet vanzelf bijgewerkt. Bijgewerkt {updatedAgo}." #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:404 +#: src/components/chat/AgenticChatPanel.tsx:417 msgid "Done" msgstr "Klaar" @@ -3824,8 +3824,8 @@ msgstr "Gegevens ingevuld" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:409 -#: src/components/chat/AgenticChatPanel.tsx:1759 +#: src/components/chat/AgenticChatPanel.tsx:422 +#: src/components/chat/AgenticChatPanel.tsx:1772 msgid "Error" msgstr "Fout" @@ -4177,11 +4177,11 @@ msgstr "Fout bij het herzien van het resultaat. 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/chat/AgenticChatPanel.tsx:1650 +#: src/components/chat/AgenticChatPanel.tsx:1663 msgid "Failed to stop run" msgstr "De run stoppen is mislukt" -#: src/components/chat/AgenticChatPanel.tsx:1609 +#: src/components/chat/AgenticChatPanel.tsx:1622 msgid "Failed to submit agentic message" msgstr "Bericht versturen is mislukt" @@ -4227,7 +4227,7 @@ msgstr "Functie binnenkort beschikbaar" msgid "Feedback" msgstr "Feedback" -#: src/components/common/FeedbackPortalModal.tsx:44 +#: src/components/common/FeedbackPortalModal.tsx:61 msgid "Feedback portal" msgstr "Feedbackportaal" @@ -4342,13 +4342,13 @@ msgstr "Fixture" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2143 -#: src/components/chat/AgenticChatPanel.tsx:2144 -#: src/components/chat/AgenticChatPanel.tsx:2278 +#: src/components/chat/AgenticChatPanel.tsx:2156 +#: src/components/chat/AgenticChatPanel.tsx:2157 +#: src/components/chat/AgenticChatPanel.tsx:2291 msgid "Focus on conversations" msgstr "Focus op gesprekken" -#: src/components/chat/AgenticChatPanel.tsx:240 +#: src/components/chat/AgenticChatPanel.tsx:252 msgid "Focusing on:" msgstr "Gericht op:" @@ -4715,7 +4715,7 @@ msgstr "Projecten verbergen" msgid "Hide revision data" msgstr "Revisiegegevens verbergen" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Hide steps" msgstr "Stappen verbergen" @@ -4779,11 +4779,11 @@ msgstr "" "* Wat is het doel of belangrijkste maatstaf\n" "* Hoe ziet succes eruit" -#: src/components/chat/AgenticChatPanel.tsx:1927 +#: src/components/chat/AgenticChatPanel.tsx:1940 msgid "I applied the canvas." msgstr "Ik heb het canvas toegepast." -#: src/components/chat/AgenticChatPanel.tsx:1943 +#: src/components/chat/AgenticChatPanel.tsx:1956 msgid "I applied the goal." msgstr "Ik heb het doel toegepast." @@ -4837,7 +4837,7 @@ msgstr "Als je je bij een bestaande organisatie wilt aansluiten, maak dan geen n msgid "Image style" msgstr "Beeldstijl" -#: src/components/chat/AgenticChatPanel.tsx:1837 +#: src/components/chat/AgenticChatPanel.tsx:1850 msgid "Improve my setup" msgstr "Verbeter mijn instellingen" @@ -5131,7 +5131,7 @@ msgstr "Aansluiten voor support" msgid "Join for support (24h)" msgstr "Aansluiten voor support (24 uur)" -#: src/components/common/FeedbackPortalModal.tsx:115 +#: src/components/common/FeedbackPortalModal.tsx:132 msgid "Join our Slack community" msgstr "Word lid van onze Slack-community" @@ -5185,7 +5185,7 @@ msgstr "Net bijgewerkt. Even geduld." msgid "Just started" msgstr "Net begonnen" -#: src/components/common/FeedbackPortalModal.tsx:64 +#: src/components/common/FeedbackPortalModal.tsx:81 msgid "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." msgstr "Praat of typ gewoon op een natuurlijke manier. Uw bijdrage gaat rechtstreeks naar ons productteam en helpt ons echt om dembrane te verbeteren. We lezen alles." @@ -5416,11 +5416,11 @@ msgstr "Link gekopieerd" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link naar de privacyverklaring van uw organisatie die aan deelnemers wordt getoond" -#: src/components/chat/AgenticChatPanel.tsx:1827 +#: src/components/chat/AgenticChatPanel.tsx:1840 msgid "List my conversations" msgstr "Toon mijn gesprekken" -#: src/components/chat/AgenticChatPanel.tsx:1828 +#: src/components/chat/AgenticChatPanel.tsx:1841 msgid "List the conversations in this project." msgstr "Toon de gesprekken in dit project." @@ -5479,7 +5479,7 @@ msgstr "Live opnames, voortgang van transcriptie en fouten verschijnen hier zodr msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "Live verbinding verbroken. We werken minder vaak bij tot de verbinding terug is." -#: src/components/chat/AgenticChatPanel.tsx:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Live stream interrupted. Falling back to polling." msgstr "Live verbinding onderbroken. We halen updates nu periodiek op." @@ -5533,7 +5533,7 @@ msgstr "Microfoons laden..." msgid "Loading projects..." msgstr "Projecten laden..." -#: src/components/chat/AgenticChatPanel.tsx:1770 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Loading this chat..." msgstr "Deze chat laden..." @@ -5789,7 +5789,7 @@ msgstr "Herinnering verwijderd" msgid "Message from the dembrane team" msgstr "Bericht van het dembrane team" -#: src/components/chat/AgenticChatPanel.tsx:2246 +#: src/components/chat/AgenticChatPanel.tsx:2259 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "Bericht is te lang (maximaal 32.000 tekens). Voeg gesprekken toe of maak je bericht korter." @@ -6796,8 +6796,8 @@ msgstr "Open de probleemoplossingsgids" msgid "Open to the workspace" msgstr "Open voor de werkruimte" -#: src/components/chat/ChatHistoryMessage.tsx:227 -#: src/components/chat/ChatHistoryMessage.tsx:231 +#: src/components/chat/ChatHistoryMessage.tsx:250 +#: src/components/chat/ChatHistoryMessage.tsx:254 msgid "Open transcript" msgstr "Open transcript" @@ -6861,7 +6861,7 @@ msgstr "of" msgid "Or choose a time" msgstr "Of kies een tijd" -#: src/components/common/FeedbackPortalModal.tsx:91 +#: src/components/common/FeedbackPortalModal.tsx:108 msgid "Or prefer to chat directly?" msgstr "Of liever direct chatten?" @@ -7725,7 +7725,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "Vragen over hoe dembrane werkt, niet alleen over je data." #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:587 +#: src/components/chat/AgenticChatPanel.tsx:600 msgid "Ran {0} steps at once" msgstr "{0} stappen tegelijk uitgevoerd" @@ -7850,7 +7850,7 @@ msgstr "Opnieuw verbinden" msgid "participant.button.record" msgstr "Opname starten" -#: src/components/chat/AgenticChatPanel.tsx:2168 +#: src/components/chat/AgenticChatPanel.tsx:2181 msgid "Record a voice message" msgstr "Spraakbericht opnemen" @@ -7886,7 +7886,7 @@ msgstr "Opnamepagina" msgid "participant.modal.pause.title" msgstr "Opname gepauzeerd" -#: src/components/chat/AgenticChatPanel.tsx:859 +#: src/components/chat/AgenticChatPanel.tsx:872 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "De opname is gestopt bij de limiet van vijf minuten. Je opname wordt omgezet naar tekst." @@ -8092,7 +8092,7 @@ msgid "project.sidebar.chat.rename" msgstr "Naam wijzigen" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1720 +#: src/components/chat/AgenticChatPanel.tsx:1733 msgid "Rename chat" msgstr "Chat hernoemen" @@ -8410,7 +8410,7 @@ msgstr "Controleer voordat je aanmaakt." msgid "Review files before uploading" msgstr "Bestanden bekijken voordat u uploadt" -#: src/components/chat/AgenticChatPanel.tsx:1838 +#: src/components/chat/AgenticChatPanel.tsx:1851 msgid "Review my project settings and suggest improvements." msgstr "Bekijk mijn projectinstellingen en stel verbeteringen voor." @@ -8482,7 +8482,7 @@ msgstr "Ruwe schatting om de achterstand aan transcripties weg te werken" msgid "Rows per page" msgstr "Rijen per pagina" -#: src/components/chat/AgenticChatPanel.tsx:414 +#: src/components/chat/AgenticChatPanel.tsx:427 msgid "Running" msgstr "Bezig" @@ -8513,7 +8513,7 @@ msgstr "Opslaan" msgid "Save access" msgstr "Toegang opslaan" -#: src/components/chat/ChatHistoryMessage.tsx:296 +#: src/components/chat/ChatHistoryMessage.tsx:319 msgid "Save as template" msgstr "Opslaan als template" @@ -8556,7 +8556,7 @@ msgstr "Opgeslagen als doel van dit project." msgid "Saving..." msgstr "Opslaan..." -#: src/components/common/FeedbackPortalModal.tsx:87 +#: src/components/common/FeedbackPortalModal.tsx:104 msgid "Scan or click the QR code to open the feedback portal" msgstr "Scan of klik op de QR-code om het feedbackportaal te openen" @@ -8938,7 +8938,7 @@ msgstr "Self-serve" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2205 +#: src/components/chat/AgenticChatPanel.tsx:2218 msgid "Send" msgstr "Verzenden" @@ -9202,7 +9202,7 @@ msgstr "Toon referenties" msgid "Show revision data" msgstr "Revisiegegevens tonen" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Show steps" msgstr "Stappen tonen" @@ -9321,7 +9321,7 @@ msgstr "Er is iets misgegaan bij het genereren van uw laatste rapport." msgid "Something went wrong generating your report." msgstr "Er is iets misgegaan bij het genereren van uw rapport." -#: src/components/chat/AgenticChatPanel.tsx:206 +#: src/components/chat/AgenticChatPanel.tsx:218 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "Er ging iets mis aan mijn kant. Stuur je bericht opnieuw, dan probeer ik het nog een keer." @@ -9370,6 +9370,10 @@ msgstr "Sorteer" msgid "Source {0}" msgstr "Bron {0}" +#: src/components/chat/ChatHistoryMessage.tsx:359 +msgid "Sources" +msgstr "Bronnen" + #: src/components/project/ProjectPortalEditor.tsx:644 msgid "Spanish" msgstr "Spaans" @@ -9485,7 +9489,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "Kom je er nog niet uit? Mail <0>support@dembrane.com." #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2163 +#: src/components/chat/AgenticChatPanel.tsx:2176 msgid "Stop" msgstr "Stop" @@ -9494,7 +9498,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2153 +#: src/components/chat/AgenticChatPanel.tsx:2166 msgid "Stop recording and turn it into text" msgstr "Opname stoppen en omzetten naar tekst" @@ -10204,7 +10208,7 @@ msgstr "Dit rapport is nog niet beschikbaar. " msgid "This report was opened by {0} people" msgstr "Dit rapport werd geopend door {0} mensen" -#: src/components/chat/AgenticChatPanel.tsx:204 +#: src/components/chat/AgenticChatPanel.tsx:216 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "Dit verzoek duurde te lang, dus ik heb het gestopt. Stuur het opnieuw, dan probeer ik het nog een keer." @@ -10271,7 +10275,7 @@ msgstr "Deze werkruimte heeft de inbegrepen opname-uren gebruikt. Vraag een behe msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "Deze werkruimte heeft de inbegrepen opname-uren gebruikt. Upgrade om spraak te blijven gebruiken." -#: src/components/chat/AgenticChatPanel.tsx:2182 +#: src/components/chat/AgenticChatPanel.tsx:2195 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "Deze werkruimte heeft zijn opname-uren gebruikt. Upgrade om spraak te blijven gebruiken." @@ -10373,7 +10377,7 @@ msgstr "naar" msgid "To assign a new tag, please create it first in the portal settings." msgstr "Om een nieuwe tag toe te wijzen, maak je deze eerst aan in de portalinstellingen." -#: src/components/common/FeedbackPortalModal.tsx:57 +#: src/components/common/FeedbackPortalModal.tsx:74 msgid "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." msgstr "Om ons te helpen actie te ondernemen, probeer aan te geven waar het gebeurde en wat u probeerde te doen. Bij bugs, vertel ons wat er mis ging. Bij ideeën, vertel ons welke behoefte het voor u zou oplossen." @@ -10390,7 +10394,7 @@ msgstr "Te groot" msgid "Too long" msgstr "Te lang" -#: src/components/chat/AgenticChatPanel.tsx:2117 +#: src/components/chat/AgenticChatPanel.tsx:2130 msgid "Too many to list here. The assistant reads through them in batches." msgstr "Te veel om hier te tonen. De assistent leest ze in delen door." @@ -10488,7 +10492,7 @@ msgstr "Trainingen" msgid "Transcribing..." msgstr "Transcriptie wordt uitgevoerd..." -#: src/components/chat/AgenticChatPanel.tsx:270 +#: src/components/chat/AgenticChatPanel.tsx:282 msgid "transcript" msgstr "transcript" @@ -10504,7 +10508,7 @@ msgstr "Transcriptie" msgid "Transcript copied to clipboard" msgstr "Transcript gekopieerd naar klembord" -#: src/components/chat/AgenticChatPanel.tsx:269 +#: src/components/chat/AgenticChatPanel.tsx:281 msgid "transcript excerpt" msgstr "transcriptfragment" @@ -11013,7 +11017,7 @@ msgstr "Gebruik deze cyclus" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2264 +#: src/components/chat/AgenticChatPanel.tsx:2277 msgid "Use Shift + Enter to add a new line" msgstr "Gebruik Shift + Enter om een nieuwe regel toe te voegen" @@ -11297,7 +11301,7 @@ msgstr "We konden je methode nog steeds niet belasten. Werk deze bij en probeer 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." -#: src/components/common/FeedbackPortalModal.tsx:50 +#: src/components/common/FeedbackPortalModal.tsx:67 msgid "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." msgstr "We horen graag van u. Of u nu een idee heeft voor iets nieuws, een bug heeft gevonden, een vertaling heeft gezien die niet klopt, of gewoon wilt delen hoe het gaat." @@ -11420,11 +11424,11 @@ msgstr "Wat zou hieraan anders moeten zijn?" msgid "What should ECHO analyse or generate from the conversations?" msgstr "Wat moet ECHO analyseren of genereren uit de gesprekken?" -#: src/components/chat/AgenticChatPanel.tsx:1833 +#: src/components/chat/AgenticChatPanel.tsx:1846 msgid "What themes came up across the conversations in this project?" msgstr "Welke thema's kwamen naar voren in de gesprekken in dit project?" -#: src/components/chat/AgenticChatPanel.tsx:1832 +#: src/components/chat/AgenticChatPanel.tsx:1845 msgid "What themes came up?" msgstr "Welke thema's kwamen naar voren?" @@ -11494,7 +11498,7 @@ msgid "Where would you like to go?" msgstr "Waar wil je naartoe?" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1810 +#: src/components/chat/AgenticChatPanel.tsx:1823 msgid "Where would you like to start?" msgstr "Waar wil je beginnen?" @@ -11537,11 +11541,11 @@ msgid "Within my organisation" msgstr "Binnen mijn organisatie" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:588 +#: src/components/chat/AgenticChatPanel.tsx:601 msgid "Worked through {0} steps" msgstr "{0} stappen doorlopen" -#: src/components/chat/AgenticChatPanel.tsx:1682 +#: src/components/chat/AgenticChatPanel.tsx:1695 msgid "Working on your answer..." msgstr "Bezig met je antwoord..." @@ -11805,7 +11809,7 @@ msgstr "Je hebt een uitnodiging van een collega nodig" msgid "You seem to be offline, please check your internet connection" msgstr "Je lijkt offline te zijn, controleer je internetverbinding" -#: src/components/chat/AgenticChatPanel.tsx:202 +#: src/components/chat/AgenticChatPanel.tsx:214 msgid "You stopped this run." msgstr "Je hebt deze run gestopt." diff --git a/echo/frontend/src/locales/nl-NL.ts b/echo/frontend/src/locales/nl-NL.ts index 3d295a361..70fa3e684 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.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"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\"],\"XGun3K\":[\"(directe toegang tot werkruimte)\"],\"ls1N1w\":[\"(ontbreekt)\"],\"B/gRsg\":[\"(geen)\"],\"NzluOx\":[\"(optioneel)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(onbekend)\"],\"dDUgzP\":[\"(Jij)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" werkruimte)\"],\"other\":[\"(\",\"#\",\" werkruimtes)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" overeenkomst\"],\"other\":[\"#\",\" overeenkomsten\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio gestopt\"],\"other\":[\"#\",\" audio gestopt\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek kon niet aan deze chat worden toegevoegd.\"],\"other\":[\"#\",\" gesprekken konden niet aan deze chat worden toegevoegd.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek wordt hiermee ook verborgen.\"],\"other\":[\"#\",\" gesprekken worden hiermee ook verborgen.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" lid\"],\"other\":[\"#\",\" leden\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" betaling\"],\"other\":[\"#\",\" betalingen\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projecten\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" geselecteerd\"],\"other\":[\"#\",\" geselecteerd\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" in transcriptie\"],\"other\":[\"#\",\" in transcriptie\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" met fouten\"],\"other\":[\"#\",\" met fouten\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" woord toegevoegd\"],\"other\":[\"#\",\" woorden toegevoegd\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" woord verwijderd\"],\"other\":[\"#\",\" woorden verwijderd\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focus op \",\"#\",\" gesprek:\"],\"other\":[\"Focus op \",\"#\",\" gesprekken:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Verplaats \",\"#\",\" project naar een andere werkruimte.\"],\"other\":[\"Verplaats \",\"#\",\" projecten naar een andere werkruimte.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Laat zien wat er verandert (\",\"#\",\" veld)\"],\"other\":[\"Laat zien wat er verandert (\",\"#\",\" velden)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek in gebruik:\"],\"other\":[\"#\",\" gesprekken in gebruik:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (standaard)\"],\"r/Wlfo\":[[\"0\"],\" / plek / maand × \",[\"1\"],\", jaarlijks gefactureerd. Exclusief btw.\"],\"bBa8T+\":[[\"0\"],\" / plek × \",[\"1\"],\". Exclusief btw.\"],\"eysOsc\":[[\"0\"],\" / plek × \",[\"1\"],\". Wordt na deze periode niet meer in rekening gebracht.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" werkruimtes, \",[\"2\"],\" actief\"],\"xfMOtJ\":[[\"0\"],\" over alles\"],\"RKutZY\":[[\"0\"],\" actief\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"q87k+2\":[[\"0\"],\" toegevoegd vanuit je organisatie\"],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" verwijderd\"],\"6Re9LE\":[[\"0\"],\" van dembrane\"],\"K6OQ3u\":[[\"0\"],\" uur / maand\"],\"hvF/g5\":[[\"0\"],\" uur totaal\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"nqIXFG\":[[\"0\"],\" van \",[\"1\"],\" leden zijn getraind.\"],\"uQcaBv\":[[\"0\"],\" van \",[\"1\"],\" getraind\"],\"3wr3U9\":[[\"0\"],\" plek(ken) · \",[\"1\"],\" nu · +\",[\"2\"],\"/\",[\"cadence\"],\" bij verlenging\"],\"ipdYtj\":[[\"0\"],\" plek(ken) deze periode betaald en ongebruikt. Nodig iemand uit om ze tot de verlenging gratis te vullen.\"],\"q9vtxh\":[[\"0\"],\" plekken\"],\"Oa8YFO\":[[\"0\"],\" plekken inbegrepen\"],\"z9suu0\":[[\"0\"],\" totaal stijgt naar \",[\"1\"],\" zodra \",[\"pendingInvites\"],\" openstaande \",[\"2\"],\" geaccepteerd\"],\"1/+09d\":[[\"0\"],\" weergaven\"],\"Sx2eFn\":[[\"0\"],\" werkruimtes · \",[\"1\"],\" betaalde plekken · \",[\"2\"],\" gratis waarnemers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" werkruimtes, \",[\"1\"],\" plekken gedeeld\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", werkruimte-id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" persoon\"],\"other\":[\"#\",\" personen\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" persoon\"],\"other\":[\"#\",\" personen\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" gratis\"],\"other\":[\"#\",\" gratis\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" gesprekken • Bewerkt \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"lEaS4c\":[[\"count\"],\" items in geschiedenis\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% korting toegepast\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" gesprek heeft nog geen transcript, dus het is weggelaten.\"],\"other\":[\"#\",\" gesprekken hebben nog geen transcript, dus ze zijn weggelaten.\"]}]],\"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.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" adressen hebben aandacht nodig\"],\"GxhS2s\":[[\"inviterName\"],\" heeft je uitgenodigd voor \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Verwijder het \",\"#\",\" project in deze werkruimte voordat je de werkruimte zelf verwijdert.\"],\"other\":[\"Verwijder de \",\"#\",\" projecten in deze werkruimte voordat je de werkruimte zelf verwijdert.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% korting\"],\"YtOXS1\":[\"Gesprek van \",[\"name\"]],\"lJ6xri\":[\"Transcriptfragment van \",[\"name\"]],\"P9UcSP\":[[\"names\"],\" en nog \",[\"extra\"]],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" personen meer\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" gesprek paste niet in deze chat. Start een nieuwe chat voor de rest.\"],\"other\":[\"#\",\" gesprekken pasten niet in deze chat. Start een nieuwe chat voor de rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" uitnodiging(en) in afwachting. Telt mee zodra geaccepteerd.\"],\"lEeV+7\":[[\"person\"],\" verliest toegang tot elke werkruimte in deze organisatie. Directe uitnodigingen voor werkruimtes blijven intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Gericht op \",\"#\",\" gesprek\"],\"other\":[\"Gericht op \",\"#\",\" gesprekken\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"#\",\" gesprek in gebruik\"],\"other\":[\"#\",\" gesprekken in gebruik\"]}]],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"/+py6Q\":[[\"seats\"],\" plekken\"],\"ArGmEy\":[[\"selectedCount\"],\" van \",[\"totalCount\"],\" velden geselecteerd. Accepteren geldt alleen voor de aangevinkte velden.\"],\"odzwX/\":[[\"sent\"],\" uitnodigingen verstuurd\"],\"dmKaRr\":[[\"sentCount\"],\" uitnodigingen verstuurd.\"],\"qzj8O/\":[[\"tag\"],\" (vooraf gekozen)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" actief\"],\"other\":[\"#\",\" actief\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisatie\"],\"other\":[\"#\",\" organisaties\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"Nc+vAv\":[\"/plek/mnd\"],\"lDyo+I\":[\"/zetel/mnd · jaarlijks gefactureerd\"],\"u5M/5B\":[\"/zetel/mnd · maandelijks gefactureerd\"],\"RuXuwk\":[\"+\",[\"0\"],\" meer\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"VAhv7y\":[\"€\",[\"0\"],\" per stuk, boven de inbegrepen \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra deelnemer\"],\"+Tssgi\":[\"€150 / zetel / maand\"],\"NPPhXn\":[\"€20 / zetel / maand\"],\"XlCmuS\":[\"€75 / zetel / maand\"],\"LeFXS1\":[\"0 Aspecten\"],\"r3PXp+\":[\"1 adres vraagt om aandacht\"],\"N0QWsI\":[\"1 u opname\"],\"2BWxOx\":[\"1 item in geschiedenis\"],\"5pm7gt\":[\"1 weergave\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"WehR9U\":[\"2 maanden geleden\"],\"L9boOH\":[\"2. Wanneer een gesprek of rapport plaatsvindt, sturen we de data automatisch naar je URL\"],\"VaA9mu\":[\"24 uur\"],\"7ZrpGs\":[\"3 dagen\"],\"lxBOZP\":[\"3 maanden geleden\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"34Qhax\":[\"8 uur\"],\"aFDk6y\":[\"Een paar korte vragen en je bent binnen.\"],\"Ddr+Kq\":[\"Een app_user-id van dembrane-personeel. De server controleert het @dembrane.com-adres.\"],\"iqgpeQ\":[\"Bij een downgrade gelden de downgrade-effecten uit de matrix en krijgen de admins van de werkruimte bericht. Bij een betaald tier gaat het account over op facturatie via dembrane.\"],\"thilZ0\":[\"Een downgrade beperkt functies direct.\"],\"wsTrfq\":[\"Zodra de eerste versie klaar is, verschijnt die hier.\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"f6HTzO\":[\"Een live pagina in je Bibliotheek die zichzelf opnieuw opbouwt zolang je sessie loopt. Vroege beta: dit kan veranderen of verdwijnen.\"],\"z9VxrW\":[\"Er wordt automatisch een nieuw rapport gegenereerd en gepubliceerd op het geplande tijdstip.\"],\"0de1wk\":[\"een organisatiebeheerder\"],\"EfpBny\":[\"Een organisatiebeheerder kan deze upgrade aanvragen. Vraag iemand met de beheerdersrol.\"],\"TKd+Fa\":[\"Een project bevat alles voor één onderwerp. Deel de link met deelnemers, verzamel stemmen en laat dembrane ze omzetten in inzichten.\"],\"sG+9v8\":[\"Er wordt al een rapport gegenereerd voor dit project. Wacht tot het klaar is.\"],\"Ky83tq\":[\"Een zetel is één lid. Voeg leden toe of verwijder ze in het tabblad Mensen van elke werkruimte; je volgende afschrijving past zich automatisch aan.\"],\"hyYKSp\":[\"Een zetel is één lid. Zetels blijven beschikbaar tot het abonnement eindigt; wijzigingen worden niet in rekening gebracht.\"],\"SpaKQm\":[\"Een aparte context voor data-eigendom en facturering. Je kunt deze later overdragen aan die organisatie zonder data te verplaatsen.\"],\"GhjsDN\":[\"Een korte tekst die op het organisatieoverzicht wordt getoond.\"],\"F9QjSt\":[\"Een korte notitie over waar dit project over gaat. Je kunt dit later aanpassen.\"],\"j2mO8+\":[\"een werkruimte\"],\"kO7Ugp\":[\"Over de voorgestelde projectupdate: \",[\"hostNote\"]],\"2rz0sA\":[\"Over jou\"],\"g3UF2V\":[\"Accepteren\"],\"Q74FZp\":[\"Accepteren en deelnemen\"],\"JAvG0l\":[\"Voorwaarden geaccepteerd\"],\"LuXP9q\":[\"Toegang\"],\"qLcf0w\":[\"Toegang stopt op\"],\"18D/K9\":[\"Toegang verleend voor 24 uur.\"],\"HlgFV1\":[\"Toegangsgeschiedenis\"],\"6NLtuJ\":[\"Toegangsverzoek goedgekeurd\"],\"RpdQvB\":[\"Toegangsverzoek geweigerd\"],\"FmhC27\":[\"Toegangsverzoek verlopen\"],\"pyPxxw\":[\"Toegangsverzoek ingetrokken\"],\"ekMaJX\":[\"Toegangsverzoeken\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account en beveiliging\"],\"g9NChz\":[\"Accountmanager\"],\"/8wINa\":[\"Accountmanager toegewezen.\"],\"Q+M1Ej\":[\"Account overgezet naar self-service facturatie.\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"Euv0O8\":[\"Account overgezet naar facturatie via dembrane.\"],\"A7C5YV\":[\"Account op beheerd gezet.\"],\"0qqrUz\":[\"Gefactureerde accounts\"],\"L5gswt\":[\"Actie door\"],\"7U5F+i\":[\"Actie nodig\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"F6pfE9\":[\"Actief\"],\"3976bh\":[\"Actief · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"4USg1N\":[[\"0\"],\" toevoegen aan \",[\"1\"],\" als <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Voeg een lid toe en kies de toegang.\"],\"o1Svup\":[\"Voeg een naam en een prompt toe voordat je dit toepast.\"],\"kKuKkg\":[\"Voeg een naam, beschrijving en framing toe.\"],\"5xxrhm\":[\"Notitie toevoegen\"],\"Cf2umO\":[\"Voeg een projectdoel toe voordat je opslaat.\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"L1uMzn\":[\"Nog een toevoegen\"],\"LvDRbs\":[\"Toevoegen via e-mail\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"8T7YRB\":[\"Voeg eerst gesprekken toe aan je project\"],\"LL1rvo\":[\"Aangepast onderwerp toevoegen\"],\"0qHnFM\":[\"Voeg doeltekst toe voordat je dit toepast.\"],\"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.\"],\"ymW+mN\":[\"Voeg mensen uit je organisatie toe\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"b6Sm+u\":[\"Toevoegen aan \",[\"0\"],\"?\"],\"jo1zkp\":[\"Toevoegen aan Chat\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"P4Egjx\":[\"Toevoegen aan werkruimtes\"],\"6Xm4X2\":[\"Onderwerp toevoegen\"],\"AHaRrL\":[\"Vertalingen toevoegen\"],\"yFRVHT\":[\"Verificatieprompt toevoegen\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"hp8OtS\":[\"Toegevoegd\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"uVX6Vk\":[\"Toegevoegd aan werkruimte\"],\"yg5kon\":[\"Je bent toegevoegd aan \",[\"okCount\"],\" werkruimtes\"],\"ZncK2m\":[\"Je bent toegevoegd aan \",[\"okCount\"],\". \",[\"0\"],\" konden niet worden toegevoegd, probeer opnieuw.\"],\"lQmOCQ\":[\"Je bent toegevoegd aan 1 werkruimte\"],\"54QrMC\":[\"Als je er \",[\"pendingCount\"],\" toevoegt, gaat deze werkruimte over de zetellimiet. Extra zetels worden gefactureerd tegen het tarief van de werkruimte.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"Du6bPw\":[\"Adres\"],\"NY/x1b\":[\"Adresregel 1\"],\"cormHa\":[\"Adresregel 2\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"U3pytU\":[\"Beheerder\"],\"84oArf\":[\"Beheerdersdashboard\"],\"HJ47wa\":[\"Hier beheerder via organisatierol\"],\"uYQEe4\":[\"Beheerder, dembrane\"],\"eC58+P\":[\"Beheerders\"],\"CLlKPV\":[\"Beheerders hebben toegang tot elke werkruimte in deze organisatie. Leden en externen zien alleen de werkruimtes waartoe ze toegang hebben gekregen.\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"ftJZVq\":[\"Agent-run mislukt\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Tool-gestuurd uitvoering\"],\"I1JKlv\":[\"Agentische chat\"],\"N40H+G\":[\"Alles\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"zG6Ooi\":[\"Alle projecten\"],\"ynXPFB\":[\"Alles gelezen\"],\"W/4/mV\":[\"Alle plekken in dit niveau zijn bezet. Verwijder een lid of externe, of upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"XQ7aEI\":[\"Alle plekken zijn bezet. Maak een plek vrij of upgrade om meer mensen uit te nodigen.\"],\"X3FPsl\":[\"Alle plekken bezet\"],\"NGO2th\":[\"Alle sjablonen\"],\"IOEBQh\":[\"Alle niveaus\"],\"dYoI9C\":[\"Alle zichtbare gesprekken geselecteerd\"],\"AWdiC+\":[\"Alle werkruimtes\"],\"Ro8+2I\":[\"Geef dembrane-medewerkers toegang tot deze werkruimte voor support\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"sV+uzv\":[\"Bijna klaar\"],\"bruUug\":[\"Bijna klaar\"],\"gwPMvj\":[\"Al lid\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"cFO+NU\":[\"Heb je al een account? Log in\"],\"xNyrs1\":[\"Al in context\"],\"lLTpsm\":[\"Al uitgenodigd\"],\"3lBGEC\":[\"Al gebruikt in deze chat\"],\"hehnjM\":[\"Bedrag\"],\"nIUIH3\":[\"Bedragen zijn standaard het aantal plekken van het account maal de prijs per plek. Pas dit alleen aan wanneer dat nodig is.\"],\"2G0LKZ\":[\"Een extra training is verplicht voor teams die dembrane gebruiken in situaties die onder de EU AI Act als hoog risico worden aangemerkt.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Er ging iets onverwachts mis. Opnieuw laden of teruggaan naar home helpt meestal.\"],\"F4cOH1\":[\"Analyse taal\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Meldingen\"],\"77TKVS\":[\"Jaarlijkse facturering\"],\"J8yrvq\":[\"Transcripten anonimiseren\"],\"M8cgTa\":[\"Transcript anonimiseren\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"YdiKaK\":[\"anoniem gesprek\"],\"iPiP6k\":[\"Anoniem gesprek\"],\"D9CFV5\":[\"Anoniem\"],\"Pg5/xn\":[\"Anonieme deelnemer\"],\"SEllfL\":[\"Anonieme bezoeker\"],\"t2jB92\":[\"Een andere admin of eigenaar moet je herstellen.\"],\"6GojWN\":[\"Elke tag\"],\"FnbCx1\":[\"Iedereen in je organisatie kan deze werkruimte vinden. Admins kunnen meteen meedoen, leden kunnen toegang aanvragen.\"],\"N1Wkmw\":[\"Is er iets dat we beter hadden kunnen doen?\"],\"sMMWxH\":[\"Wil je nog iets toevoegen\"],\"aAIQg2\":[\"Weergave\"],\"9+QMn9\":[\"Toegepast. Het canvas toont nu dit ontwerp en houdt het actueel.\"],\"HMzKuc\":[\"Past deze formulering en het verversgedrag toe op het bestaande canvas.\"],\"DB8zMK\":[\"Toepassen\"],\"4TwsNi\":[\"Sjabloon toepassen\"],\"5swDY2\":[\"Bijna een limiet bereikt deze maand\"],\"z0ccuc\":[\"Bijna aan de limiet: \",[\"0\"],\" / 32.000 tekens\"],\"Z7ZXbT\":[\"Goedkeuren\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"m14CS3\":[\"Goedkeuren voor 24 uur\"],\"1kA9Tv\":[\"Supporttoegang goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"uqhbrg\":[\"Weet je zeker dat je deze chat wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"yrk3z3\":[\"Weet je zeker dat je dit aangepaste onderwerp wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"ELQ+fw\":[\"Weet je zeker dat je dit rapport wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"e3BGhi\":[\"Weet u zeker dat u dit sjabloon wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"participant.modal.finish.message.text.mode\":[\"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.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"ZmeZPn\":[\"Weet je zeker dat je je avatar wilt verwijderen?\"],\"wQ5jM6\":[\"Weet je zeker dat je je aangepaste logo wilt verwijderen? Het standaard dembrane-logo wordt in plaats daarvan gebruikt.\"],\"F+vBv0\":[\"Stel vraag\"],\"VttPAe\":[\"Vragen | dembrane\"],\"hC67sJ\":[\"Vraag een organisatie-admin om deze upgrade aan te vragen.\"],\"Djkxtl\":[\"Stel een vraag over de gesprekken in dit project, of vraag hulp bij het opzetten ervan. Elke wijziging wordt eerst ter beoordeling voorgesteld en er wordt niets opgeslagen totdat je het goedkeurt.\"],\"2QOQAV\":[\"Vraag een admin van de werkruimte om een uitnodiging, of kies een andere werkruimte uit je lijst.\"],\"jPTnVt\":[\"Stel vragen over de app.\"],\"7edAaq\":[\"Hierover vragen\"],\"9pDK3A\":[\"Vraag iets over je gesprekken...\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"KmS8XG\":[\"Vraag het in de chat als je een live beeld van de gesprekken wilt. Het eerste canvas komt hier te staan.\"],\"6S+qQR\":[\"Vraag deelnemers om hun e-mailadres\"],\"I+vZ9W\":[\"Vraag deelnemers om hun naam\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kaEPzR\":[\"Toewijzen\"],\"d/bvvp\":[\"Assistent\"],\"MPY6SL\":[\"Assistent-context\"],\"aYfeOI\":[\"Assistent-geheugen\"],\"bU39dx\":[\"Minstens 8 tekens\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"quMOkF\":[\"Aan het einde van deze periode\"],\"FA2/EC\":[\"Geverifieerde artefacten toevoegen\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio-download niet beschikbaar voor anonieme gesprekken\"],\"N2tS3I\":[\"Audio komt binnen\"],\"SLvg/d\":[\"Audio-afspelen niet beschikbaar voor anonieme gesprekken\"],\"IOBCIN\":[\"Audio-tip\"],\"OCG9c0\":[\"Er kwam audio binnen, maar dat is gestopt. De verbinding is misschien weggevallen of de telefoon is vergrendeld.\"],\"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\"],\"8kH9im\":[\"Automatische titels en concepttags\"],\"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.\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"FZA9K3\":[\"Beschikbaar vanaf innovator.\"],\"t4AO8x\":[\"Beschikbaar vanaf innovator en hoger. Upgrade om te ontgrendelen.\"],\"KKfW2W\":[\"Avatar verwijderd\"],\"jSKImf\":[\"Avatar bijgewerkt\"],\"vhjbKr\":[\"Afwezig\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"aBqveh\":[\"Terug naar live\"],\"7rgUr5\":[\"Terug naar mijn werkruimtes\"],\"/9nVLo\":[\"Terug naar selectie\"],\"UNaXdI\":[\"Terug naar templates\"],\"IWTC0l\":[\"Terug naar werkruimtes\"],\"1u1/HA\":[\"Terug naar je werkruimtes\"],\"Nzwli2\":[\"Basis\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"Zz7XBz\":[\"Betafuncties\"],\"K9cTJe\":[\"Jaarlijks gefactureerd\"],\"/i0ppe\":[\"jaarlijks gefactureerd · \",[\"total\"],\"/plek/jr\"],\"+VoTOr\":[\"maandelijks gefactureerd\"],\"aIkeAd\":[\"Maandelijks gefactureerd\"],\"rKaO4m\":[\"Wordt op een eigen abonnement gefactureerd, niet dat van je organisatie. Beheer dit via de facturering van deze werkruimte.\"],\"+bLYyF\":[\"Per plek gefactureerd voor de hele organisatie. Je kunt op elk moment opzeggen. Voor organisaties die hiervoor in aanmerking komen zijn beurzen beschikbaar: mail <0>support@dembrane.com.\"],\"s44mh1\":[\"Per persoon gefactureerd. Een plek is één lid, automatisch geteld. Je kunt op elk moment opzeggen.\"],\"IHgGGv\":[\"Apart gefactureerd\"],\"4FkKL6\":[\"Apart gefactureerd, geen onderdeel van het abonnement van de organisatie.\"],\"jtq36d\":[\"Gefactureerd onder het abonnement van je organisatie, samen met je andere werkruimtes.\"],\"R+w/Va\":[\"Facturering\"],\"17Ox+q\":[\"Factuurgegevens\"],\"UQPSlS\":[\"Factuurgegevens opgeslagen.\"],\"ZQhgRe\":[\"Facturering wordt beheerd door je organisatie\"],\"/2TrP/\":[\"Facturatiemodus\"],\"8tzR0k\":[\"Factuurperiode\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"KKLfx1\":[\"Plan een gesprek met ons\"],\"kFl92P\":[\"Boek een gecertificeerde training om dembrane te blijven gebruiken in situaties met hoog risico.\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"xHijXF\":[\"Overzicht · \",[\"0\"],\" actief\"],\"EpQC5j\":[\"Overzicht per niveau\"],\"16exrD\":[\"Briefing\"],\"7Ic570\":[\"Gebruik je eigen LLM\"],\"SkqeF+\":[\"Gebruik je eigen taalmodel via de MCP.\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"G46Sdr\":[\"door \",[\"by\"]],\"IqudIv\":[\"Door dit project te verwijderen, verwijder je alle bijbehorende gegevens. Deze actie kan niet ongedaan worden gemaakt. Weet je het absoluut zeker?\"],\"aeGLaK\":[\"Op status\"],\"0rwwOn\":[\"Op trefwoord\"],\"URPLGF\":[\"kan bewerken\"],\"6++86c\":[\"kan lezen\"],\"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\"],\"4MDqQJ\":[\"Annuleer wanneer je wilt. Je houdt toegang tot het einde van de periode.\"],\"KWnDn1\":[\"Huidige run stoppen\"],\"Bu+BBn\":[\"Abonnement opzeggen\"],\"HoYkSd\":[\"Verzoek intrekken\"],\"lrdoAi\":[\"Planning annuleren\"],\"iypQhn\":[\"Selectie annuleren\"],\"XzQibx\":[\"Training annuleren\"],\"D2vAZP\":[\"Je abonnement opzeggen\"],\"vv7kpg\":[\"Opgezegd\"],\"AreLja\":[\"Bij opzeggen wordt je abonnement niet verlengd. Je houdt \",[\"0\"],\" tot het einde van je huidige factureringsperiode en gaat daarna over naar Free.\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"SL9Qao\":[\"Kan niet opnieuw plannen binnen 10 minuten voor het geplande tijdstip\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Verversfrequentie van het canvas aangepast\"],\"RP1RaW\":[\"Canvasvoorbeeld\"],\"J5lsfs\":[\"Canvasinstellingen\"],\"t1o65w\":[\"Canvassen die voor dit project zijn gemaakt, staan hier.\"],\"vkf71G\":[\"ontbrekende mogelijkheid\"],\"kryGs+\":[\"Kaart\"],\"SHhA6n\":[\"inhalen \",[\"0\"]],\"wNBLz0\":[\"Gecertificeerde training voor teams die dembrane in risicovolle situaties gebruiken. Een apart product, per sessie gefactureerd.\"],\"o+XJ9D\":[\"Wijzigen\"],\"rlgQn8\":[\"De organisatierol van \",[\"person\"],\" wijzigen van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"De rol van \",[\"person\"],\" op \",[\"wsName\"],\" wijzigen van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Toch wijzigen\"],\"U8sdJ+\":[\"Wijzigen in werkruimte-instellingen\"],\"+DEogc\":[\"Taal wijzigen\"],\"7KtLzo\":[\"Organisatierol wijzigen?\"],\"GptGxg\":[\"Wachtwoord wijzigen\"],\"Ts/A07\":[\"Betaalmethode wijzigen\"],\"ImM7Hj\":[\"Rol wijzigen\"],\"qpV0fp\":[\"Niveau wijzigen\"],\"XbjzC/\":[\"Werkruimterol wijzigen?\"],\"mtseAM\":[\"Je eigen rol wijzigen?\"],\"+sCya1\":[\"Wijzigingen toegepast. Je kunt ze altijd bijstellen in de projectinstellingen.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat aangemaakt\"],\"pB+sJr\":[\"Chat verwijderd\"],\"qlK5jV\":[\"Chat is niet beschikbaar op jouw toegangsniveau. Neem contact op met je werkruimtebeheerder om een upgrade aan te vragen.\"],\"qUVihD\":[\"Chatlimiet bereikt\"],\"tDlhkF\":[\"Chatnaam\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"mGd0TP\":[\"Gecontroleerd \",[\"checkedAgo\"],\". De eerste update verschijnt zodra er genoeg te tonen is.\"],\"fhPONC\":[\"Gecontroleerd \",[\"checkedAgo\"],\". Niets nieuws sinds je laatste gesprek. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Live gesprekken controleren\"],\"pMF40U\":[\"Je sessie wordt gecontroleerd.\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"MgLGKD\":[\"Kies een methodologie\"],\"zMquA7\":[\"Kies een abonnement\"],\"4Jd65a\":[\"Kies eerst een organisatie\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"mgiYV1\":[\"Kies je voorkeurstaal voor de interface\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"3wV73y\":[\"Plaats\"],\"xCJdfg\":[\"Wissen\"],\"yYxB17\":[\"Alles wissen\"],\"u8JHrO\":[\"Filters wissen\"],\"V8yTm6\":[\"Zoekopdracht wissen\"],\"eIdJyh\":[[\"cleared\"],\" van \",[\"total\"],\" gesprekken gewist\"],\"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\"],\"oL+Urh\":[\"Klik om te sorteren\"],\"VbcOhD\":[\"Klantkorting %\"],\"1vOl9f\":[\"Klantorganisatie\"],\"WXNW/R\":[\"Klantorganisaties van partners\"],\"bIj+VB\":[\"Door client beheerd\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"RRo5cD\":[\"Sluiten en naar dembrane\"],\"bQfDiL\":[\"Cloud Act-veilig\"],\"8Vsunl\":[\"Cloud Act-veilig. EU-soevereine stack voor de strengste naleving.\"],\"sShXu3\":[\"Collega's die je uitnodigt kunnen gesprekken verkennen, inzichten delen en samen met jou rapporten maken.\"],\"q+hNag\":[\"Collectie\"],\"jEu4bB\":[\"Kolommen\"],\"AUYALh\":[\"Binnenkort beschikbaar\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"CfO59/\":[\"Vergelijk & Contrast Insights\"],\"2Jg8b0\":[\"Gratis proefperiode. €0 omzet.\"],\"bUEr/M\":[\"Gratis proefperiode. Verloopt op \",[\"0\"],\". €0 omzet.\"],\"bD8I7O\":[\"Voltooid\"],\"qqWcBV\":[\"Voltooid\"],\"XdO6hR\":[\"Voltooid op\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"7VpPHA\":[\"Bevestigen\"],\"s/uNVb\":[\"Bevestigen en versturen\"],\"JRQitQ\":[\"Bevestig nieuw wachtwoord\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"xnWESi\":[\"Wachtwoord bevestigen\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"vz1fGK\":[\"Herplanning bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"participant.modal.s3check.title\":[\"Verbindingsprobleem\"],\"WimHuY\":[\"Verbinding ongezond\"],\"l9fkrm\":[\"Toestemming\"],\"mpby9d\":[\"Contact met support\"],\"E5Shm/\":[\"Neem contact op met de beheerder als dit onverwacht was.\"],\"4b3oEV\":[\"Inhoud\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"JX3KT4\":[\"Contextuele suggesties\"],\"xGVfLh\":[\"Doorgaan\"],\"participant.button.continue\":[\"Doorgaan\"],\"participant.ready.to.begin.button.text\":[\"Doorgaan\"],\"hMqszB\":[\"Doorgaan naar betaling\"],\"F1pfAy\":[\"gesprek\"],\"YyNOE7\":[\"Gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"72XGHt\":[\"Gesprekken gewist\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"iaPtht\":[\"kopie\"],\"he3ygx\":[\"Kopieer\"],\"qQB+iu\":[\"Kopieer goedgekeurde uitkomsten naar het nieuwe gesprek zodat ze niet verloren gaan als het origineel wordt verwijderd.\"],\"x7uIlL\":[\"Uitnodigingslink kopiëren\"],\"y1eoq1\":[\"Kopieer link\"],\"H4brGj\":[\"Link naar klembord kopiëren\"],\"AjrNNs\":[\"Rapportinhoud kopiëren\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"OvEjsP\":[\"Kopieren...\"],\"/GF06U\":[\"Kon je gesprekken niet aan deze chat toevoegen\"],\"wcXkqW\":[\"Kon niet alle tagwijzigingen toepassen.\"],\"5XIW2B\":[\"Kon de wijzigingen niet toepassen. Er is niets opgeslagen.\"],\"1kNETE\":[\"Je selectie kon niet worden meegenomen. Kies hieronder opnieuw.\"],\"Exvn8R\":[\"Kon die actie niet voltooien.\"],\"leuP7L\":[\"Kon de betaling niet bevestigen. Vernieuw om opnieuw te proberen.\"],\"inHtAw\":[\"Kon niet naar het klembord kopiëren. Probeer het opnieuw.\"],\"X+pWr+\":[\"Sjabloon kon niet worden aangemaakt\"],\"qg6spM\":[\"De organisatie kon niet worden aangemaakt\"],\"D4A5VY\":[\"Kon dit canvas niet aanmaken\"],\"kzqg8O\":[\"Kon deze methodologie niet aanmaken\"],\"BiXtZw\":[\"Sjabloon kon niet worden verwijderd\"],\"qFM9uZ\":[\"Er kon geen samenvatting worden gegenereerd. Probeer het opnieuw.\"],\"WbwQgZ\":[\"Kon de methodologieën niet laden.\"],\"RYJyLk\":[\"Betalingen konden niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"3ewci6\":[\"Kon de bibliotheek niet laden.\"],\"S+kUD0\":[\"De rollup kon niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"mNTNj8\":[\"Kon het doel van dit project niet laden.\"],\"2gcFEX\":[\"De gesprekkenlijst kon niet worden geopend. Probeer het opnieuw.\"],\"WSxAYE\":[\"Kon nu geen voorbeeld van dit canvas laden.\"],\"iFyAlt\":[\"Kon dit canvas niet verversen\"],\"nx4kaN\":[\"Kon niet opslaan\"],\"BIQxIX\":[\"Kon tags niet opslaan\"],\"/C4Hgq\":[\"De hostgids kon niet worden opgeslagen\"],\"mb/wyK\":[\"Kon deze methodologie niet opslaan\"],\"g4QEze\":[\"Kon dit projectdoel niet opslaan\"],\"HQinjp\":[\"De uitnodigings-e-mail kon niet worden verstuurd. Controleer de e-mailconfiguratie.\"],\"hpYy7A\":[\"Sjabloon kon niet worden bijgewerkt\"],\"Ld3JrX\":[\"Kon dit canvas niet bijwerken\"],\"0Mj7CF\":[\"Kon de methodologie van dit project niet bijwerken\"],\"/P90WH\":[[\"failed\"],\" leden konden niet worden toegevoegd. Voeg ze toe via de instellingen van de werkruimte.\"],\"n5jG23\":[\"1 lid kon niet worden toegevoegd. Voeg het toe via de instellingen van de werkruimte.\"],\"KFEjpC\":[\"Persoon kon niet worden toegevoegd\"],\"RbXh2U\":[\"Zichtbaarheid kon niet worden gewijzigd\"],\"DjWv8n\":[\"De link kon niet worden gekopieerd.\"],\"QYq+2z\":[\"Deelnemen lukt nu niet\"],\"TOvPOV\":[\"Kon live activiteit niet laden\"],\"CLBne9\":[\"Kon herinneringen niet laden. Vernieuw om het opnieuw te proberen.\"],\"SnOYvu\":[\"Organisatie kon niet worden geladen (\",[\"0\"],\")\"],\"KYcw2y\":[\"Organisatieleden konden niet worden geladen. Probeer te vernieuwen, en neem contact op met support als het blijft mislukken.\"],\"Vw2vHe\":[\"Openstaande uitnodigingen konden niet worden geladen.\"],\"8a9fbX\":[\"Gebruik kon niet worden geladen (\",[\"0\"],\")\"],\"Fwc3py\":[\"Instellingen van de werkruimte konden niet worden geladen (\",[\"0\"],\")\"],\"edGmsx\":[\"Werkruimtes konden niet worden geladen. Sluit en open opnieuw om het nogmaals te proberen.\"],\"4ufrJH\":[\"Gebruik kon niet worden vernieuwd. Probeer het opnieuw.\"],\"PMx835\":[\"Kon deze herinnering niet verwijderen\"],\"b5ALMv\":[\"Training kon niet worden aangevraagd\"],\"JNCzPW\":[\"Land\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"oJfYM5\":[\"Een onderzoeksbrief maken van recente gesprekken\"],\"1hMWR6\":[\"Account aanmaken\"],\"3T8ziB\":[\"Maak een account aan\"],\"lJ+m2/\":[\"Maak een account aan om deel te nemen\"],\"library.create\":[\"Maak bibliotheek aan\"],\"T7gFri\":[\"Nieuwe organisatie aanmaken\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"55yNvT\":[\"Organisatie aanmaken\"],\"vPAex+\":[\"Wachtwoord aanmaken\"],\"Q7h9s/\":[\"Project aanmaken\"],\"bsfMt3\":[\"Maak rapport\"],\"A5hiCy\":[\"Template aanmaken\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"FdtSNC\":[\"Werkruimte aanmaken\"],\"WqpzRx\":[\"Werkruimte aanmaken | dembrane\"],\"d+F6q9\":[\"Aangemaakt\"],\"NCIYDF\":[\"Aangemaakt door\"],\"45O6zJ\":[\"Gemaakt op\"],\"QxmQob\":[\"Aanmaken in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Avatar bijsnijden\"],\"udBqWc\":[\"Afbeelding bijsnijden\"],\"8LMgB6\":[\"Logo bijsnijden\"],\"6dfVdc\":[\"Logo bijsnijden\"],\"Hp1l6f\":[\"Huidig\"],\"yOrQ4N\":[\"Huidige logo\"],\"Pn2B7/\":[\"Huidig wachtwoord\"],\"A+zoTy\":[\"Huidig abonnement\"],\"a+EVO+\":[\"Huidig tarief\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"TubmQJ\":[\"Eigen logo\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"yGoz+a\":[\"Eigen logo van de werkruimte dat aan deelnemers wordt getoond.\"],\"1OE7Ts\":[\"Tsjechisch (alleen ECHO-functies, transcriptie en samenvattingen)\"],\"TNZKpI\":[\"Gevaar\"],\"Zz6Cxn\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"S3EU+A\":[\"E-mail van de data-eigenaar\"],\"+kPwoM\":[\"Data-eigendom\"],\"mYGY3B\":[\"Datum\"],\"Zpu3D+\":[\"Data die passen, context, alles wat verder relevant is\"],\"jbq7j2\":[\"Weigeren\"],\"a1Rv+M\":[\"Uitnodiging weigeren\"],\"bdg17D\":[\"Verzoek weigeren\"],\"OhcpqZ\":[\"Verzoek weigeren?\"],\"BfuTZd\":[\"De uitnodiging voor \",[\"subjectName\"],\" weigeren? Je kunt vragen om hem later opnieuw te sturen.\"],\"vrNxDR\":[\"Dit toegangsverzoek weigeren? De aanvrager krijgt geen melding en zou opnieuw toegang moeten aanvragen.\"],\"tUWfga\":[\"Toegewijde support\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"K/78Yl\":[\"Multistap analyse delegeren met live tool uitvoering\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"Tf88pC\":[[\"0\"],\" verwijderen?\"],\"YFpLoV\":[\"Chat verwijderen\"],\"2GCE3m\":[\"Gesprek verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"j5pYC4\":[\"Aangepast onderwerp verwijderen\"],\"mp235G\":[\"Project verwijderen\"],\"++iDlT\":[\"Verwijder project\"],\"rUWrSE\":[\"Rapport verwijderen\"],\"qr0gpK\":[\"Tag verwijderen\"],\"DFjdv0\":[\"Template verwijderen\"],\"NUXYj2\":[\"Dit project in \",[\"0\"],\" verwijderen? Alle gesprekken en gegevens worden definitief verwijderd.\"],\"Ja/2b5\":[\"Deze werkruimte verwijderen\"],\"ooWc3n\":[\"Deze werkruimte verwijderen. Leden verliezen direct toegang en alle gesprekken en gegevens worden definitief verwijderd.\"],\"zdyslo\":[\"Webhook verwijderen\"],\"kYu0eF\":[\"Werkruimte verwijderen\"],\"Jb6/SB\":[\"Verwijderen…\"],\"L7H6O4\":[\"Verwijderd · \",[\"0\"]],\"+m7PfT\":[\"Verwijderd succesvol\"],\"InIP7b\":[\"Een organisatie verwijderen doen we samen met support. Mail <0>support@dembrane.com en we lopen het met je door. Alle werkruimtes moeten eerst leeg zijn en verwijderd.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane, de standaard\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", alle rechten voorbehouden.\"],\"qFd3qy\":[\"dembrane kan fouten maken. Controleer antwoorden altijd even.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"toegang voor dembrane-medewerker automatisch gestopt\"],\"NBxEip\":[\"dembrane-medewerker heeft de sessie verlengd\"],\"7VMnIt\":[\"dembrane-medewerker is erbij gekomen voor support\"],\"g0sCc9\":[\"dembrane-medewerker is vertrokken\"],\"PDkZlx\":[\"dembrane-medewerker heeft toegang aangevraagd\"],\"cFCKYZ\":[\"Weigeren\"],\"Fs/0D5\":[\"Beschrijf wat de taalmodel moet extraheren of samenvatten uit het gesprek...\"],\"Nu4oKW\":[\"Beschrijving\"],\"Uf+1DF\":[\"Doelwerkruimte\"],\"2rgVKb\":[\"Bepaalt op welke AVG-grondslag persoonsgegevens worden verwerkt. Dit is van invloed op de informatie die aan deelnemers wordt getoond en de rechten van betrokkenen.\"],\"YrOV6x\":[\"Bepaalt onder welke GDPR-rechtsgrondslag personenbezogene gegevens worden verwerkt. Deze instelling geldt voor alle projecten en kan worden gewijzigd in uw accountinstellingen.\"],\"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.\"],\"rGCttu\":[\"Verwachtte je dit niet? Je kunt deze pagina rustig negeren.\"],\"ch15wD\":[\"Niet ontvangen? Kijk eerst in je spam of ongewenste mail. Het bericht komt van dembrane.com.\"],\"hsGK8G\":[\"Niet ontvangen? Kijk in je spam- of ongewenste-mailmap. De e-mail komt van dembrane.com.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"bzSI52\":[\"Weggooien\"],\"Xrxdv5\":[\"Dit project weggooien?\"],\"gemv7o\":[\"Deze werkruimte weggooien?\"],\"H6Ma8Z\":[\"Korting\"],\"Ix7Qp4\":[\"Vindbaar in deze organisatie\"],\"1QfxQT\":[\"Negeren\"],\"J6hrEy\":[\"Genegeerd\"],\"K0Wh2e\":[\"Afgewezen. Er is niets gewijzigd.\"],\"pfa8F0\":[\"Weergavenaam\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"qPwbNF\":[\"Ben je van plan dembrane te gebruiken in de zorg, het onderwijs, werving, het beheer van kritieke infrastructuur, rechtshandhaving of de rechtspraak?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Wordt niet vanzelf bijgewerkt.\"],\"VjXLEl\":[\"Wordt niet vanzelf bijgewerkt. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Klaar\"],\"K98xdM\":[\"Nu terug naar Free\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"SCWfsz\":[\"Alle transcripties downloaden\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"KMdYRY\":[\"PDF downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Ontwerp volgende acties en organiseer ze op basis van prioriteit\"],\"yboQcK\":[\"Een notitie opstellen die je naar het dembrane-team kunt sturen\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"pBB+yW\":[\"Gaat terug naar het gratis plan. Ze kunnen op elk moment een betaald plan nemen.\"],\"euc6Ns\":[\"Dupliceren\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"oUKP8j\":[\"E-factuur\"],\"hBOGLr\":[\"bijv. \\\"Focus op duurzaamheidsthema's\\\" of \\\"Wat vinden deelnemers van het nieuwe beleid?\\\"\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"9nchXg\":[\"bijv. Klant Alpha\"],\"o8kQWN\":[\"bijv. Klant Alpha, Q1-onderzoek\"],\"Ys/6OK\":[\"bijv. Onboardinggesprekken met klanten, Q1-productonderzoek\"],\"MR17iW\":[\"bijv. Klimaatluisteren, Q1-onderzoek\"],\"xnZ8L2\":[\"bijv. het rapportprobleem onderzoeken waarover je mailde\"],\"jYJhQk\":[\"bijv. We zijn een onderzoeksbureau. Rapporten gaan naar gemeentelijke opdrachtgevers, dus houd samenvattingen formeel en in het Nederlands.\"],\"sHNbQq\":[\"bijv. Wekelijkse samenvatting stakeholders\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"Cs04r/\":[\"Elk nieuw lid wordt per stoel in rekening gebracht volgens je abonnement.\"],\"8KA8wD\":[\"Nieuwe functies die je in dit project kunt proberen voordat ze klaar zijn voor iedereen.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"Y/3VME\":[\"Aangepast onderwerp bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"IYfHCP\":[\"Bijwerkinstellingen aanpassen\"],\"qDZ8v9\":[\"Doel bewerken\"],\"X14Q1S\":[\"Methodologie bewerken\"],\"G1Sb51\":[\"Bewerkingsmodus\"],\"niSWGL\":[\"Opties bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud 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\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"E-mailadres\"],\"LimKOG\":[\"E-mailverificatie\"],\"QdCcsg\":[\"E-mailverificatie | dembrane\"],\"g2N9MJ\":[\"email@werk.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji getoond naast het onderwerp bijvoorbeeld 💡 🔍 📊\"],\"TiAvLQ\":[\"leeggemaakt\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"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.\"],\"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\"],\"237hSL\":[\"Afgelopen\"],\"Q+niJN\":[\"Eindigt op \",[\"endDate\"]],\"ajxGoy\":[\"Eindigt op \",[\"endDate\"],\", gaat daarna over naar Free\"],\"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.\"],\"QbilUm\":[\"Voer een geldig e-mailadres in\"],\"CyH1Uk\":[\"Voer het huidige wachtwoord in\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"VpwcSk\":[\"Voer het nieuwe wachtwoord in\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"FiGRkg\":[\"Gegevens ingevuld\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"edh3aY\":[\"Fout bij laden van project\"],\"4kVRov\":[\"Fout opgetreden\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Geschatte kosten\"],\"0PkibI\":[\"Geschat totaal: €\",[\"estimated\"]],\"sIs2jw\":[\"In de EU gehoste taalmodellen inbegrepen\"],\"daDOWB\":[\"In de EU gehoste analyse, auditlogs en white labeling.\"],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"IwE6dT\":[\"Elke 15 minuten\"],\"QFwKaB\":[\"Elke 5 minuten\"],\"NsoFw9\":[\"Elke 60 minuten\"],\"aBiYpV\":[\"Iedereen kan het vinden. Admins doen direct mee, leden kunnen het aanvragen.\"],\"Mzb7Rk\":[\"Iedereen in \",[\"0\"],\" kan dit project vinden en openen.\"],\"PwqyQw\":[\"Iedereen in je organisatie\"],\"nvU1pM\":[\"Iedereen op de lijst is getraind.\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"p9TUoT\":[\"Overschrijdt het maximum aantal stoelen. Er gelden extra kosten.\"],\"sQpDn6\":[\"Volledig scherm sluiten\"],\"FATwZw\":[\"Werkruimtes uitvouwen\"],\"Rsjgm0\":[\"Experimenteel\"],\"M1RnFv\":[\"Verlopen\"],\"KnN1Tu\":[\"Verloopt\"],\"vHL8v0\":[\"Verloopt binnenkort\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"6jZGjE\":[\"Verkennen\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"2KAI4N\":[\"CSV exporteren\"],\"tZXz25\":[\"24 uur verlengen\"],\"bVhrVt\":[\"Extern\"],\"3xOpcO\":[\"Extern van \",[\"0\"]],\"8f/4pG\":[\"Extern van partner\"],\"FMB83I\":[\"Externen\"],\"uRzQpN\":[\"Externen worden niet aan je organisatie toegevoegd. Ze zien alleen de werkruimtes die je hier selecteert.\"],\"W3lkzg\":[\"Externen bestaan alleen binnen een werkruimte. Kies er minstens één om de uitnodiging te versturen.\"],\"KVTM6i\":[\"Extra deelnemers\"],\"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\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"UcQWAA\":[\"Gesprekken wissen is mislukt\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"UQ6LqT\":[\"Fout bij het aanmaken van het aangepaste onderwerp\"],\"bHJ//P\":[\"Project aanmaken mislukt\"],\"nVOWis\":[\"Verwijderen van chat mislukt\"],\"ZiNeUi\":[\"Fout bij het verwijderen van het aangepaste onderwerp\"],\"7QAutA\":[\"Verwijderen van project mislukt\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"REIHSi\":[\"Verwijderen van tag mislukt\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"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\"],\"PECaxL\":[\"Aankondiging als ongelezen markeren mislukt\"],\"CN1kl1\":[\"Verplaatsen van project mislukt\"],\"kC1ABz\":[\"Verplaatsen van projecten mislukt\"],\"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.\"],\"rv8mO7\":[\"Kan avatar niet verwijderen\"],\"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\"],\"IMUHg3\":[\"Opnieuw plannen mislukt. Kies een tijdstip verder in de toekomst en probeer het opnieuw.\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"FBpxE9\":[\"De run stoppen is mislukt\"],\"6xOp3l\":[\"Bericht versturen is mislukt\"],\"qTUnxX\":[\"Fout bij het bijwerken van het aangepaste onderwerp\"],\"BpuK7o\":[\"Fout bij het bijwerken van de rechtsgrondslag\"],\"Avee+B\":[\"Kan naam niet bijwerken\"],\"gnm1CH\":[\"Vastpinnen bijwerken mislukt\"],\"tOcErW\":[\"Instellingen bijwerken is mislukt\"],\"S1McZh\":[\"Kan avatar niet uploaden\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"3O1Mz4\":[\"Redelijk wachtwoord\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedbackportaal\"],\"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\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"3AFOMQ\":[\"Filter op naam of id\"],\"MRk67a\":[\"Vind tegenstrijdigheden en voeg volgende vragen voor\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"In/BVz\":[\"Betaling afronden\"],\"Gt4mS+\":[\"Rond het instellen van je abonnement af\"],\"4dQFvz\":[\"Voltooid\"],\"jtvljU\":[\"Afronden\"],\"V1EGGU\":[\"Voornaam\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus op gesprekken\"],\"2CludW\":[\"Gericht op:\"],\"cGeFup\":[\"Lettergrootte\"],\"UfM4y6\":[\"Voor <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te controleren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"aW4yu6\":[\"Voor een externe organisatie\"],\"LBN11E\":[\"Voor specifieke compliance-eisen, <0>bel ons voor een offerte.\"],\"mSoJxU\":[\"Voor intern gebruik\"],\"c08s58\":[\"Voor facturen, een gedeeld contract, om een samenwerking te bespreken of voor iets op maat, mail <0>support@dembrane.com.\"],\"YP/rFm\":[\"voor het dembrane-team\"],\"GcibpE\":[\"Voor jou\"],\"z7J3FU\":[\"Prognose\"],\"UXY498\":[\"Een opgeslagen herinnering vergeten\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"rWsDiJ\":[\"Kader\"],\"2POOFK\":[\"Gratis\"],\"OLL8bQ\":[\"Het gratis plan staat 1 rapport per werkruimte toe\"],\"GAy5hu\":[\"Het gratis plan staat 1 werkruimte per organisatie toe\"],\"/L+Kwy\":[\"Gratis, alleen-lezen. Ziet projecten, gesprekken en rapporten. Kan niet chatten of rapporten genereren.\"],\"nLC6tu\":[\"Frans\"],\"2Ui6bR\":[\"wrijving\"],\"GtmO8/\":[\"vanaf\"],\"OwIqiD\":[\"Volledig scherm\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"3qkggm\":[\"Volledig scherm\"],\"Weq9zb\":[\"Algemeen\"],\"ziAjHi\":[\"Genereren\"],\"EIdJgG\":[\"Nieuw rapport genereren\"],\"QsUhrf\":[\"Rapport genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"MWSGhX\":[\"Bibliotheek genereren\"],\"5SWGxv\":[\"Nu genereren\"],\"GWUJ9X\":[\"Nu genereren\"],\"QqIxfi\":[\"Geheim genereren\"],\"gitFA/\":[\"Samenvatting genereren\"],\"3/pp83\":[\"Gegenereerd op basis van het transcript. Je kunt het bewerken.\"],\"5z5bUs\":[\"Rapport wordt gegenereerd...\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"hMOYzR\":[\"Je rapport wordt gegenereerd...\"],\"DDcvSo\":[\"Duits\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Aan de slag\"],\"4/PUV0\":[\"aan de slag.\"],\"erZjsz\":[[\"0\"],\" van dembrane 24 uur adminrechten geven voor deze werkruimte? De toegang stopt automatisch.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"DXr0zk\":[\"Volledig scherm\"],\"iWpEwy\":[\"Ga naar home\"],\"y0SPQU\":[\"Naar facturering\"],\"mPlqH9\":[\"Naar chats\"],\"s15CIR\":[\"Naar gesprekken\"],\"10Xyas\":[\"Naar dashboard\"],\"4+0/e5\":[\"Naar de hostgids\"],\"BVMldh\":[\"Naar de bibliotheek\"],\"SAshCc\":[\"Naar de monitor\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"S8lgYE\":[\"Naar het overzicht\"],\"Zo4Spg\":[\"Naar de portal-editor\"],\"jH97zI\":[\"Naar de projectpagina\"],\"QvyaLZ\":[\"Naar het rapport\"],\"1WuwiM\":[\"Naar instellingen\"],\"mT57+Q\":[\"Ga naar Instellingen\"],\"EEZvNu\":[\"Doel\"],\"mc61Qc\":[\"Doel opgeslagen\"],\"Lr2Goo\":[\"Licenties toekennen\"],\"ALoP4W\":[\"Groeperen op\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"uMjvI3\":[\"Het rapport begeleiden\"],\"myXGZW\":[\"Begeleid\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"0zo6ap\":[\"Heb je een training afgerond?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me op weg\"],\"55zzNI\":[\"Hulp bij het opzetten van je project.\"],\"1zZ1IK\":[\"Hoi\"],\"v6a4UH\":[\"Hoi \",[\"firstName\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Verborgen voor leden van de organisatie. Beheerders van de organisatie kunnen de werkruimte nog wel vinden en eraan deelnemen.\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"CdQHTK\":[\"Details verbergen\"],\"lqv0Dk\":[\"Projecten verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"dN/wNN\":[\"Stappen verbergen\"],\"umJNCH\":[\"Wijzigingen verbergen\"],\"IzJDco\":[\"Gebruik met hoog risico vereist eerst een training\"],\"tn75xn\":[\"Specifiek Concept markeren\"],\"3l+JGi\":[\"Notitie bij wijziging\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"hostgids\"],\"bGCQQ9\":[\"Hostgids\"],\"yY8wAv\":[\"Uren\"],\"zvDeDZ\":[\"Uren vanaf nu\"],\"EmxJlb\":[\"Hoe Vragen werkt en wat je ermee kunt.\"],\"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\"],\"ACVscB\":[\"Ik heb het canvas toegepast.\"],\"wJCEin\":[\"Ik heb het doel toegepast.\"],\"Q53s6K\":[\"Ik heb de <0>voorwaarden gelezen en ga ermee akkoord\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Inactief\"],\"participant.verify.instructions.approve.artefact\":[\"Als je tevreden bent met \",[\"objectLabel\"],\", klik dan op \\\"Goedkeuren\\\" om te laten zien dat je je gehoord voelt.\"],\"mHvgOU\":[\"Verwachtte je toegang? Vraag de persoon die je heeft uitgenodigd om de uitnodiging opnieuw te sturen.\"],\"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.\"],\"kSoYmo\":[\"Als je je bij een bestaande organisatie wilt aansluiten, maak dan geen nieuwe aan. Je kunt hier per ongeluk terechtkomen door:\"],\"X2yiuT\":[\"Beeldstijl\"],\"zyr//t\":[\"Verbeter mijn instellingen\"],\"NoNwIX\":[\"Inactief\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portallink opnemen\"],\"hTwp/C\":[\"Inbegrepen uren opgebruikt\"],\"LYjZNH\":[\"Inbegrepen uren deze maand opgebruikt\"],\"8aA4We\":[\"overgenomen van organisatie\"],\"C6W6w6\":[\"Begin\"],\"fr30H3\":[\"Innovator of hoger\"],\"sQpkks\":[\"inzicht \",[\"0\"]],\"3hJypY\":[\"Inzichten\"],\"MSVCjk\":[\"Instructies voor het genereren van het verificatieresultaat\"],\"fN5mkr\":[\"Integraties en export\"],\"ne8SOf\":[\"Interesse in innovator of guardian? Laat het ons weten via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"B2Tpo0\":[\"Ongeldige e-mail\"],\"R7p7+o\":[\"Ongeldige uitnodigingslink\"],\"KhBSE/\":[\"Uitnodiging\"],\"oFgGAT\":[\"Er staan uitnodigingen voor je klaar. Accepteer om aan de slag te gaan.\"],\"MFKlMB\":[\"Uitnodigen\"],\"UwSCxN\":[\"Uitnodiging afgewezen\"],\"ynskdH\":[\"Nodig leden uit om samen te werken aan projecten en gesprekken in deze werkruimte.\"],\"3iGwJw\":[\"Alleen op uitnodiging\"],\"W6+yFb\":[\"Mensen uitnodigen\"],\"iLWFzs\":[\"Nodig mensen uit voor \",[\"orgName\"]],\"lOslCN\":[\"Uitnodiging opnieuw verstuurd\"],\"7Nlmb6\":[\"Uitnodiging ingetrokken\"],\"gfMuvV\":[\"Uitnodiging verstuurd\"],\"2AL6ct\":[\"Uitnodiging verstuurd.\"],\"CTWPKj\":[\"Nodig uit voor een werkruimte, of alleen voor de organisatie.\"],\"RXHza3\":[\"Nodig uit voor deze werkruimte, of alleen voor de organisatie.\"],\"d+Y+rP\":[\"Nodig je team uit\"],\"GA5TFo\":[\"Werkruimte op uitnodiging\"],\"M4oozP\":[\"uitgenodigd door \",[\"0\"]],\"voFazH\":[\"Uitnodigingen verlopen na 7 dagen. Vraag \",[\"inviterName\"],\" om een nieuwe te versturen.\"],\"ec+Yhb\":[\"Factuurbedrag, EUR\"],\"Nv38Sl\":[\"Factuur geregistreerd als betaald.\"],\"DTZqjh\":[\"Offline gefactureerd, geen Mollie-machtiging.\"],\"F7nA5/\":[\"Facturen\"],\"L7OkFI\":[\"Facturatie\"],\"1xMiTU\":[\"IP-adres\"],\"7eZuvg\":[\"Is dit voor intern gebruik binnen je organisatie, of voor een externe organisatie?\"],\"6u5tk8\":[\"Is deze werkruimte voor intern gebruik binnen je organisatie, of voor een externe organisatie die eigenaar is van haar data?\"],\"eeAl1v\":[\"Factuur uitgeven\"],\"08FN6B\":[\"Betaallink uitgeven\"],\"Gglww2\":[\"Het heeft een eigen abonnement en eigen plaatsen, niet het gedeelde abonnement van \",[\"0\"],\". Wijzigingen hier gelden alleen voor deze werkruimte.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"Het lijkt erop dat u nog geen rapport voor dit project heeft. Genereer er een om een overzicht van uw gesprekken te krijgen.\"],\"ZYXJus\":[\"Misschien is hij al gebruikt of verlopen. Als je e-mail geverifieerd is, log dan in om door te gaan.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"nfvG6u\":[\"Italiaans (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"KFXip/\":[\"Jan\"],\"r6wcTL\":[\"jan@voorbeeld.com\"],\"0wdd7X\":[\"Aansluiten\"],\"ADF305\":[\"Lid worden van \",[\"0\"],\" als <0>admin? Het verschijnt daarna meteen in je zijbalk.\"],\"C6DnOz\":[\"Word eerst zelf admin van \",[\"0\"],\" om anderen toe te voegen.\"],\"q1E+AA\":[\"Lid worden van \",[\"0\"],\"?\"],\"agqQk1\":[\"Word lid van \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Lid worden als admin\"],\"TCEFVm\":[\"Lid worden als admin?\"],\"j4IJHz\":[\"Eerst lid worden\"],\"eI7D2K\":[\"Aansluiten voor support\"],\"oopH2X\":[\"Aansluiten voor support (24 uur)\"],\"Q31z/2\":[\"Word lid van onze Slack-community\"],\"s/jfrO\":[\"Word lid van deze organisatie om werkruimtes te ontdekken en samen te werken met je team.\"],\"BICpzG\":[\"Sluit je als beheerder aan bij deze werkruimte om te helpen met support. De klant moet support-toegang voor medewerkers hebben aangezet. Je toegang stopt automatisch na 24 uur.\"],\"gePQ/O\":[\"Word lid van deze werkruimte om samen te werken aan gesprekken, inzichten te delen en samen rapporten te maken.\"],\"IKAMA9\":[\"Lid geworden van \",[\"subjectName\"]],\"Glgamf\":[\"Toegevoegd als admin\"],\"l4EwDk\":[\"Deelgenomen aan het gesprek\"],\"NiZZRh\":[\"Ga naar\"],\"uocCon\":[\"Gewoon een momentje\"],\"xOTzt5\":[\"zojuist\"],\"mmEyCQ\":[\"Net een preview gemaakt. Even geduld.\"],\"VqAl2y\":[\"Net bijgewerkt. Even geduld.\"],\"UQYK3R\":[\"Net begonnen\"],\"U0T6D0\":[\"Praat of typ gewoon op een natuurlijke manier. Uw bijdrage gaat rechtstreeks naar ons productteam en helpt ons echt om dembrane te verbeteren. We lezen alles.\"],\"hK3t2g\":[\"Alleen jij, plus de beheerders van de werkruimte.\"],\"rnwfSX\":[\"Voorlopig alleen jij.\"],\"lgdsfK\":[\"Alleen jij. Deel met specifieke mensen →\"],\"OePlDL\":[[\"tier\"],\" houden tot een datum\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"4OjqAQ\":[\"Verder bewerken\"],\"RQElWR\":[\"Behouden\"],\"B3WAHx\":[\"Licentie houden\"],\"uHdpk+\":[\"Mijn abonnement behouden\"],\"Qzyw+2\":[\"In behandeling houden\"],\"II//jO\":[\"Houd dit canvas up-to-date\"],\"0BWuwA\":[\"Houdt het niveau tot de datum hieronder en gaat daarna terug naar Free, tenzij ze een abonnement nemen.\"],\"4q0kY7\":[\"Kernbegrippen\"],\"dymfAn\":[\"Kernbegrippen vertellen de transcriptie hoe de namen en woorden die in dit project belangrijk zijn geschreven worden.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Taal\"],\"swJ0V2\":[\"Laatste audio\"],\"rTwgPH\":[\"Vorige maand\"],\"1ZaQUH\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"QEU41f\":[\"Laatst bijgewerkt \",[\"0\"]],\"wL3cK8\":[\"Laatste\"],\"wv+L3B\":[\"Laatste rapport\"],\"zwWKhA\":[\"Meer informatie\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"wpBe20\":[\"Nu verlaten\"],\"qvRaz1\":[\"Werkruimte verlaten\"],\"UlKSMd\":[\"Vertrokken\"],\"vRXsmZ\":[\"Rechtsgrondslag\"],\"7kyKF5\":[\"Rechtsgrondslag bijgewerkt\"],\"nc/jNe\":[\"Naam rechtspersoon\"],\"8zGcQ2\":[\"Laten we je eerste gesprek horen.\"],\"qnAazR\":[\"Laten we het over het canvas \\\\\\\"\",[\"0\"],\"\\\\\\\" hebben.\"],\"OQ/Al+\":[\"Laten we het over dit canvas hebben.\"],\"VxapXh\":[\"bibliotheek\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"gkv8iG\":[\"Kenteken\"],\"u/z4+7\":[\"Licentie ingetrokken\"],\"snyG+w\":[\"Licenties\"],\"/NleHL\":[\"Licenties verleend\"],\"JbbFA4\":[\"Levenslange limiet\"],\"J7Djew\":[\"Beperk wie deze werkruimte kan vinden en eraan kan deelnemen.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link gekopieerd\"],\"LIj2/f\":[\"Link naar de privacyverklaring van uw organisatie die aan deelnemers wordt getoond\"],\"g4/qsV\":[\"Toon mijn gesprekken\"],\"k3d/oJ\":[\"Toon de gesprekken in dit project.\"],\"+L0OEa\":[\"Gesprekken op een rij zetten\"],\"gWVReV\":[\"Documentatiepagina's opzoeken\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live en recent\"],\"uH9GEL\":[\"Live agent uitvoermodus\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live deelnemersstroom\"],\"O0rtUS\":[\"Live deelnemerstrechter: aantallen voor gescand, instellen, op opnamepagina, live en voltooid\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"hQE9uK\":[\"Live opnames, voortgang van transcriptie en fouten verschijnen hier zodra deelnemers in de portal beginnen met opnemen.\"],\"kfOJzm\":[\"Live verbinding verbroken. We werken minder vaak bij tot de verbinding terug is.\"],\"PPSKvH\":[\"Live verbinding onderbroken. We halen updates nu periodiek op.\"],\"1P8zM9\":[\"Levend canvas\"],\"yQ2kGp\":[\"Meer laden\"],\"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...\"],\"YyMToN\":[\"Leden laden\"],\"IG63hz\":[\"Methodologie laden\"],\"FUK4WT\":[\"Microfoons laden...\"],\"Xan9/v\":[\"Projecten laden...\"],\"GtQzAW\":[\"Deze chat laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"eRq8Ag\":[\"Werkruimtes laden…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"G2fuEb\":[\"Vergrendeld\"],\"pefb7Y\":[\"Gesprek vergrendeld, upgrade om te bekijken\"],\"z32CuS\":[\"Vergrendeld om bij de uitnodiging te passen. Wil je een ander adres gebruiken? Vraag de admin om dat e-mailadres opnieuw uit te nodigen.\"],\"sQia9P\":[\"Inloggen\"],\"L3Q5Lc\":[\"Log in bij \",[\"resolvedWorkspaceName\"],\" om verder te gaan.\"],\"KC88rc\":[\"Uitloggen en het uitgenodigde e-mailadres gebruiken\"],\"7Zt++i\":[\"Dit doorgeven aan het dembrane-team\"],\"z0t9bb\":[\"Inloggen\"],\"LM/dWU\":[\"Inloggen | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo verwijderd\"],\"MjfaMh\":[\"Logo bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"FTbR8B\":[\"Langste eerst\"],\"jWXlkr\":[\"Langste eerst\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Batterij bijna leeg\"],\"QqxHAZ\":[\"Maak het privé om alleen met specifieke mensen te delen. Privéprojecten vereisen het innovator-abonnement of hoger.\"],\"icpEdc\":[\"Privé maken\"],\"pCYZVV\":[\"Zichtbaar maken voor de hele werkruimte\"],\"wckWOP\":[\"Beheren\"],\"lXmPSL\":[\"Aanwezigen beheren\"],\"hB02vO\":[\"Leden beheren\"],\"WLAeKT\":[\"Facturatie van organisatie beheren\"],\"mrenWs\":[\"Templates beheren\"],\"2VeSf/\":[\"Training beheren\"],\"waFx9W\":[\"Beheerd\"],\"DlYfyz\":[\"Beheerde accounts betalen op factuur, niet met een kaart. Een account beheerd maken houdt alle functies aan en zet automatisch incasseren, aanmaningen en verlopen uit. Wijs een dembrane-accountmanager toe zodat de klant weet bij wie hij terechtkan.\"],\"bxxIPf\":[\"Beheerde facturatie\"],\"usR1Ju\":[\"Beheerd door dembrane\"],\"/FWPUc\":[\"Beheert leden, werkruimtes en organisatie-instellingen.\"],\"onllUU\":[\"Alles markeren als gelezen\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"E8m+Rc\":[\"Markeer als aanwezig\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"5GPcf9\":[\"Markeren als ongelezen\"],\"TyonBx\":[\"Markeer als voltooid\"],\"MCipZC\":[\"Factuur markeren als betaald\"],\"AHBWqd\":[\"Training als voltooid markeren\"],\"Ofm5QB\":[\"Markeert \",[\"orgName\"],\" als partner. De werkruimtes geven bij het aanmaken zelf aan of ze voor intern of extern klantgebruik zijn.\"],\"VxyuRJ\":[\"Vergadernotities\"],\"NwiNTb\":[\"lid\"],\"OvoEq7\":[\"Lid\"],\"deUR+U\":[\"Lid verwijderd\"],\"GnG6Oy\":[\"leden\"],\"wlQNTg\":[\"Leden\"],\"v8o+Rn\":[\"Geheugen\"],\"u418B7\":[\"Herinnering verwijderd\"],\"ltnOth\":[\"Bericht van het dembrane team\"],\"YcaR2g\":[\"Bericht is te lang (maximaal 32.000 tekens). Voeg gesprekken toe of maak je bericht korter.\"],\"m3fXOy\":[\"Berichtenlimiet bereikt\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologieën\"],\"m8tKkP\":[\"Methodologie\"],\"hml7oE\":[\"Methodologie aangemaakt\"],\"l1/lbT\":[\"Methodologie opgeslagen\"],\"e6I7Ej\":[\"Methodologie bijgewerkt\"],\"ADm81a\":[\"Microfoon geblokkeerd\"],\"+WoTL8\":[\"Microfoon getest\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"pTc/Cy\":[\"mnd\"],\"zz/Wd/\":[\"Modus\"],\"Re8IqH\":[\"Mollie is niet ingesteld in deze omgeving, dus er worden geen live transacties getoond. De Dashboard-link verwijst nog steeds naar de juiste Mollie-omgeving.\"],\"j0uaMA\":[\"Monitoren\"],\"4kanfr\":[\"Maandelijkse facturatie\"],\"f8jrkd\":[\"meer\"],\"JcD7qf\":[\"Meer acties\"],\"QWdKwH\":[\"Verplaatsen\"],\"3qp1VW\":[\"\\\"\",[\"0\"],\"\\\" verplaatsen naar \",[\"targetWorkspaceName\"],\"? Leden van de huidige werkruimte verliezen hun toegang.\"],\"ZU6coV\":[[\"0\"],\" van \",[\"1\"],\" naar \",[\"tier\"],\" verplaatsen?\"],\"8Pgx5L\":[\"Haal \",[\"name\"],\" van facturatie door dembrane. Kies wat er met hun plan gebeurt.\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"cK3qrq\":[\"Verplaatsingsgeschiedenis\"],\"nthowT\":[\"Project verplaatsen\"],\"WnyjBv\":[\"Projecten verplaatsen\"],\"7TYQRA\":[\"Dit project naar de geselecteerde werkruimte verplaatsen?\"],\"fwyWPz\":[\"Verplaats dit project, met de gesprekken en rapporten, naar een werkruimte die je beheert. Je moet admin of eigenaar van de doelwerkruimte zijn.\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"zCpAZ1\":[\"Naar een andere werkruimte verplaatsen\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"5MzfrX\":[\"Analyse in meerdere stappen.\"],\"uzUz9i\":[\"Meerdere talen\"],\"j7HfhZ\":[\"Moet minstens 10 minuten in de toekomst zijn\"],\"5hOInR\":[\"Mijn toegang\"],\"en+4fS\":[\"Mijn sjablonen\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"aFFbp6\":[\"Noem het naar de klant, opdracht of het doel.\"],\"KxAfaR\":[\"Noem het naar het onderwerp, de opdracht of de vraag die je verkent.\"],\"ztAdhw\":[\"Naam bijgewerkt\"],\"vfJR5V\":[\"Geef je organisatie een naam om te beginnen. Je kunt daarna meteen leden uitnodigen, of later via instellingen lid worden van andere organisaties.\"],\"5cahWP\":[\"Geef je organisatie een naam. Je kunt daarna mensen uitnodigen, of dat later via instellingen doen.\"],\"pfbjQ0\":[\"Geef je werkruimte een naam.\"],\"c5Xt89\":[\"Naam Z-A\"],\"WcgzjF\":[\"naam@voorbeeld.com\"],\"CLjxnx\":[\"naam@voorbeeld.com, naam2@voorbeeld.com\"],\"AQjK0x\":[\"Werkwijzen met een naam die je team opnieuw kan gebruiken.\"],\"0l5mYK\":[\"Meer toegang nodig? Vraag de persoon die je heeft uitgenodigd om je toe te voegen aan de organisatie of een andere werkruimte.\"],\"fAUSZy\":[\"Vereist aandacht\"],\"isRobC\":[\"Nieuw\"],\"mdHOWX\":[\"Nieuwe chat over dit canvas\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"u2uElg\":[\"Nieuwe gesprekken toegevoegd sinds dit rapport\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"UPRdvV\":[\"Nieuwe methodologie\"],\"MVaH2c\":[\"Nieuwe organisatie\"],\"/nT6AE\":[\"Nieuw wachtwoord\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"gKi+a/\":[\"Nieuw project\"],\"wzIR5D\":[\"Nieuw project | dembrane\"],\"z6wcHz\":[\"Nieuw rapport\"],\"ZfVx+G\":[\"Nieuw niveau\"],\"curoK5\":[\"Nieuwe werkruimte\"],\"cTUByn\":[\"Nieuwste eerst\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.next\":[\"Volgende\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"1vEADD\":[\"Volgende factuur\"],\"1UzENP\":[\"Nee\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"oPoLg+\":[\"Geen toegang\"],\"VHfLAW\":[\"Geen accounts\"],\"riwuXX\":[\"Geen acties gevonden\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"Xmk0PY\":[\"Nog geen factureringsaccount. Mail naar <0>support@dembrane.com en we stellen er een in.\"],\"PVAfDk\":[\"Geen factureringsaccounts voldoen aan de huidige filters.\"],\"xz3y0A\":[\"Nog geen canvassen\"],\"d2Jf1f\":[\"Geen wijziging\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"9nWRSv\":[\"Geen chats gevonden voor je zoekopdracht.\"],\"r3iaI0\":[\"Nog geen chats.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"PNz5nE\":[\"Geen gesprekken voldoen aan deze filters.\"],\"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.\"],\"YnWe3z\":[\"Nog geen gesprekken.\"],\"GKpO3x\":[\"Nog geen gesprekken. Je kunt nu een rapport plannen en gesprekken worden opgenomen zodra ze zijn toegevoegd.\"],\"dl4q4O\":[\"geen vervaldatum\"],\"7Ad0TM\":[\"Geen expliciete delingen. Werkruimtebeheerders hebben nog steeds toegang.\"],\"Fb9N7E\":[\"Nog geen extern geleide organisaties.\"],\"cqoc0B\":[\"Geen verdere kosten\"],\"bl3Q4e\":[\"Nog geen doel. Stel er hier een in, of laat de assistent je erover interviewen in de chat.\"],\"wuFH13\":[\"Er zijn geen uitnodigingen verstuurd. Bekijk de lijst hieronder.\"],\"rwtE4m\":[\"Geen logo ingesteld. De standaard van dembrane wordt gebruikt.\"],\"4TVVsS\":[\"Geen resultaten\"],\"IntpVZ\":[\"Geen resultaten gevonden\"],\"JuBV6F\":[\"Nog geen leden.\"],\"A4D9sY\":[\"Nog geen methodologieën.\"],\"gr5hJS\":[\"Er was geen microfoon beschikbaar. Controleer of er een is aangesloten en niet ergens anders in gebruik is.\"],\"UfnqDf\":[\"Geen naam\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"XOpCfj\":[\"Geen nieuwe uitnodigingen nodig. Bekijk de lijst hieronder.\"],\"nZsRCa\":[\"Nog niemand toegevoegd\"],\"VylT70\":[\"Nog niemand anders in deze organisatie\"],\"xp1ZnX\":[\"Nog niemand hier.\"],\"wca+1p\":[\"Niemand wordt automatisch geblokkeerd bij niet-betalen. Houd mislukte betalingen hier in de gaten en volg ze op.\"],\"6iedjR\":[\"Niemand voldoet aan dat filter.\"],\"RJSUJO\":[\"Nog niemand in de organisatie.\"],\"ZwZtAi\":[\"Nog niemand in deze organisatie.\"],\"/+Nxaa\":[\"Nog niemand gedeeld\"],\"sAu4UE\":[\"Nog niemand in de werkruimte.\"],\"/ksKg9\":[\"Geen organisatierol. Toegang via werkruimte-uitnodigingen.\"],\"laeweW\":[\"Geen betalingen voldoen aan het filter.\"],\"iV2Or0\":[\"Nog geen betalingen.\"],\"cqfchi\":[\"Geen pdf beschikbaar voor deze factuur.\"],\"qPbs1l\":[\"Geen openstaande uitnodigingen\"],\"X0DUuO\":[\"Geen projectactiviteit deze periode.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"YzI8q2\":[\"Geen projecten gevonden.\"],\"m0I2ba\":[\"Geen recente activiteit\"],\"9Y/ZE7\":[\"Nog geen verwijsafspraken.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"1iQvuD\":[\"Nog geen rapporten\"],\"Ev2r9A\":[\"Geen resultaten\"],\"pm345e\":[\"Geen selecteerbare gesprekken\"],\"klvSBe\":[\"Geen abonnement\"],\"deovLP\":[\"Nog geen samenvatting\"],\"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.\"],\"KE6RCJ\":[\"Geen templates gevonden voor {searchQuery}\"],\"ndv8BV\":[\"Geen trainingen gevonden met deze filters.\"],\"JmSs4s\":[\"Nog geen trainingen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"/uoEXj\":[\"Nog geen verbruik deze cyclus.\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"Z9sn1g\":[\"Nog geen versie\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"AtHA/x\":[\"Nog geen werkruimtetoegang\"],\"nnCUYC\":[\"Geen werkruimte gekozen. Ze worden toegevoegd aan \",[\"orgName\"],\" en kunnen zelf werkruimtetoegang aanvragen.\"],\"wn5bQU\":[\"Geen wijziging van werkruimterol. Voeg deze persoon toe aan de organisatie en nodig ze daarna opnieuw uit vanuit de werkruimte.\"],\"tPEiUj\":[\"Er worden op dit moment geen werkruimtes uit deze organisatie met je gedeeld.\"],\"pxmfsY\":[\"Geen werkruimtes komen overeen met \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"Niets gepland\"],\"PjeFWm\":[\"Geen geldig e-mailadres.\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"PBxg/E\":[\"Niet nu\"],\"Ua2NxX\":[\"Geen beheerde facturatie. Zet op beheerd om dit account op het \",[\"tier\"],\"-niveau te factureren, zonder automatische afschrijvingen via Mollie.\"],\"07Vguj\":[\"Wordt niet verlengd\"],\"vaVAp0\":[\"Niet ingepland\"],\"MTqQMG\":[\"Niet ingesteld\"],\"kBpuXT\":[\"Deze niet\"],\"vbpAZQ\":[\"Niet getraind\"],\"/hpEcX\":[\"notitie\"],\"1DBGsz\":[\"Notities\"],\"RYtZxa\":[\"Notities voor ons team\"],\"budBGD\":[\"Notities die de assistent bijhoudt over hoe je graag werkt, opgeslagen tijdens je chats. Alleen jij ziet ze. Verwijder alles wat je niet wilt bewaren.\"],\"NdAad3\":[\"Notities die de assistent vanuit chats over dit project heeft opgeslagen. Iedereen die in dit project chat deelt ze.\"],\"WAy8m5\":[\"Notities die de assistent vanuit chats over deze werkruimte heeft opgeslagen. Iedereen in de werkruimte deelt ze.\"],\"DZMptz\":[\"Op dit moment niets van dembrane.\"],\"DN72IZ\":[\"Hier is nog niets voor je.\"],\"yFnB+H\":[\"hier nog niets\"],\"0IdomT\":[\"Er wordt niets verstuurd totdat je het verstuurt. Pas hieronder eerst aan wat je wilt.\"],\"we3tJT\":[\"Niets komt overeen met het filter.\"],\"610qM/\":[\"Nog niets opgeslagen. De assistent voegt hier notities toe terwijl er wordt gechat.\"],\"6rAlvZ\":[\"Nog niets opgeslagen. De assistent voegt hier notities toe terwijl je chat.\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"hGA9Wy\":[\"Waarnemer\"],\"phUtHZ\":[\"Waarnemers (gratis)\"],\"k9cwCQ\":[\"Waarnemers zijn gratis en alleen-lezen, en alleen voor werkruimtes van externe klanten. Ze kunnen de werkruimte bekijken, maar niet chatten, rapporten genereren of bewerken. Wijzig hun rol naar Extern om ze meer te laten doen.\"],\"RfY3gN\":[\"Observers zijn gratis gasten die alleen kunnen meelezen. Wil je ze laten bewerken? Verwijder ze en nodig ze opnieuw uit als lid.\"],\"JIE4kF\":[\"Waarnemers zijn alleen beschikbaar in werkruimtes voor een externe klant. Kies alleen werkruimtes van externe klanten, of kies een andere rol.\"],\"Bdtwnw\":[\"uit\"],\"az8lvo\":[\"Uit\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oudste eerst\"],\"9+6THi\":[\"Oudste eerst\"],\"Fdp03t\":[\"aan\"],\"Z5HWHd\":[\"Aan\"],\"Hktelz\":[\"Facturatie wordt beheerd door dembrane. Overschakelen naar self-serve behoudt het niveau en toont de klant de checkout om kaartbetaling in te stellen.\"],\"er1mH/\":[\"Op opnamepagina\"],\"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.\"],\"qvLmaf\":[\"Eén kleine letter\"],\"+P5Okg\":[\"Eén cijfer\"],\"m5rZjl\":[\"Eén symbool\"],\"MKUgK1\":[\"Eén hoofdletter\"],\"qitPxp\":[\"Eenmalig\"],\"J6n7sl\":[\"Actief\"],\"conversation.ongoing\":[\"Actief\"],\"yAVA7C\":[\"Lopende gesprekken\"],\"a//PzZ\":[\"Verander deze instelling alleen in overleg met de verantwoordelijke persoon(nen) voor de bescherming van gegevens binnen uw organisatie.\"],\"uaB4AS\":[\"Alleen organisatiebeheerders en eigenaren kunnen werkruimtes aanmaken. Vraag een beheerder van je organisatie om er een aan te maken, of om je eerst te promoveren.\"],\"0WLwiw\":[\"Alleen mensen die al in deze werkruimte zitten, kunnen worden toegevoegd. Nodig ze eerst uit voor de werkruimte als ze hier nog niet zijn.\"],\"xbDpkO\":[\"Alleen de mensen die je toevoegt of uitnodigt, kunnen het zien.\"],\"K/CPkL\":[\"Alleen bij het vastleggen van een factuur die al buiten het systeem is betaald.\"],\"fKQbMI\":[\"Alleen werkruimtebeheerders en de mensen die je uitnodigt, kunnen dit project openen.\"],\"C/Sx14\":[\"Alleen werkruimtebeheerders kunnen deze instellingen wijzigen. Vraag een beheerder als er iets bijgewerkt moet worden.\"],\"4UuIbT\":[\"Alleen jij kunt deze werkruimte zien.\"],\"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.\"],\"1TNIig\":[\"Openen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Accountacties openen\"],\"tcgf5/\":[\"Alles openen\"],\"yCDcIF\":[\"Open chatdocumentatie\"],\"uIKeEf\":[\"Gesprek openen\"],\"EUQ7ko\":[\"Open documentatie\"],\"aRGGej\":[\"Open voor deelname\"],\"CD3rbs\":[\"Hostgids openen\"],\"f04uGY\":[\"Openen in Bibliotheek\"],\"c9rlQI\":[\"Mollie-dashboard openen\"],\"iZD9CK\":[\"Organisatie openen\"],\"FBPD+d\":[\"Open \",[\"0\"],\" vanaf hier.\"],\"OG3wju\":[\"Open de chat\"],\"828iLy\":[\"Open de oorspronkelijke uitnodigings-e-mail en klik daar op de link, of vraag de uitnodiger om een nieuwe uitnodiging te sturen.\"],\"FZ5fed\":[\"Open de probleemoplossingsgids\"],\"m9eUZO\":[\"Open voor de werkruimte\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"Gc/l1s\":[\"Werkruimte openen\"],\"F7e1nt\":[\"Werkruimteacties openen\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"rPRgw+\":[\"Zet experimentele functies aan en help dembrane vormgeven. Deze functies kunnen op elk moment veranderen of verdwijnen.\"],\"LLAa/9\":[\"Optioneel\"],\"ZFIvWo\":[\"Optioneel (valt terug naar Engels)\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0OspM/\":[\"Optioneel. Waar deze werkruimte voor is.\"],\"0zpgxV\":[\"Opties\"],\"BzEFor\":[\"of\"],\"0EffTH\":[\"Of kies een tijd\"],\"7r2pfW\":[\"Of liever direct chatten?\"],\"1h45Hu\":[\"Of schrijf uw eigen\"],\"v2MBz4\":[\"Alleen organisatie\"],\"LB3Kje\":[\"Organisatie\"],\"sezvMj\":[\"Organisatie | dembrane\"],\"9L7xZr\":[\"Organisatieaccount\"],\"fGRmCP\":[\"organisatiebeheerder\"],\"x/dDGk\":[\"Organisatielid\"],\"Juy8tT\":[\"Organisatieleden verschijnen hier zodra ze deelnemen aan een werkruimte.\"],\"UPvG74\":[\"Organisatieleden verschijnen hier zodra ze deelnemen aan een werkruimte. Uitnodigingen worden verstuurd vanaf het tabblad Leden van elke werkruimte.\"],\"m9HLnV\":[\"Organisatienaam\"],\"IvGxhL\":[\"Organisatie niet gevonden\"],\"B38pCE\":[\"Alleen organisatie\"],\"kzWAph\":[\"Organisatiegebruik\"],\"GoZkew\":[\"Organisaties\"],\"usabod\":[\"Organisaties | dembrane\"],\"qdq0Jp\":[\"Organisaties aangemaakt door mensen die externe samenwerkers van een partner zijn. Een signaal dat ze mogelijk hun eigen abonnement willen.\"],\"6lcDxb\":[\"URL van de privacyverklaring van de organisator\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"NTkmOk\":[\"Facturering voor overschrijding van toepassing\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"oDAEQq\":[\"Eigendom\"],\"OwPQJt\":[\"Eigendom is vergrendeld. Neem contact op met support om over te dragen.\"],\"HSAzUy\":[\"Eigenaar-organisatie\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v4nCHK\":[\"Betaald\"],\"uneeEC\":[\"deels afgerond\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"hRcUJQ\":[\"Naam deelnemer\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"CmOBUh\":[\"Deelnemers abonneren op updates\"],\"DbvvEo\":[\"Verificatie van deelnemers\"],\"MZHPuB\":[\"Deelnemers\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partnerorganisatie\"],\"LkuJMH\":[\"Partnerwerkruimte, apart gefactureerd en geen onderdeel van het plan van de organisatie.\"],\"qC5k4V\":[\"Partnerwerkruimte, apart gefactureerd van de organisatie.\"],\"8ZsakT\":[\"Wachtwoord\"],\"zJx6Vx\":[\"Wachtwoord gewijzigd\"],\"PxRsoo\":[\"Wachtwoord voldoet niet aan de vereisten.\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"KXsZLF\":[\"Updates pauzeren\"],\"URAE3q\":[\"Gepauzeerd\"],\"XaA5fF\":[\"Gepauzeerd.\"],\"6Dmao4\":[\"Gepauzeerd. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Nu betalen\"],\"VwkrOQ\":[\"Betalende omzet\"],\"VESsDr\":[\"Betalende omzet deze maand\"],\"pJxzaT\":[\"Betaling mislukt\"],\"/CNehZ\":[\"Bedrag betaallink, EUR\"],\"GfJaff\":[\"Betaallink uitgegeven.\"],\"ENEPLY\":[\"Betaalmethode\"],\"sni5ir\":[\"Betalingskenmerk\"],\"Kd2B1D\":[\"De betaling is gelukt. Je plan is up-to-date.\"],\"S48xcO\":[\"in behandeling\"],\"UbRKMZ\":[\"In afwachting\"],\"EaYDGF\":[\"Openstaande toegangsverzoeken\"],\"V1wW5o\":[\"Actie vereist\"],\"sU2oO4\":[\"Openstaande uitnodigingen\"],\"GC714A\":[\"Openstaande uitnodigingen | dembrane\"],\"gPRsPw\":[\"personen\"],\"1wdjme\":[\"Personen\"],\"t9qtWL\":[\"Personen met toegang\"],\"Uoqcz2\":[\"Resultaten per ontvanger:\"],\"hkffer\":[\"Toegang per werkruimte\"],\"SrVzRe\":[\"Procent\"],\"NtQvjo\":[\"Periode\"],\"D0meML\":[\"persoon\"],\"t4wIPl\":[\"Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"zmwvG2\":[\"Telefoon\"],\"B8mlc2\":[\"Kies een datum\"],\"PYDbNJ\":[\"Kies een account\"],\"hZjgId\":[\"Kies minstens één werkruimte om de uitnodiging te versturen.\"],\"NCubup\":[\"Kies iemand uit je organisatie of typ een e-mailadres om uit te nodigen.\"],\"m+EMny\":[\"Kies er een\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"U1Tudq\":[\"Pilotlimiet bereikt\"],\"qVkGWK\":[\"Vastpinnen\"],\"u8qC4w\":[\"Project vastpinnen\"],\"S+WiJ3\":[\"Pin sjablonen hier vast voor snelle toegang.\"],\"kNiQp6\":[\"Vastgezet\"],\"LdWQ+0\":[\"Vastgepind is vol (max 5)\"],\"EC6BHi\":[\"Vastgezette projecten\"],\"RimR35\":[\"Vastgepinde sjablonen\"],\"afV5A2\":[\"Plan eindigt\"],\"Iqh0Uv\":[\"Gepland\"],\"lWy5a1\":[\"Plannen\"],\"PI95wJ\":[\"Plant, verzamelt en controleert het eigen werk over veel gesprekken.\"],\"PKrSWk\":[\"Accepteer de voorwaarden om door te gaan.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"ZhyvmA\":[\"Log in om door te gaan.\"],\"MXEkrp\":[\"Neem je reactie op door op de knop \\\"Record\\\" hieronder te klikken. Je kunt ook in tekst reageren door op het teksticoon te klikken.\\n**Houd dit scherm verlicht**\\n(zwart scherm = niet aan het opnemen)\"],\"Lu1j4b\":[\"Neem je reactie op door op de knop \\\"Record\\\" hieronder te klikken. Je kunt ook in tekst reageren door op het teksticoon te klikken.\\n**Houd dit scherm verlicht**\\n(zwart scherm = niet aan het opnemen).\\nJe transcriptie wordt geanonimiseerd en je host kan niet naar je opname luisteren.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"6MncU0\":[\"plus werkruimtebeheerders\"],\"rhEYMw\":[\"PNG, JPEG of WebP. Wordt bijgesneden tot een cirkel.\"],\"gL/sdV\":[\"Populair\"],\"uRFMMc\":[\"Portal inhoud\"],\"ivjxif\":[\"Portalbeschrijving\"],\"oNb5Ox\":[\"portal-editor\"],\"694+8E\":[\"Portaalbewerker\"],\"qVypVJ\":[\"Portaal-editor\"],\"OZYxCC\":[\"Afsluitbericht portal\"],\"FNuwSz\":[\"Portaltaal\"],\"gKSdKz\":[\"Portal open voor nieuwe gesprekken\"],\"XfoCxn\":[\"Portaaloverzicht\"],\"qLWG8R\":[\"Portaltitel\"],\"D5roJB\":[\"Portaltutorial\"],\"U4aiMW\":[\"Postcode\"],\"cWkKWE\":[\"compliment\"],\"kBa6hc\":[\"Een navigatiesnelkoppeling voorbereiden\"],\"9vB8nN\":[\"Eerste update wordt voorbereid.\"],\"xVEtui\":[\"Dit canvas wordt voorbereid\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"rdUucN\":[\"Voorbeeld\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"a7u1N9\":[\"Prijs\"],\"Ub/0bY\":[\"Prijzen zijn exclusief btw.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"S8ugMC\":[\"Rapport afdrukken\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Privé\"],\"Q7R6ZJ\":[\"Privé · alleen genodigden kunnen dit zien\"],\"i4YTOL\":[\"Privéproject\"],\"1vsuTU\":[\"Privéwerkruimte\"],\"vXOtIa\":[\"Privéwerkruimtes\"],\"1ihBUA\":[\"Privé. Voeg mensen toe om het te delen.\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Projectacties\"],\"eBFgFZ\":[\"projectchats\"],\"2LxK9d\":[\"Projectcontext\"],\"RYrbVH\":[\"Project aangemaakt\"],\"Hie0VV\":[\"Project aangemaakt\"],\"zjTrs1\":[\"Projectstandaard: ingeschakeld. Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"rmmNSG\":[\"Projectstandaarden\"],\"aVOwd+\":[\"Project verwijderd\"],\"7TYa2T\":[\"Projectdoel\"],\"qW7NU2\":[\"Het project is nu zichtbaar voor iedereen in \",[\"workspaceName\"]],\"wNXqAE\":[\"Het project is nu zichtbaar voor de werkruimte\"],\"QFx9kj\":[\"Inzichtenbibliotheek | dembrane\"],\"QDjWwu\":[\"Project Meta Samenvatting\"],\"lltun+\":[\"Project verplaatst\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"uMobxw\":[\"projectoverzicht\"],\"q0+yfq\":[\"Project Overzicht | dembrane\"],\"3YND3K\":[\"projectinstellingen\"],\"Wsk5pi\":[\"Project Instellingen\"],\"7NmoFz\":[\"Verwacht maandtotaal\"],\"gitVS9\":[\"Verwacht jaartotaal\"],\"M9H+/G\":[\"projecten\"],\"+0B+ue\":[\"Projecten\"],\"DK5DV3\":[\"Projecten | dembrane\"],\"B1WDxD\":[\"Projecten binnen organisatie · \",[\"0\"]],\"uNGCZL\":[\"Projecten verplaatst\"],\"2ugVVF\":[\"Projecten verschijnen hier zodra iemand in de organisatie er een met je deelt.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Voorgesteld\"],\"pAY+Io\":[\"Voorgestelde wijzigingen\"],\"Aka3jE\":[\"Naar rato voor de rest van deze factureringsperiode.\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"EEYbdt\":[\"Publiceren\"],\"vsX8VJ\":[\"Publiceer dit rapport eerst om de portallink te tonen\"],\"IHzoSN\":[\"Publiceer dit rapport om een deellink te krijgen\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"NHHXdL\":[[\"name\"],\" op facturatie beheerd door dembrane zetten, op het \",[\"tier\"],\"-niveau? Geen automatische afschrijvingen via Mollie en niets dat automatisch verloopt.\"],\"4PTJUv\":[\"Vragen over hoe dembrane werkt, niet alleen over je data.\"],\"XhrBin\":[[\"0\"],\" stappen tegelijk uitgevoerd\"],\"iZuzSU\":[\"Snelheidslimiet bereikt\"],\"wr9IYa\":[\"Voer het nieuwe wachtwoord opnieuw in\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"D2yGaZ\":[\"Heractiveren\"],\"Pkpg2N\":[\"Plan heractiveren\"],\"wZxwNu\":[\"Lees hardop voor\"],\"C4TjpG\":[\"Minder lezen\"],\"8fZueG\":[\"Meer lezen →\"],\"wOfACA\":[\"Lees de gids voor problemen met transcripties en samenvattingen\"],\"6pSHJ5\":[\"Alleen-lezen\"],\"WU7BCa\":[\"Samenvatting van \",[\"0\"],\" lezen\"],\"tFk6c8\":[\"Transcript van \",[\"0\"],\" lezen\"],\"E3kwAc\":[\"Een gesprekssamenvatting lezen\"],\"LpWlYq\":[\"Een skill lezen\"],\"9UTzRO\":[\"Een transcript lezen\"],\"DYyFO2\":[\"Projectcontext lezen\"],\"ug1A83\":[\"Projectinstellingen lezen\"],\"IdmBAm\":[\"De documentatie lezen\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"Xc0UKh\":[\"reden: \",[\"0\"]],\"0f3uxy\":[\"Recente betalingen over alle accounts\"],\"mzcrRN\":[\"onlangs\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.s3check.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"BakXLg\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"462bGY\":[\"Spraakbericht opnemen\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"XmKjfh\":[\"Opname\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"yjom5N\":[\"Opnemen blijft werken, dus je deelnemers ondervinden er niets van.\"],\"BYO86u\":[\"Opnamelimiet bereikt\"],\"4IbgAX\":[\"Opnamepagina\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"POxNnV\":[\"De opname is gestopt bij de limiet van vijf minuten. Je opname wordt omgezet naar tekst.\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"rOwugh\":[\"Nu verversen\"],\"1STMKj\":[\"Lopende gesprekken vernieuwen\"],\"eEud7e\":[\"Verversen gestart\"],\"WqYAGe\":[\"Verversen werkt zodra de canvasservice klaar is.\"],\"zVuxvN\":[\"Vernieuwen…\"],\"6exX+8\":[\"Opnieuw genereren\"],\"PpFJd2\":[\"Samenvatting opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"HPitDS\":[\"Registreer | dembrane\"],\"UcLJ6I\":[\"Releasevideo\"],\"tF5Smn\":[\"Pagina opnieuw laden\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"Lbcvrt\":[\"Denk eraan dat je altijd de Feedback-knop kunt gebruiken voor suggesties. We waarderen je steun, en bedankt dat je dembrane gebruikt.\"],\"vqD7S+\":[\"Gebruikers herinneren om te verifiëren voordat ze klaar zijn\"],\"tmHC17\":[\"Herinnering verstuurd: supporttoegang staat nog aan\"],\"t/YqKh\":[\"Verwijderen\"],\"w61W3L\":[[\"0\"],\" verwijderen\"],\"G0aZvo\":[[\"0\"],\" verwijderen uit deze werkruimte? Ze verliezen toegang tot alle projecten erin.\"],\"VoKjPv\":[\"Avatar verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"tOkPHm\":[\"Uit chat verwijderen\"],\"1G/+Gj\":[\"Uit organisatie verwijderen\"],\"18PmZk\":[\"Uit organisatie verwijderen?\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"O90CN2\":[\"Logo verwijderen\"],\"99VIgC\":[\"Lid verwijderen\"],\"Gr8pvR\":[\"Het aangepaste logo verwijderen? In plaats daarvan wordt het standaardlogo van dembrane gebruikt.\"],\"itsN5H\":[\"Deze herinnering verwijderen?\"],\"eps54V\":[\"Verwijderd\"],\"nVEhnc\":[\"Verwijderd uit organisatie\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"6PsaMr\":[\"Chat hernoemen\"],\"TBZOgu\":[\"Verlenging\"],\"M7SqjM\":[\"Heropenen\"],\"rnkWZt\":[\"Antwoorden aan deelnemers\"],\"1jBoqr\":[\"Richtlijnen voor antwoorden\"],\"X9GEGX\":[\"Antwoordmodus\"],\"XyN13i\":[\"Reactie prompt\"],\"w1tLX2\":[\"rapport\"],\"gjpdaf\":[\"Rapport\"],\"e/MQa5\":[\"Rapport wordt al gegenereerd\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"hh/mvZ\":[\"Rapportgeneratie geannuleerd\"],\"sSy8vA\":[\"Rapport wordt gegenereerd...\"],\"v7O77U\":[\"Rapportgeneratie is geannuleerd. Je kunt hieronder een nieuw rapport starten.\"],\"fIBsri\":[\"Rapportlimiet bereikt\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"M9snPp\":[\"Rapport gepland\"],\"u9r3Di\":[\"Report templates staan op onze roadmap.\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"t9yxlZ\":[\"Rapporten\"],\"E1vQT6\":[[\"0\"],\"-training aanvragen\"],\"qbXLnJ\":[\"Een training aanvragen\"],\"WdCAhr\":[\"Toegang aanvragen\"],\"library.request.access\":[\"Toegang aanvragen\"],\"cH8Bhd\":[\"Aanvraag goedgekeurd\"],\"ViqcVt\":[\"Aanvraag afgewezen\"],\"jI02E7\":[\"Verzoek geweigerd.\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"8H5nRH\":[\"Wachtwoord reset aanvragen | dembrane\"],\"1RVBJe\":[\"Aanvraag verzonden\"],\"OQsKlA\":[\"Verzoek verstuurd. De beheerders van de werkruimte hebben bericht gekregen.\"],\"b44axA\":[\"Verzoek verstuurd. Wachten op de beheerders van de werkruimte.\"],\"7rVjfL\":[\"Supporttoegang aanvragen\"],\"XmXfrX\":[\"Verzoek ingetrokken.\"],\"Yx0Ud8\":[\"Aangevraagd\"],\"VRpBev\":[\"Aangevraagde en geplande trainingen. Markeer een training als voltooid om elke deelnemer een licentie van een jaar te geven.\"],\"PXQc8Y\":[\"Aanvrager\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"TMLAx2\":[\"Verplicht\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"iE/mLK\":[\"Vereist changemaker-niveau of hoger\"],\"QqW27M\":[\"Herplannen\"],\"6eIR/n\":[\"Opnieuw plannen naar\"],\"ZSTojU\":[\"Uitnodiging opnieuw versturen\"],\"8WtTog\":[\"Uitnodiging opnieuw versturen\"],\"OfhWJH\":[\"Resetten\"],\"I9EnzM\":[\"Filters resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"9uplIY\":[\"Wachtwoord resetten | dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"1K1kvB\":[\"Abonnement hervatten\"],\"85Qjyx\":[\"Updates hervatten\"],\"ioYnu6\":[\"ingetrokken\"],\"fM1Ldq\":[\"ingetrokken voor het dembrane-team\"],\"AWy1Kd\":[\"Een notitie voor het dembrane-team intrekken\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"+gmVxi\":[\"Hertranscriptie niet beschikbaar voor anonieme gesprekken\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"zHJTti\":[\"Nu opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"2fCpt5\":[\"Terug naar home\"],\"5k0NLb\":[\"Controleren\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"ECoHYI\":[\"Opnieuw bekijken\"],\"dSCHZP\":[\"Bekijk en bewerk hieronder. Dit voegt een controle toe die bij elk gesprek draait. Verificatie moet aan staan om de controle uit te voeren. Er verandert niets tot je hem toevoegt.\"],\"Tqa1v9\":[\"Controleer voordat je aanmaakt.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"OybZ3y\":[\"Bekijk mijn projectinstellingen en stel verbeteringen voor.\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"JuDdMd\":[\"Bekijk, bewerk en open elk gesprek in dit project.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Versiegeschiedenis\"],\"GXsAby\":[\"Intrekken\"],\"jjsSSc\":[\"Uitnodiging intrekken\"],\"HZn3qT\":[\"Licentie intrekken\"],\"TUcQqn\":[\"De uitnodiging aan \",[\"0\"],\" intrekken? Je kunt deze persoon later opnieuw uitnodigen.\"],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"GDvlUT\":[\"Rol\"],\"QjMlvE\":[\"Rol gewijzigd\"],\"jQ6I8X\":[\"Rol bijgewerkt\"],\"wbV5uX\":[\"Ruwe schatting om de achterstand aan transcripties weg te werken\"],\"xxCtZv\":[\"Rijen per pagina\"],\"RiQMUh\":[\"Bezig\"],\"i39IXZ\":[\"Verkoopfactuur uitgegeven.\"],\"tfDRzk\":[\"Opslaan\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"GsV2va\":[\"Toegang opslaan\"],\"BnmEvM\":[\"Opslaan als template\"],\"gjqGP0\":[\"Factuurgegevens opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"qjHQoH\":[\"Korting opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"5dVjYt\":[\"Template opslaan\"],\"idD8Ev\":[\"Opgeslagen\"],\"8AhhHy\":[\"Opgeslagen als doel van dit project.\"],\"XvjC4F\":[\"Opslaan...\"],\"JnhbnC\":[\"Scan of klik op de QR-code om het feedbackportaal te openen\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"SGnha7\":[\"Scan om deel te nemen aan dit project\"],\"NAe+hu\":[\"Gescand\"],\"epl7MR\":[[\"0\"],\" keer gescand\"],\"iQbBJn\":[\"QR gescand\"],\"gmB6oO\":[\"Plannen\"],\"wCGy0o\":[\"Rapport inplannen\"],\"qtjOKf\":[\"Training inplannen\"],\"4ba0NE\":[\"Ingepland\"],\"oOi11l\":[\"Scroll naar beneden\"],\"A1taO8\":[\"Zoeken\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"FyLaDj\":[\"Zoek op account, status, beschrijving\"],\"Uu9l/P\":[\"Zoek op account, werkruimte, organisatie, e-mail, tier\"],\"EJ1adC\":[\"Zoek en selecteer de gesprekken voor deze chat.\"],\"V0wu2W\":[\"Zoeken op organisatie\"],\"a4xYoA\":[\"Zoek chats\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"QU2qoc\":[\"Zoek op naam of e-mail\"],\"6/qy61\":[\"Zoek op partner, klant, werkruimte\"],\"l9vi1F\":[\"Zoek mensen\"],\"S1LvJy\":[\"Zoek mensen of typ een e-mailadres\"],\"hjqK3H\":[\"Zoek project of werkruimte\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"Ix2UwQ\":[\"Zoek projecten, organisaties, werkruimtes, instellingen…\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"5WYZKZ\":[\"Zoekresultaten\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"S2BNQs\":[\"Zoek werkruimtes\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"mHOLEz\":[\"Gesprekken doorzoeken\"],\"rI5Wda\":[\"Gesprekken doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"De documentatie doorzoeken\"],\"hoK9sq\":[\"Transcripten doorzoeken\"],\"/DtZhN\":[\"Transcripten doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Zoeken…\"],\"MpFIca\":[\"plekken\"],\"grt0Pu\":[\"Plekken\"],\"R4Xlsa\":[\"Plekken vol\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"9dDRnY\":[\"bekijk eerdere releases\"],\"ruKb0q\":[\"Bekijk abonnementen\"],\"ic1SaJ\":[\"Bekijk upgrade-opties\"],\"0sQPzI\":[\"Tot snel\"],\"XZRu52\":[\"Ziet gebruik en facturen. Geen toegang tot projecten of content.\"],\"rG3WVm\":[\"Selecteren\"],\"02ePaq\":[[\"0\"],\" selecteren\"],\"F7wP7I\":[\"Selecteer een gesprek om verder te gaan\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"NM2hyD\":[\"Selecteer een werkruimte\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"XSLOfq\":[\"Selecteer alle zichtbare (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"d3O/ZP\":[\"Selecteer ten minste één ander onderwerp voordat u dit verwijdert\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"OOZBXR\":[\"Gesprek selecteren\"],\"5z/6Uk\":[\"Gesprekken selecteren\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"1kovRK\":[\"Project selecteren\"],\"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\"],\"Dh99yE\":[\"Selecteer maximaal 2 focusgebieden voor je rapport\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \\\"Verifiëren\\\".\"],\"GnNO41\":[\"Selecteer wie erbij was. Iedereen krijgt een licentie van een jaar om dembrane te gebruiken in situaties met een hoog risico.\"],\"participant.select.microphone\":[\"Selecteer een 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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Verzenden\"],\"iJyjJ8\":[[\"0\"],\" uitnodigingen versturen\"],\"Hvnq/n\":[\"Uitnodiging versturen\"],\"FCfEtD\":[\"Uitnodigingen versturen\"],\"6M/wwR\":[\"Notitie versturen\"],\"4k2VbT\":[\"Verzoek versturen\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"j73b/6\":[\"Naar dembrane sturen\"],\"h69WC6\":[\"Verstuurd\"],\"EhSyaK\":[[\"sentCount\"],\" van \",[\"0\"],\" verstuurd. Bekijk de lijst hieronder.\"],\"oSzbte\":[\"verstuurd naar het dembrane-team\"],\"XyiDbI\":[\"Apart (klant)\"],\"OnmeuT\":[\"Scheid met komma's, spaties of nieuwe regels.\"],\"NprC8U\":[\"Sessienaam\"],\"SpfrD/\":[\"ingesteld door \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Doel instellen\"],\"eo7QNa\":[\"Instellen als beheerd\"],\"WAdU35\":[\"Zet op beheerd\"],\"c0oPm+\":[\"Zet op beheerde facturatie\"],\"FpHYiz\":[\"Na het aanmaken instellen met de assistent\"],\"JfvZ6H\":[\"Werkruimte instellen\"],\"J4TuIW\":[\"Stel je eerste organisatie in\"],\"aBwEIZ\":[\"Stel je organisatie in\"],\"OALBTr\":[\"Stel je werkruimte in | dembrane\"],\"2zDY/H\":[\"Bepaal wie het kan zien en kan deelnemen.\"],\"A6EhcS\":[\"We zetten alles voor je klaar\"],\"XYlJJT\":[\"Instellen\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"BVRW7i\":[\"Instellingen | dembrane\"],\"RPF/8g\":[\"Instellingen bijgewerkt\"],\"RDjuBN\":[\"Instellen\"],\"OuFYHU\":[\"Rapport delen\"],\"nzT4VD\":[\"Deel het project, volg live activiteit en spring vanaf één plek naar de belangrijkste tools.\"],\"8styFN\":[\"Deel met iemand\"],\"bM7Rp3\":[\"Deel met werkruimte\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"nnWGzO\":[\"Deel uw ideeën met ons team\"],\"4o0klJ\":[\"Deel je stem door de QR-code te scannen\"],\"jqnSi6\":[\"Gedeeld met\"],\"YJJJo3\":[\"Gedeeld met \",[\"0\"]],\"zIgU4M\":[\"Gedeeld met \",[\"0\"],\" en \",[\"overflow\"],\" anderen\"],\"Sdetlc\":[\"Kortste eerst\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"ZptNUh\":[\"Toon \",[\"hidden\"],\" meer\"],\"fp7sBF\":[\"Nog \",[\"overflow\"],\" tonen\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"9Resvw\":[\"Toon details\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"Wh1pao\":[\"Meer versies tonen\"],\"34iCWY\":[\"Alleen wijzigingen tonen\"],\"ersE21\":[\"Toon projecten\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"qB9H4B\":[\"Stappen tonen\"],\"EgEjZz\":[\"Volledige tekst tonen\"],\"RpOvMh\":[[\"0\"],\" van \",[\"1\"],\" weergegeven\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"qVf+dV\":[\"De eerste \",[\"0\"],\" van \",[\"shownCount\"],\" resultaten worden getoond. Verfijn je zoekopdracht om de rest te zien.\"],\"8Lpud3\":[\"Uw meest recente voltooide rapport wordt getoond.\"],\"HHR5pX\":[\"Wordt getoond in de organisatiekop en in onderwerpregels van e-mails.\"],\"6Uau97\":[\"Overslaan\"],\"participant.button.verify_prompt.skip\":[\"Overslaan\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"TTKYZB\":[\"Microfooncheck overgeslagen\"],\"3Czdpd\":[\"Slack-community\"],\"QCIy1f\":[\"Een deel van de audio in dit gesprek kon niet worden getranscribeerd. Open het gesprek om te zien welke delen misgingen.\"],\"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).\"],\"Pe0Fnh\":[\"Een deel van de recente audio kon niet worden getranscribeerd. De opname is opgeslagen.\"],\"C6+ZRl\":[\"Iemand\"],\"participant.modal.s3check.message\":[\"Iets blokkeert je verbinding. Je audio wordt niet opgeslagen tenzij dit wordt opgelost.\"],\"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\"],\"mwpVVD\":[\"Er is iets misgegaan bij het genereren van uw laatste rapport.\"],\"2WNFmv\":[\"Er is iets misgegaan bij het genereren van uw rapport.\"],\"aT53wg\":[\"Er ging iets mis aan mijn kant. Stuur je bericht opnieuw, dan probeer ik het nog een keer.\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"VXAsiD\":[\"Er ging iets mis tijdens het transcriberen. Probeer het opnieuw.\"],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"7PyY8A\":[\"Er ging iets mis. Open de link uit je e-mail opnieuw, of <0>begin opnieuw.\"],\"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\"]],\"65A04M\":[\"Spaans\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"uXsB4R\":[\"Personeel\"],\"eicGWU\":[\"Alleen personeel\"],\"vtV8C/\":[\"Door dembrane aangemaakt\"],\"NBA/uu\":[\"Standaardtoegang. Werkt samen in de werkruimtes waaraan ze zijn toegevoegd.\"],\"vv5o+Y\":[\"Vaste richtlijnen die de assistent meekrijgt in elke projectchat in deze werkruimte. Wordt automatisch opgeslagen.\"],\"ruoKG4\":[\"Start een chat\"],\"vPF04k\":[\"Start een nieuwe chat\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"nYTTLF\":[\"Starten in de assistentchat\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"slY7aQ\":[\"Opname gestart\"],\"W1KkjZ\":[\"Begint\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Blijft live gedurende\"],\"DpvswE\":[\"Blijft actueel\"],\"M66Dtk\":[\"Blijft actueel tot \",[\"0\"]],\"oWpwLu\":[\"Blijft actueel tot morgen \",[\"0\"]],\"HfI5Nm\":[\"Kom je er nog niet uit? Mail <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Opname stoppen en omzetten naar tekst\"],\"pozyoW\":[\"Gestopt op \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Gestopt op \",[\"stoppedAt\"],\". Bijgewerkt \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Gestopt.\"],\"YAtsqu\":[\"Gestopt. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategische Planning\"],\"BVSaId\":[\"Sterk wachtwoord\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"EDl9kS\":[\"Abonneren\"],\"zzDlyQ\":[\"Succes\"],\"aG+cH9\":[\"Dynamische suggesties voorstellen op basis van uw gesprek.\"],\"6xSPmn\":[\"Voorgesteld projectdoel\"],\"SLIAI6\":[\"Voorgestelde tagwijzigingen voor je project\"],\"kBrP+r\":[\"Voorgestelde verificatievraag\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"TQTiuh\":[\"Canvas voorstellen\"],\"VOjaCv\":[\"Projectdoel voorstellen\"],\"jt3eXx\":[\"Verificatievraag voorstellen\"],\"5+Cysq\":[\"Projectwijzigingen voorstellen\"],\"BN3mxb\":[\"Tagwijzigingen voorstellen\"],\"F1nkJm\":[\"Samenvatten\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"zdF7Nh\":[\"Samenvatting gegenereerd.\"],\"hlaWg4\":[\"Samenvatting opnieuw gegenereerd.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"/lNOlB\":[\"Supporttoegang beëindigd.\"],\"iD58Ik\":[\"Supporttoegang met 24 uur verlengd.\"],\"1iB0Qb\":[\"Supporttoegang verleend. Deze stopt automatisch na 24 uur.\"],\"H9ee/+\":[\"Supporttoegang uitgezet\"],\"Qm32kv\":[\"Supporttoegang uitgezet nadat de sessie eindigde\"],\"jtzW2z\":[\"Supporttoegang aangezet\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Overzetten naar self-serve\"],\"h1qzuU\":[\"Overzetten naar self-serve facturering\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"InGQz2\":[\"Systeemstatus\"],\"N3D6GN\":[\"Tag verwijderd\"],\"OYHzN1\":[\"Trefwoorden\"],\"gGG+ax\":[\"Tags zijn de woorden waaruit deelnemers in de portal kunnen kiezen. Er verandert niets tot je ze toepast.\"],\"kNzjto\":[\"Tags bijgewerkt. Je kunt ze altijd bijstellen in de portaleditor.\"],\"tFhVJf\":[\"Breng me naar \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig.\"],\"participant.refine.make.concrete.description\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig.\"],\"fLzFsM\":[\"Praat met ons over training\"],\"VC5y9X\":[\"Teams in de EU die dembrane gebruiken in scenario's die volgens de EU AI Act als hoog risico worden aangemerkt, moeten een training volgen voordat ze hun werkruimte gebruiken.\"],\"Jzcupi\":[\"Vertel de beheerders van de werkruimte waarvoor je toegang nodig hebt. Deze notitie is optioneel.\"],\"QCchuT\":[\"Template toegepast\"],\"JcCDm9\":[\"Sjabloon aangemaakt\"],\"ZTgE3k\":[\"Sjabloon verwijderd\"],\"5OwALL\":[\"Template naam\"],\"PQb/If\":[\"Sjabloon bijgewerkt\"],\"iTylMl\":[\"Sjablonen\"],\"4Y5H+g\":[\"Voorwaarden\"],\"qYLZL2\":[\"testmodus\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"FT6q8r\":[\"Die opname is te lang om te versturen. Neem een kortere notitie op.\"],\"a/CreD\":[\"Dat was te kort om te transcriberen. Houd de opname iets langer vast.\"],\"rKnNUJ\":[\"Misschien heeft de beheerder hem geannuleerd, of is er met de link geknoeid. Vraag degene die je heeft uitgenodigd om een nieuwe te sturen.\"],\"Ie4DcG\":[\"De assistent vergeet dit in elke toekomstige chat.\"],\"jvdqI1\":[\"De assistent stelt voor om \",[\"headlineFields\"],\" bij te werken. Wacht op jou.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"NPynOC\":[\"De verbinding is weggevallen. We proberen automatisch opnieuw.\"],\"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\"],\"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\"],\"x0q6pF\":[\"Het gratis plan bevat 1 chat per werkruimte. Vraag een beheerder van de organisatie om te upgraden.\"],\"2VRtP/\":[\"Het gratis plan bevat 1 chat per werkruimte. Upgrade om meer chats te starten.\"],\"3rUXa7\":[\"Het gratis plan bevat 1 werkruimte per organisatie. Upgrade om meer werkruimtes aan te maken.\"],\"IUkPfk\":[\"Het doel stuurt de rapporten, canvassen en suggesties van de assistent in dit project.\"],\"IwNUoA\":[\"De hostgids is wat begeleiders lezen voordat ze een sessie draaien.\"],\"oRhAnS\":[\"De uitnodiging is verstuurd naar \",[\"invitedEmail\"],\", maar je bent ingelogd als \",[\"myEmail\"],\". Log uit en meld je aan met het juiste adres, of vraag de beheerder om \",[\"myEmail\"],\" opnieuw uit te nodigen.\"],\"lrIONj\":[\"De link is misschien privé, of hij is verplaatst. Vraag degene die de link heeft gedeeld om het te controleren.\"],\"o5ki/a\":[\"Misschien is de link verwijderd, of is hij naar een ander e-mailadres gestuurd. Vraag degene die je heeft uitgenodigd om een nieuwe te sturen.\"],\"jnNEHx\":[\"De methodologie is de manier waarop dit project is opgezet en wordt begeleid.\"],\"WO8jr5\":[\"De microfoon is nog steeds geblokkeerd. Pas het aan in je browserinstellingen en controleer het daarna opnieuw.\"],\"LofrVg\":[\"De organisatie waarvoor deze uitnodiging was, is verwijderd. Er is niets om aan deel te nemen.\"],\"K3dQWG\":[\"De pagina waar dit antwoord naar verwijst.\"],\"Khtiqr\":[\"De vorige versies zijn hieronder nog beschikbaar.\"],\"D4If9P\":[\"De projectcontext wordt gelezen door transcriptie, chatantwoorden en canvasgeneratie, dus een wijziging hier raakt meer dan een scherm.\"],\"s+NYkH\":[\"Het rapport kan tot 5 minuten na de gekozen tijd starten.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"otcrOk\":[\"Het transcript kwam niet terug. Controleer je verbinding en probeer het opnieuw.\"],\"sQgHJn\":[\"De transcriptie is niet afgerond. Probeer het opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"Ws5p1J\":[\"De werkruimte waarvoor deze uitnodiging was, is verwijderd. Er is niets om aan deel te nemen.\"],\"mbsBu1\":[\"Hun vertegenwoordiger die eigenaar is van deze data. Diegene wordt toegevoegd als gratis waarnemer en wordt het overdrachtscontact.\"],\"k59/22\":[\"Hun vertegenwoordiger die eigenaar is van deze data. Diegene wordt toegevoegd als gratis waarnemer, krijgt per e-mail bericht dat hij de data-eigenaar is en wordt het overdrachtscontact.\"],\"p9LlT0\":[\"Het scherm is vergrendeld of het tabblad is niet actief. De opname pauzeert tot ze terugkomen.\"],\"FEr96N\":[\"Thema\"],\"tn4pEQ\":[\"daar\"],\"fm15Og\":[\"Er zijn geen andere werkruimtes waarnaar je deze projecten kunt verplaatsen.\"],\"PmKiRy\":[\"Er zijn geen andere werkruimtes waarnaar je dit project kunt verplaatsen.\"],\"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.\"],\"4MElLm\":[\"Er zat geen spraak in die opname.\"],\"D8iLCl\":[\"Deze wijzigingen zijn toegepast op je project.\"],\"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.\"],\"UCmdZb\":[\"Deze instellingen zijn alleen-lezen. Alleen organisatiebeheerders kunnen de projectstandaarden wijzigen.\"],\"7Ye3FL\":[\"Deze tagwijzigingen zijn toegepast op je project.\"],\"81wkbM\":[\"Deze werkruimtes worden apart gefactureerd. Elke persoon die je toevoegt neemt een plek in \",[\"billingContextCount\"],\" factureringscontexten in, die elk afzonderlijk worden gefactureerd.\"],\"0ZaC+v\":[\"Deze werkruimtes hebben hun eigen abonnement, beheerd vanuit elke werkruimte. Ze maken geen deel uit van het abonnement van deze organisatie.\"],\"8AOwf0\":[\"Ze worden toegevoegd als leden. Je kunt er later meer toevoegen.\"],\"Ed99mE\":[\"Denken...\"],\"WLBoIc\":[\"Dit account heeft een lopend Mollie-abonnement. Zeg dat eerst op.\"],\"3YoDz8\":[\"Dit account heeft een actief abonnement. Vraag de klant om het op te zeggen via de factureringspagina voordat je het niveau aanpast.\"],\"kUtEeG\":[\"Dit gedeelte is voor dembrane-personeel. Denk je dat je toegang zou moeten hebben? Mail dan support@dembrane.com.\"],\"7eQeNC\":[\"Deze browser kan geen audio opnemen. Chrome, Edge en Safari wel.\"],\"participant.modal.s3check.suggestions\":[\"Dit kan gebeuren wanneer een VPN of firewall de verbinding blokkeert. Probeer je VPN uit te schakelen, over te schakelen naar een ander netwerk (bijv. mobiele hotspot) of neem contact op met je IT-afdeling voor hulp.\"],\"XR7DRS\":[\"Dit canvas kon niet worden bijgewerkt.\"],\"fztlir\":[\"Dit verandert hoe transcripten vanaf nu worden opgeslagen. Gesprekken die al zijn opgenomen behouden de vorm waarin ze zijn bewaard.\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"XVmrFS\":[\"Dit veld bevat al de voorgestelde waarde.\"],\"lja/om\":[\"Deze informatie is anoniem\"],\"VqK4uu\":[\"Dit inzicht is verwijderd\"],\"1p9Zmk\":[\"Deze uitnodiging is al gebruikt\"],\"BGIpSK\":[\"Deze uitnodiging is verlopen\"],\"tU7tLa\":[\"Deze uitnodiging is niet meer geldig\"],\"u3BWAB\":[\"Deze uitnodiging is niet voor dit account\"],\"fcMrKf\":[\"Deze uitnodigingslink is niet geldig\"],\"ZPOM9u\":[\"Deze uitnodigingslink is niet geldig voor dit account\"],\"kdZCIM\":[\"Deze uitnodiging beslaat \",[\"0\"],\" factureringscontexten, die elk apart worden gefactureerd:\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"bSbU2m\":[\"Dit is een overzicht van elke organisatie en werkruimte waarvan je lid bent.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"AypXpi\":[\"Dit is nog niet opgeslagen.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"BLwPhM\":[\"Dit is niet beschikbaar voor jou\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"2033EA\":[\"Deze link is al gebruikt. Je bent ingelogd en kunt aan de slag.\"],\"MR5ygV\":[\"Deze link is niet meer geldig\"],\"Aznd4+\":[\"Hiermee zet je de training op geannuleerd. Je kunt hem later via hetzelfde menu weer openen.\"],\"oW3yYY\":[\"Deze maand\"],\"YN8nMm\":[\"Hiermee krijgt de werkruimte een eigen facturerings- en datacontext. De projecten verplaatsen niet meer vrij mee met de rest van je organisatie.\"],\"KpeRTX\":[\"Deze organisatie heeft nog geen leden om te trainen.\"],\"DHgelW\":[\"Deze organisatie bestaat niet meer\"],\"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.\"],\"+9D2sa\":[\"Dit deel van de pagina kon niet laden. Opnieuw laden lost het meestal op. Blijft het gebeuren, ga dan terug naar home.\"],\"SWBo09\":[\"deze persoon\"],\"CWAQCC\":[\"Dit project was niet bereikbaar.\"],\"bon4/x\":[\"Dit project hoort niet bij een werkruimte.\"],\"ocBOyA\":[\"Dit project is zichtbaar voor iedereen in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"Dit project is zichtbaar voor iedereen in de werkruimte.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"3dSMKs\":[\"Hiermee zet je het account op facturering die dembrane beheert: geen automatische Mollie-afschrijvingen en geen automatisch verlopen.\"],\"xfqtI+\":[\"Deze korte rondleiding laat onze nieuwe indeling in drie niveaus zien: organisaties, workspaces en projecten. Bekijk de video en leer hoe je toegang beheert, je werk organiseert en onze nieuwe analysetools gebruikt.\"],\"64Ko7C\":[\"Dit record heeft geen factureringsaccount.\"],\"SQuwgX\":[\"Hiermee verwijder je het gesprek uit het project. Dit kun je niet terugdraaien.\"],\"9zTDpd\":[\"Hiermee verwijder je de licentie van één jaar voor \",[\"0\"],\". Ze tellen dan niet meer als getraind en verliezen toegang tot instellingen met hoog risico. Doe dit alleen als de licentie per ongeluk is toegekend.\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"WsV2BS\":[\"Dit verzoek duurde te lang, dus ik heb het gestopt. Stuur het opnieuw, dan probeer ik het nog een keer.\"],\"bKWJ+t\":[\"Hiermee gaat het account terug naar standaard gratis facturering.\"],\"XK9N+e\":[\"Hiermee komt de werkruimte terug bij de gedeelde facturering van je organisatie en wordt de externe data-eigenaar verwijderd.\"],\"cjRyq5\":[\"Dit bepaalt de taal die deelnemers in het portaal zien, inclusief de vragen die ze krijgen.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"ABJz8Q\":[\"Deze verificatievraag is toegevoegd aan je project.\"],\"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.\"],\"mSuhYn\":[\"deze werkruimte\"],\"8b9oJD\":[\"Deze werkruimte heeft de opnamelimiet bereikt. Upgrade om meer audio te uploaden.\"],\"fZZhNF\":[\"Deze werkruimte heeft de inbegrepen opname-uren gebruikt. Vraag een beheerder van de organisatie om te upgraden.\"],\"nHYAFS\":[\"Deze werkruimte heeft de inbegrepen opname-uren gebruikt. Upgrade om spraak te blijven gebruiken.\"],\"1pzlg0\":[\"Deze werkruimte heeft zijn opname-uren gebruikt. Upgrade om spraak te blijven gebruiken.\"],\"teN+SJ\":[\"Deze werkruimte wordt apart gefactureerd\"],\"/HZ7l/\":[\"Deze werkruimte wordt gefactureerd via \",[\"orgName\"],\". Abonnementen en betaling worden in één keer voor de hele organisatie beheerd, en elke werkruimte deelt dit.\"],\"Khe1Xt\":[\"Deze werkruimte zit op een niveau dat geen extra plekken toelaat. Upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"vvEr5j\":[\"Deze werkruimte bestaat niet meer\"],\"+FiXAn\":[\"Deze werkruimte deelt de facturering van de organisatie. Pas het niveau aan op het organisatieaccount, daar geldt hij voor elke interne werkruimte in de organisatie.\"],\"QnWmgF\":[\"Deze werkruimte is op \",[\"sinceDate\"],\" teruggezet naar \",[\"tier\"],\". Sommige functies zijn beperkt.\"],\"DGZ0dc\":[\"Drie snelle stappen en je bent binnen.\"],\"nNGGkA\":[\"Niveau\"],\"qPIf5y\":[\"Niveau gewijzigd\"],\"LhMjLm\":[\"Tijd\"],\"cklVjM\":[\"Tijdlijn\"],\"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.\"],\"Zb3ANR\":[\"Tip: U kunt ook een sjabloon maken van elk chatbericht dat u verstuurt, of een bestaand sjabloon dupliceren.\"],\"MHrjPM\":[\"Titel\"],\"1xkgU6\":[\"Titel automatisch gegenereerd\"],\"ouSxtJ\":[\"Titel gegenereerd uit het gesprek\"],\"uqnBvS\":[\"Titelrichtlijn\"],\"Mozc0C\":[\"Titel of deelnemer\"],\"dMtLDE\":[\"naar\"],\"xLXwHL\":[\"Om een nieuwe tag toe te wijzen, maak je deze eerst aan in de portalinstellingen.\"],\"qDfpLj\":[\"Om ons te helpen actie te ondernemen, probeer aan te geven waar het gebeurde en wat u probeerde te doen. Bij bugs, vertel ons wat er mis ging. Bij ideeën, vertel ons welke behoefte het voor u zou oplossen.\"],\"UEleqp\":[\"Om iemand te promoveren tot lid van de werkruimte, voeg je deze persoon eerst toe aan de organisatie en nodig je daarna opnieuw uit vanuit de werkruimte.\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"li4gmn\":[\"Te veel om hier te tonen. De assistent leest ze in delen door.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Onderwerp succesvol aangemaakt\"],\"Sawj4V\":[\"Onderwerp verwijderd\"],\"xcp3ny\":[\"Onderwerp label\"],\"vQoAht\":[\"Onderwerp bijgewerkt\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"72c5Qo\":[\"Totaal\"],\"kFzhfN\":[\"Nu te betalen totaal\"],\"McSz22\":[\"Getraind\"],\"kMf0pe\":[\"Getraind tot \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training aangemaakt\"],\"p9JlS7\":[\"Trainingsdatum\"],\"1gL8o6\":[\"Training aangevraagd. We nemen contact op om het in te plannen.\"],\"KxpIJA\":[\"Training vereist voor gebruik met hoog risico\"],\"VGao62\":[\"Training bijgewerkt\"],\"miJqd2\":[\"Trainingsverificatie is hier niet beschikbaar.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainingen\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"K3Fxr/\":[\"transcriptfragment\"],\"MzWrba\":[\"Transcriptiefout\"],\"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.\"],\"lhkaAC\":[\"Proef\"],\"hDv2MY\":[\"Proef- en gratis accounts, niet meegerekend in het betalende totaal.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Problemen met inloggen? Neem contact op via support@dembrane.com.\"],\"KDw4GX\":[\"Opnieuw proberen\"],\"u62wQ4\":[\"Probeer het zo meteen opnieuw.\"],\"7dRUDh\":[\"Probeer Agentic\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"sZgR8D\":[\"Probeer het\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"q1ok4Y\":[\"Wil je je aansluiten bij een bestaande organisatie?\"],\"portal.anonymization.disable.confirm\":[\"Uitschakelen\"],\"QOnnq7\":[\"Anonimisering uitschakelen?\"],\"portal.anonymization.disable.warning\":[\"Het uitschakelen van anonimisering terwijl opnames gaande zijn kan onbedoelde gevolgen hebben. Actieve gesprekken worden ook beïnvloed tijdens de opname. Gebruik dit met voorzichtigheid.\"],\"JPF8BN\":[\"Je spraaknotitie wordt omgezet naar tekst\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Typ <0>\",[\"0\"],\" om te bevestigen.\"],\"hHFgGr\":[\"Typ een bericht of druk / voor templates...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"KfLidz\":[\"Typt\"],\"dubg//\":[\"Oekraïens (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"8ryDoK\":[\"Onder je organisatie\"],\"HYUJF4\":[\"Onze nieuwe structuur uitgelegd\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"wF2wqQ\":[\"Onbekende datum\"],\"rIOkYf\":[\"Onbekend lid\"],\"1MTTTw\":[\"Onbekende reden\"],\"JVW+Ic\":[\"Onbeperkt aantal uren\"],\"nWMRxa\":[\"Losmaken\"],\"vSdeRU\":[\"Maak eerst een project los (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Maak eerst een project los (max 3)\"],\"dx+iaL\":[\"Project losmaken\"],\"KuVpz+\":[\"Ongelezen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"nOxIVE\":[\"Zonder tag\"],\"VFYmmV\":[\"Vink een veld uit om het precies te laten zoals het is.\"],\"1hTGn4\":[\"tot \",[\"0\"]],\"wja8aL\":[\"Naamloos\"],\"CoInOF\":[\"Naamloos canvas\"],\"LOM/+N\":[\"Naamloos gesprek\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"ZjKqrC\":[\"Naamloze methodologie\"],\"PZKdTd\":[\"Naamloos rapport\"],\"+TYrZZ\":[\"Tot \",[\"0\"],\" deelnemers\"],\"RHUiSf\":[\"Tot \",[\"0\"],\" deelnemers zijn inbegrepen.\"],\"EkH9pt\":[\"Bijwerken\"],\"H/FUVb\":[\"Updateritme\"],\"x4Xp3c\":[\"bijgewerkt\"],\"Ef5vag\":[\"Bijgewerkt \",[\"0\"],\" · \"],\"+vId6X\":[\"Bijgewerkt \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Bijgewerkt.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Werkt elke \",[\"cadenceMinutes\"],\" minuten bij tot \",[\"0\"],\".\"],\"luwc/s\":[\"Werkt elke \",[\"cadenceMinutes\"],\" minuten bij.\"],\"V7w3WZ\":[\"Notitie voor het dembrane-team bijwerken\"],\"IUC5Nz\":[\"Opgeslagen geheugen bijwerken\"],\"26+vhb\":[\"Projecttags bijwerken\"],\"yM+69W\":[\"Upgraden naar \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade om dit aan de chat toe te voegen\"],\"0s5x5X\":[\"Upgrade om verder te gaan\"],\"3I+le5\":[\"Upgrade om een titel voor dit gesprek te genereren\"],\"GFLM5d\":[\"Upgrade om samenvattingen voor dit gesprek te genereren\"],\"TB+04S\":[\"Upgraden om te ontgrendelen\"],\"A23Uef\":[\"Upgrade je plan om meer rapporten in deze werkruimte te maken.\"],\"5x82bP\":[\"Upgrade je plan om meer werkruimtes in deze organisatie te maken.\"],\"xeIX9S\":[\"Upgrade je werkruimte om audio te downloaden van gesprekken die na de limiet zijn opgenomen\"],\"24kHLh\":[\"Upgrade je werkruimte om samenvattingen van nieuwe gesprekken te bekijken.\"],\"mahIMH\":[\"Upgrade je werkruimte om dit gesprek te bekijken\"],\"3symHf\":[\"Upgrade je werkruimte om transcripties van nieuwe gesprekken te bekijken.\"],\"ONWvwQ\":[\"Uploaden\"],\"V/OOEy\":[\"Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"AIGPM8\":[\"Avatar uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"4Z7WLN\":[\"Uploadlimiet bereikt\"],\"6XdQf/\":[\"Uploadlimiet bereikt. Upgrade je werkruimte.\"],\"QfiWpJ\":[\"Logo uploaden\"],\"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://\"],\"7FaY4u\":[\"Gebruik\"],\"6YK+1q\":[\"Gebruik · \",[\"0\"]],\"9TZVmX\":[\"Gebruik en facturering\"],\"589hpo\":[\"Gebruik en facturering, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Gebruik en facturering, betalingen, partnergrootboek. Elke Directus-beheerder heeft toegang.\"],\"9rNv3P\":[\"Gebruik wordt bijgehouden voor je organisatie. Bekijk het in de organisatie-instellingen.\"],\"RuzOGi\":[\"Gebruik deze cyclus\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"5pcSZ4\":[\"Gebruikt op je facturen. Prijzen zijn exclusief btw.\"],\"vSPQ9U\":[\"Verkeerd adres gebruikt? <0>Registreer opnieuw.\"],\"lcDO4m\":[\"Gebruikersinstellingen\"],\"7sNhEz\":[\"Gebruikersnaam\"],\"1Nt3Kg\":[\"Gebruik standaard dembrane-logo\"],\"R3ZvsJ\":[\"Gebruik je dembrane in de zorg, het onderwijs, werving, kritieke infrastructuur, rechtshandhaving of justitie? Dat zijn risicovolle contexten en vereisen een verplichte training voordat je live gaat.\"],\"08yTaL\":[\"Gebruikt fixture-data.\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"Ttw+e+\":[\"Btw-nummer\"],\"/n0QEP\":[\"Btw-regio\"],\"NBpTc8\":[\"Verificatie op het eindscherm\"],\"participant.modal.verify_prompt.title\":[\"Herinnering om te verifiëren\"],\"participant.banner.verification_required\":[\"Verificatie vereist\"],\"OKGlwv\":[\"Verificatieonderwerpen\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"QDEWii\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"bepwgB\":[\"Geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"uSMfoN\":[\"Verifiëren\"],\"participant.button.verify_prompt.verify\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code controleren\"],\"MBOY4U\":[\"E-mail verifiëren\"],\"w6Mgbs\":[\"Onderwerpen verifiëren\"],\"bl9677\":[\"Verifieert\"],\"iOnm3W\":[\"Je e-mailadres wordt geverifieerd.\"],\"eE0JZ4\":[\"Versie\"],\"IYNSdp\":[\"Versies\"],\"YFvfo/\":[\"Erg stil op dit moment. Check of de microfoon niet uitstaat.\"],\"jpctdh\":[\"Weergave\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"j45ntU\":[\"Uitnodiging bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"rUp0hp\":[\"Je bekijkt \",[\"0\"]],\"P0bGkp\":[\"Zichtbare kolommen\"],\"S3T9oe\":[\"Zichtbaar voor iedereen in \",[\"workspaceName\"]],\"fedNgo\":[\"Zichtbaar voor iedereen in deze werkruimte\"],\"754W/v\":[\"Zichtbaar voor iedereen in deze werkruimte. Laat uit om het persoonlijk te houden.\"],\"RdG06l\":[\"Bezoekersgegevens\"],\"KAXSwC\":[\"Spraak\"],\"Ln6Gy/\":[\"Wachten tot gesprekken zijn afgerond voordat een rapport wordt gegenereerd.\"],\"PVqk8Y\":[\"Loopt de installatie met je door en stelt volgende stappen voor.\"],\"0/aCt7\":[\"Volg live opnames, transcriptievoortgang en fouten in dit project terwijl ze gebeuren.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"kSJ1rO\":[\"We konden je betaalmethode niet belasten\"],\"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.\"],\"mW8QSA\":[\"We konden de pagina die je zocht niet vinden. Misschien is hij verplaatst.\"],\"UStbqQ\":[\"We konden deze organisatie niet laden. Probeer het zo meteen opnieuw.\"],\"viuoK1\":[\"We konden het gebruik van deze organisatie niet laden.\"],\"huDAZ9\":[\"We konden de werkruimtes van deze organisatie niet laden. Sommige opties ontbreken mogelijk. Probeer te vernieuwen.\"],\"Ay7FNv\":[\"We konden dit project niet laden. Controleer je verbinding en probeer het opnieuw.\"],\"Z2y7ap\":[\"We konden deze werkruimte niet laden. Probeer het zo meteen opnieuw.\"],\"zPjLTr\":[\"We konden het gebruik van deze werkruimte niet laden.\"],\"y5BiQM\":[\"We konden je organisaties niet laden. Controleer je verbinding en probeer het opnieuw.\"],\"+jHAFm\":[\"We konden je openstaande uitnodigingen niet laden. Probeer het zo meteen opnieuw.\"],\"gNHeDV\":[\"We konden je betaalmethode niet bijwerken. Je oude methode is nog actief. Probeer het opnieuw.\"],\"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.\"],\"GC6z0d\":[\"We hebben een verificatielink naar <0>\",[\"email\"],\" gestuurd. Klik erop om het instellen van je account af te ronden.\"],\"9i8m90\":[\"We hebben je een verificatielink gestuurd. Klik erop om het instellen van je account af te ronden.\"],\"S+HYhm\":[\"We konden je methode nog steeds niet belasten. Werk deze bij en probeer het opnieuw.\"],\"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.\"],\"/621Bs\":[\"We horen graag van u. Of u nu een idee heeft voor iets nieuws, een bug heeft gevonden, een vertaling heeft gezien die niet klopt, of gewoon wilt delen hoe het gaat.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We hebben organisaties toegevoegd zodat je projecten kunt ordenen en delen met collega's. Alles wat je eerder had, is er nog. We hebben alleen een naam voor je organisatie nodig.\"],\"Yc3tsw\":[\"We hebben een verificatielink naar <0>\",[\"0\"],\" gestuurd. Open de e-mail en klik op de link om verder te gaan.\"],\"fylXkT\":[\"Zwak netwerk\"],\"7cUq8g\":[\"Zwak wachtwoord\"],\"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.\"],\"3rkRxG\":[\"Webhooks zijn niet ingeschakeld voor deze omgeving.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"ZVR4oQ\":[\"Welkom terug, \",[\"displayName\"]],\"OM+lH0\":[\"Welkom bij dembrane\"],\"P3EAlh\":[\"Welkom bij dembrane chat. Selecteer de gesprekken die je wilt analyseren en vraag dan naar details, citaten en samenvattingen.\"],\"Fx+f0A\":[\"Welkom bij dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welkom, \",[\"displayName\"]],\"klH6ct\":[\"Welkom!\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"nCQNTt\":[\"Wat wil je te weten komen?\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"WSxXHT\":[\"Waarvoor wil je dembrane gebruiken?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"B5v8nx\":[\"Wat er verstuurd wordt\"],\"T91psD\":[\"Wat zou hieraan anders moeten zijn?\"],\"pVIWuw\":[\"Wat moet ECHO analyseren of genereren uit de gesprekken?\"],\"yWXuOc\":[\"Welke thema's kwamen naar voren in de gesprekken in dit project?\"],\"LfRBcL\":[\"Welke thema's kwamen naar voren?\"],\"pd3Yt/\":[\"Wat dit project deze cyclus verbruikt.\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"3ePd3I\":[\"Wat is er nieuw\"],\"k7eeqO\":[\"Wat is de belangrijkste reden?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"myUTw1\":[\"Wanneer er een rapport is gegenereerd voor het project\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"KmUKwU\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Anonieme gesprekken deactiveren ook audio-afspelen, audio-download en hertranscriptie om de privacy van deelnemers te beschermen. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"MEmr1I\":[\"Wanneer je het gesprek afmaakt, worden deelnemers die nog niet hebben geverifieerd gevraagd om te verifiëren of over te slaan\"],\"BaiSBQ\":[\"Staat dit aan, dan kan het supportteam van dembrane deze werkruimte in om je te helpen. Hun toegang stopt automatisch na 24 uur.\"],\"SgIrVC\":[\"Zodra deelnemers de QR-code scannen, verschijnen ze hier en bewegen ze live door de fases.\"],\"/dAMl1\":[\"Wanneer moet het rapport gegenereerd worden?\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"JwZibo\":[\"Waar wil je naartoe?\"],\"msYPX5\":[\"Waar wil je beginnen?\"],\"kqHiF1\":[\"Bij welke organisatie hoort deze werkruimte?\"],\"lwFEDE\":[\"Welke organisatie is eigenaar van de data van deze werkruimte? Dit bepaalt de data- en compliancecontext.\"],\"wZht80\":[\"Wie dit project kan zien en eraan kan samenwerken.\"],\"P9WL8r\":[\"Wie kan dit project zien?\"],\"QDRAyJ\":[\"Wie in je team een actuele trainingslicentie heeft. Boek een training via de Training-weergave van je organisatie.\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"EpZ9+F\":[\"wens\"],\"QdkkH5\":[\"Met externe klanten\"],\"KWhZCH\":[\"Binnen mijn organisatie\"],\"qJ0J+6\":[[\"0\"],\" stappen doorlopen\"],\"B6dzt1\":[\"Bezig met je antwoord...\"],\"NwM/eB\":[\"werkruimte\"],\"pmUArF\":[\"Werkruimte\"],\"VmdouC\":[\"Werkruimte-account\"],\"Zqthj7\":[\"Werkruimte-acties\"],\"ZBKhLV\":[\"Werkruimte aangemaakt.\"],\"1hyEG5\":[\"Werkruimtedata nog niet geladen. Probeer het opnieuw.\"],\"UlhdTP\":[\"Werkruimte verwijderd\"],\"Ep8k4i\":[\"Werkruimte is vol\"],\"P29tQ5\":[\"Werkruimtelimiet bereikt\"],\"Y0Fj4S\":[\"Werkruimtelogo\"],\"CozWO1\":[\"Naam van de werkruimte\"],\"dg0Efy\":[\"Naam van de werkruimte. Wordt automatisch opgeslagen.\"],\"wHWiPE\":[\"Werkruimte hernoemd\"],\"XAW6X5\":[\"Werkruimte-instellingen | dembrane\"],\"wowvFW\":[\"Gast met alleen toegang tot de werkruimte. Niet toegevoegd aan de organisatie.\"],\"JKU2hI\":[\"werkruimtes\"],\"pmt7u4\":[\"Werkruimtes\"],\"YRelrK\":[\"Werkruimtes apart gefactureerd\"],\"vMCu+n\":[\"Werkruimtes in dit account\"],\"XLYmK5\":[\"Werkruimtes in deze organisatie waar je nog geen lid van bent. Als admin kun je jezelf toevoegen om ze te beheren.\"],\"lBVr4U\":[\"Werkruimtes die met je zijn gedeeld\"],\"++IGvT\":[\"Werkruimtes waar je lid van kunt worden\"],\"JEHySj\":[\"Werkruimtes waarvoor je bent uitgenodigd. Accepteer om te gaan samenwerken.\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"Exc/LI\":[\"Verkeerd adres? E-mail wijzigen\"],\"l75CjT\":[\"Ja\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"av/PD9\":[\"jou\"],\"kWJmRL\":[\"Jij\"],\"VHG+Js\":[\"Je hebt al toegang tot deze werkruimte.\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"rKP2WF\":[\"Jij bent de data-eigenaar\"],\"EDIsb+\":[\"Je kunt dit altijd aanpassen in de instellingen.\"],\"fzU5ll\":[\"Je kunt dit later aanpassen in de projectinstellingen.\"],\"uGP87g\":[\"Je kunt dit later aanpassen in de werkruimte-instellingen.\"],\"WS92Fk\":[\"Je kunt wegnavigeren en later terugkomen. Je rapport wordt op de achtergrond verder gegenereerd.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"+IqtlU\":[\"Je kunt ze later opnieuw uitnodigen vanuit elke werkruimte.\"],\"ORA5nz\":[\"U kunt het hieronder opnieuw proberen.\"],\"96ERwL\":[\"Je kunt nog geen werkruimte aanmaken\"],\"bHCu+u\":[\"Je kunt jezelf niet uitnodigen.\"],\"vj8JjD\":[\"Je hebt geen toestemming om te transcriberen in dit project.\"],\"UjkUrJ\":[\"Je hebt geen toegang tot deze werkruimte.\"],\"3x5+PU\":[\"Je hebt geen rechten om werkruimtes aan te maken in die organisatie. We vallen terug op je primaire organisatie.\"],\"fkXBUO\":[\"Je hebt geen rechten om uit te nodigen voor een werkruimte in deze organisatie.\"],\"QYdixc\":[\"Je hebt een openstaande uitnodiging\"],\"ombH/9\":[\"Je hebt een openstaande uitnodiging voor \",[\"0\"],\". Open deze om lid te worden van de organisatie.\"],\"8v7ix0\":[\"Je hebt een openstaande uitnodiging voor \",[\"0\"],\". De beheerder moet een plek vrijmaken voordat je lid kunt worden.\"],\"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.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"fopZ8o\":[\"Je hebt supporttoegang tot deze werkruimte. Deze stopt automatisch op \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"Je bent nog geen lid van een werkruimte in deze organisatie.\"],\"participant.modal.verify_prompt.description\":[\"Je hebt nog geen resultaten geverifieerd. Wil je verifiëren voordat je afsluit?\"],\"PjAkjf\":[\"Je hebt de werkruimte verlaten\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"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.\"],\"t6Ti2e\":[\"Je hebt een uitnodiging van een collega nodig\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"MLw3ff\":[\"Je hebt deze run gestopt.\"],\"N/N2Av\":[\"Je wordt als admin toegevoegd aan \",[\"0\"],\" privéwerkruimtes. Ze verschijnen daarna meteen in je zijbalk.\"],\"cehffY\":[\"Je wordt als admin toegevoegd aan \",[\"singleName\"],\". Die verschijnt daarna meteen in je zijbalk.\"],\"OR5x71\":[\"Al je projecten staan voor je klaar.\"],\"hu3KYo\":[\"Je komt in een chat waar dembrane je helpt het project vorm te geven, voordat je gesprekken verzamelt.\"],\"OQI3hm\":[\"Je verliest toegang tot deze werkruimte.\"],\"bX2FeG\":[\"Je verliest toegang tot deze werkruimte. Projecten die je hebt gemaakt blijven; je rol hier wordt verwijderd.\"],\"participant.verify.instructions.receive.artefact\":[\"Je ontvangt zo meteen \",[\"objectLabel\"],\" om te verifiëren.\"],\"gDdsRc\":[\"Je bevestigt je nieuwe betaalmethode op het volgende scherm. Er wordt niets in rekening gebracht, het bevestigt alleen de nieuwe kaart.\"],\"vkNkB8\":[\"Je staat op het punt je eigen rol te wijzigen naar <0>\",[\"0\"],\". Je verliest direct toegang tot de instellingen van de werkruimte, uitnodigingen en ledenbeheer.\"],\"KS7iJH\":[\"Je bent helemaal bij.\"],\"ADMWt4\":[\"Je bent al lid van \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"Je zit al in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"Je bent een externe medewerker in deze organisatie. Open hieronder een van de werkruimtes die met je zijn gedeeld.\"],\"bbvEPE\":[\"Je zit erin\"],\"LfpEZ9\":[\"Je logt in met het verkeerde e-mailadres\"],\"PVUJ6+\":[\"Je zit nog in geen enkele organisatie. Maak een werkruimte om een organisatie te starten, of vraag een lid om een uitnodiging.\"],\"Y3LcET\":[\"Je maakt op dit moment deel uit van geen enkele organisatie.\"],\"ta24bs\":[\"Je zit op \",[\"0\"],\", maar er is geen actief abonnement. Neem een abonnement om facturering in te stellen en het te behouden.\"],\"FQdXKc\":[\"Je hergebruikt plekken waarvoor je deze periode al hebt betaald (iemand is vertrokken), dus daar wordt nu niets voor in rekening gebracht. De verlenging houdt er rekening mee.\"],\"HnqO9D\":[\"Je bent de enige beheerder. Maak iemand anders beheerder voordat je je rol wijzigt.\"],\"AcL9Ou\":[\"Je bent uitgenodigd om samen te werken met \",[\"0\"],\" organisaties. We nemen je mee zodra je doorgaat.\"],\"cZ4+ZH\":[\"Je bent uitgenodigd om samen te werken met <0>\",[\"0\"],\". We brengen je er zo naartoe.\"],\"ePJQ19\":[\"Je bent uitgenodigd voor \",[\"0\"],\" organisaties. We nemen je mee zodra je doorgaat.\"],\"RTgVkc\":[\"Je bent uitgenodigd voor <0>\",[\"0\"],\". We brengen je er zo naartoe.\"],\"189Q0c\":[\"Je hebt de limiet van het gratis plan voor deze chat bereikt. Upgrade om verder te chatten.\"],\"PBlwH8\":[\"Je hebt de berichtenlimiet van het gratis plan bereikt. Vraag een beheerder van de organisatie om te upgraden.\"],\"YU91eY\":[\"Je hebt de berichtenlimiet van het gratis plan bereikt. Upgrade om verder te chatten.\"],\"GP7h+t\":[\"Je hebt je samenvattingslimiet bereikt\"],\"WfEaJc\":[\"Je hebt je transcriptielimiet bereikt\"],\"o/5HQF\":[\"Je hebt alle 10 uur van de pilot gebruikt. Tools voor hosts (Chat, rapporten, analyse, exports) staan op pauze.\"],\"Eddneo\":[\"Je toegang tot \",[\"0\"],\" stopt op \",[\"endDate\"],\" en gaat daarna naar Free. Neem een abonnement om hem te behouden.\"],\"M5ub3j\":[\"Jouw toegang\"],\"WIv0oz\":[\"Jouw toegang tot \",[\"0\"],\" eindigde op \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Jouw goedkeuring helpt ons begrijpen wat je echt denkt!\"],\"m4qbPC\":[\"Jouw merk op elk scherm van deelnemers.\"],\"wmkjMv\":[\"Je browser blokkeert de microfoon. Geef toegang en probeer het opnieuw.\"],\"wSfp0e\":[\"Je huidige abonnement\"],\"mmGBWT\":[\"Jouw gegevens\"],\"lRpeom\":[\"Je concept wordt niet opgeslagen.\"],\"t4FxxP\":[\"Je e-mailadres is al geverifieerd\"],\"CqsrQF\":[\"Je e-mailadres is geverifieerd. Log in om door te gaan.\"],\"GjqC/j\":[\"Je e-mailadres is geverifieerd. We brengen je naar de loginpagina.\"],\"SR/yCW\":[\"Je gratis plan bevat één gesprek. Upgrade om de rest te openen.\"],\"DM8bIO\":[\"Je gratis plan bevat één rapport. Upgrade om er meer te maken.\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"Yo3xGL\":[\"Je uitnodiging staat nog open. Probeer het opnieuw zodra de beheerder een plek vrijmaakt of de werkruimte upgradet.\"],\"aCpo/d\":[\"Je uitnodiging is al geaccepteerd, maar je bent geen lid meer van \",[\"resolvedWorkspaceName\"],\". Vraag de beheerder om je opnieuw uit te nodigen.\"],\"/Mqhsc\":[\"Je laatste betaling is niet gelukt. Je abonnement blijft actief. Werk je betaalmethode bij of probeer de betaling opnieuw om het recht te zetten.\"],\"1Uvqtx\":[\"De generatie van je laatste rapport is geannuleerd. Je meest recente voltooide rapport wordt getoond.\"],\"JgZh6f\":[\"Je logo is nog actief, maar kan op dit niveau niet worden gewijzigd.\"],\"q8yluz\":[\"Uw naam\"],\"LlzdZF\":[\"Je organisatie zit standaard op het gratis abonnement. Eén abonnement dekt elke werkruimte, per plek gefactureerd zodra je upgradet.\"],\"HnzTai\":[\"Je organisatie staat voor je klaar. Klik op doorgaan om mee te doen.\"],\"jlKzXO\":[\"Je organisatie of bedrijf\"],\"KoLVip\":[\"Je betaling is niet gelukt. Werk je betaalmethode bij om door te gaan.\"],\"INyMTs\":[\"Je betaling is nog niet voltooid. Ga verder waar je was gebleven om je abonnement te activeren. Er wordt niet twee keer betaald.\"],\"jqpO7d\":[\"Je betaling wordt nog verwerkt. Ververs zo om te controleren.\"],\"+3q2fE\":[\"Je betaalmethode is bijgewerkt.\"],\"xoMBWJ\":[\"Het bijwerken van je betaalmethode wordt nog verwerkt.\"],\"URFO7+\":[\"Je abonnement eindigt aan het einde van de periode.\"],\"6ba1MP\":[\"Je abonnement eindigt op \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Je abonnement is actief.\"],\"Zn38Tr\":[\"Je abonnement is weer actief. Je behoudt je huidige periode.\"],\"QIQh3n\":[\"Je abonnement is inactief. Activeer het opnieuw om leden toe te voegen.\"],\"PB21Rh\":[\"Je abonnement wordt beheerd door dembrane. Neem contact op met je accountmanager om wijzigingen te maken.\"],\"7IFghD\":[\"Je abonnement wordt niet verlengd. Je houdt toegang tot het einde van de periode.\"],\"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\"],\"lWeANa\":[\"Je werkruimte staat klaar. Klik op doorgaan om samen te werken.\"],\"crrqaX\":[\"jr\"],\"ACjxWW\":[\"Zoom\"]}")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.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"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\"],\"XGun3K\":[\"(directe toegang tot werkruimte)\"],\"ls1N1w\":[\"(ontbreekt)\"],\"B/gRsg\":[\"(geen)\"],\"NzluOx\":[\"(optioneel)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(onbekend)\"],\"dDUgzP\":[\"(Jij)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" werkruimte)\"],\"other\":[\"(\",\"#\",\" werkruimtes)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" overeenkomst\"],\"other\":[\"#\",\" overeenkomsten\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio gestopt\"],\"other\":[\"#\",\" audio gestopt\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek kon niet aan deze chat worden toegevoegd.\"],\"other\":[\"#\",\" gesprekken konden niet aan deze chat worden toegevoegd.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek wordt hiermee ook verborgen.\"],\"other\":[\"#\",\" gesprekken worden hiermee ook verborgen.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" lid\"],\"other\":[\"#\",\" leden\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" betaling\"],\"other\":[\"#\",\" betalingen\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projecten\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" geselecteerd\"],\"other\":[\"#\",\" geselecteerd\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" in transcriptie\"],\"other\":[\"#\",\" in transcriptie\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" met fouten\"],\"other\":[\"#\",\" met fouten\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" woord toegevoegd\"],\"other\":[\"#\",\" woorden toegevoegd\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" woord verwijderd\"],\"other\":[\"#\",\" woorden verwijderd\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focus op \",\"#\",\" gesprek:\"],\"other\":[\"Focus op \",\"#\",\" gesprekken:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Verplaats \",\"#\",\" project naar een andere werkruimte.\"],\"other\":[\"Verplaats \",\"#\",\" projecten naar een andere werkruimte.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Laat zien wat er verandert (\",\"#\",\" veld)\"],\"other\":[\"Laat zien wat er verandert (\",\"#\",\" velden)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek in gebruik:\"],\"other\":[\"#\",\" gesprekken in gebruik:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (standaard)\"],\"r/Wlfo\":[[\"0\"],\" / plek / maand × \",[\"1\"],\", jaarlijks gefactureerd. Exclusief btw.\"],\"bBa8T+\":[[\"0\"],\" / plek × \",[\"1\"],\". Exclusief btw.\"],\"eysOsc\":[[\"0\"],\" / plek × \",[\"1\"],\". Wordt na deze periode niet meer in rekening gebracht.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" werkruimtes, \",[\"2\"],\" actief\"],\"xfMOtJ\":[[\"0\"],\" over alles\"],\"RKutZY\":[[\"0\"],\" actief\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"q87k+2\":[[\"0\"],\" toegevoegd vanuit je organisatie\"],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" verwijderd\"],\"6Re9LE\":[[\"0\"],\" van dembrane\"],\"K6OQ3u\":[[\"0\"],\" uur / maand\"],\"hvF/g5\":[[\"0\"],\" uur totaal\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"nqIXFG\":[[\"0\"],\" van \",[\"1\"],\" leden zijn getraind.\"],\"uQcaBv\":[[\"0\"],\" van \",[\"1\"],\" getraind\"],\"3wr3U9\":[[\"0\"],\" plek(ken) · \",[\"1\"],\" nu · +\",[\"2\"],\"/\",[\"cadence\"],\" bij verlenging\"],\"ipdYtj\":[[\"0\"],\" plek(ken) deze periode betaald en ongebruikt. Nodig iemand uit om ze tot de verlenging gratis te vullen.\"],\"q9vtxh\":[[\"0\"],\" plekken\"],\"Oa8YFO\":[[\"0\"],\" plekken inbegrepen\"],\"z9suu0\":[[\"0\"],\" totaal stijgt naar \",[\"1\"],\" zodra \",[\"pendingInvites\"],\" openstaande \",[\"2\"],\" geaccepteerd\"],\"1/+09d\":[[\"0\"],\" weergaven\"],\"Sx2eFn\":[[\"0\"],\" werkruimtes · \",[\"1\"],\" betaalde plekken · \",[\"2\"],\" gratis waarnemers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" werkruimtes, \",[\"1\"],\" plekken gedeeld\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", werkruimte-id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" persoon\"],\"other\":[\"#\",\" personen\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" persoon\"],\"other\":[\"#\",\" personen\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" gratis\"],\"other\":[\"#\",\" gratis\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" gesprekken • Bewerkt \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"lEaS4c\":[[\"count\"],\" items in geschiedenis\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% korting toegepast\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" gesprek heeft nog geen transcript, dus het is weggelaten.\"],\"other\":[\"#\",\" gesprekken hebben nog geen transcript, dus ze zijn weggelaten.\"]}]],\"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.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" adressen hebben aandacht nodig\"],\"GxhS2s\":[[\"inviterName\"],\" heeft je uitgenodigd voor \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Verwijder het \",\"#\",\" project in deze werkruimte voordat je de werkruimte zelf verwijdert.\"],\"other\":[\"Verwijder de \",\"#\",\" projecten in deze werkruimte voordat je de werkruimte zelf verwijdert.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% korting\"],\"YtOXS1\":[\"Gesprek van \",[\"name\"]],\"lJ6xri\":[\"Transcriptfragment van \",[\"name\"]],\"P9UcSP\":[[\"names\"],\" en nog \",[\"extra\"]],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" personen meer\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" gesprek paste niet in deze chat. Start een nieuwe chat voor de rest.\"],\"other\":[\"#\",\" gesprekken pasten niet in deze chat. Start een nieuwe chat voor de rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" uitnodiging(en) in afwachting. Telt mee zodra geaccepteerd.\"],\"lEeV+7\":[[\"person\"],\" verliest toegang tot elke werkruimte in deze organisatie. Directe uitnodigingen voor werkruimtes blijven intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Gericht op \",\"#\",\" gesprek\"],\"other\":[\"Gericht op \",\"#\",\" gesprekken\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"#\",\" gesprek in gebruik\"],\"other\":[\"#\",\" gesprekken in gebruik\"]}]],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"/+py6Q\":[[\"seats\"],\" plekken\"],\"ArGmEy\":[[\"selectedCount\"],\" van \",[\"totalCount\"],\" velden geselecteerd. Accepteren geldt alleen voor de aangevinkte velden.\"],\"odzwX/\":[[\"sent\"],\" uitnodigingen verstuurd\"],\"dmKaRr\":[[\"sentCount\"],\" uitnodigingen verstuurd.\"],\"qzj8O/\":[[\"tag\"],\" (vooraf gekozen)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" actief\"],\"other\":[\"#\",\" actief\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisatie\"],\"other\":[\"#\",\" organisaties\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"Nc+vAv\":[\"/plek/mnd\"],\"lDyo+I\":[\"/zetel/mnd · jaarlijks gefactureerd\"],\"u5M/5B\":[\"/zetel/mnd · maandelijks gefactureerd\"],\"RuXuwk\":[\"+\",[\"0\"],\" meer\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"VAhv7y\":[\"€\",[\"0\"],\" per stuk, boven de inbegrepen \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra deelnemer\"],\"+Tssgi\":[\"€150 / zetel / maand\"],\"NPPhXn\":[\"€20 / zetel / maand\"],\"XlCmuS\":[\"€75 / zetel / maand\"],\"LeFXS1\":[\"0 Aspecten\"],\"r3PXp+\":[\"1 adres vraagt om aandacht\"],\"N0QWsI\":[\"1 u opname\"],\"2BWxOx\":[\"1 item in geschiedenis\"],\"5pm7gt\":[\"1 weergave\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"WehR9U\":[\"2 maanden geleden\"],\"L9boOH\":[\"2. Wanneer een gesprek of rapport plaatsvindt, sturen we de data automatisch naar je URL\"],\"VaA9mu\":[\"24 uur\"],\"7ZrpGs\":[\"3 dagen\"],\"lxBOZP\":[\"3 maanden geleden\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"34Qhax\":[\"8 uur\"],\"aFDk6y\":[\"Een paar korte vragen en je bent binnen.\"],\"Ddr+Kq\":[\"Een app_user-id van dembrane-personeel. De server controleert het @dembrane.com-adres.\"],\"iqgpeQ\":[\"Bij een downgrade gelden de downgrade-effecten uit de matrix en krijgen de admins van de werkruimte bericht. Bij een betaald tier gaat het account over op facturatie via dembrane.\"],\"thilZ0\":[\"Een downgrade beperkt functies direct.\"],\"wsTrfq\":[\"Zodra de eerste versie klaar is, verschijnt die hier.\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"f6HTzO\":[\"Een live pagina in je Bibliotheek die zichzelf opnieuw opbouwt zolang je sessie loopt. Vroege beta: dit kan veranderen of verdwijnen.\"],\"z9VxrW\":[\"Er wordt automatisch een nieuw rapport gegenereerd en gepubliceerd op het geplande tijdstip.\"],\"0de1wk\":[\"een organisatiebeheerder\"],\"EfpBny\":[\"Een organisatiebeheerder kan deze upgrade aanvragen. Vraag iemand met de beheerdersrol.\"],\"TKd+Fa\":[\"Een project bevat alles voor één onderwerp. Deel de link met deelnemers, verzamel stemmen en laat dembrane ze omzetten in inzichten.\"],\"sG+9v8\":[\"Er wordt al een rapport gegenereerd voor dit project. Wacht tot het klaar is.\"],\"Ky83tq\":[\"Een zetel is één lid. Voeg leden toe of verwijder ze in het tabblad Mensen van elke werkruimte; je volgende afschrijving past zich automatisch aan.\"],\"hyYKSp\":[\"Een zetel is één lid. Zetels blijven beschikbaar tot het abonnement eindigt; wijzigingen worden niet in rekening gebracht.\"],\"SpaKQm\":[\"Een aparte context voor data-eigendom en facturering. Je kunt deze later overdragen aan die organisatie zonder data te verplaatsen.\"],\"GhjsDN\":[\"Een korte tekst die op het organisatieoverzicht wordt getoond.\"],\"F9QjSt\":[\"Een korte notitie over waar dit project over gaat. Je kunt dit later aanpassen.\"],\"j2mO8+\":[\"een werkruimte\"],\"kO7Ugp\":[\"Over de voorgestelde projectupdate: \",[\"hostNote\"]],\"2rz0sA\":[\"Over jou\"],\"g3UF2V\":[\"Accepteren\"],\"Q74FZp\":[\"Accepteren en deelnemen\"],\"JAvG0l\":[\"Voorwaarden geaccepteerd\"],\"LuXP9q\":[\"Toegang\"],\"qLcf0w\":[\"Toegang stopt op\"],\"18D/K9\":[\"Toegang verleend voor 24 uur.\"],\"HlgFV1\":[\"Toegangsgeschiedenis\"],\"6NLtuJ\":[\"Toegangsverzoek goedgekeurd\"],\"RpdQvB\":[\"Toegangsverzoek geweigerd\"],\"FmhC27\":[\"Toegangsverzoek verlopen\"],\"pyPxxw\":[\"Toegangsverzoek ingetrokken\"],\"ekMaJX\":[\"Toegangsverzoeken\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account en beveiliging\"],\"g9NChz\":[\"Accountmanager\"],\"/8wINa\":[\"Accountmanager toegewezen.\"],\"Q+M1Ej\":[\"Account overgezet naar self-service facturatie.\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"Euv0O8\":[\"Account overgezet naar facturatie via dembrane.\"],\"A7C5YV\":[\"Account op beheerd gezet.\"],\"0qqrUz\":[\"Gefactureerde accounts\"],\"L5gswt\":[\"Actie door\"],\"7U5F+i\":[\"Actie nodig\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"F6pfE9\":[\"Actief\"],\"3976bh\":[\"Actief · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"m16xKo\":[\"Toevoegen\"],\"4USg1N\":[[\"0\"],\" toevoegen aan \",[\"1\"],\" als <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Voeg een lid toe en kies de toegang.\"],\"o1Svup\":[\"Voeg een naam en een prompt toe voordat je dit toepast.\"],\"kKuKkg\":[\"Voeg een naam, beschrijving en framing toe.\"],\"5xxrhm\":[\"Notitie toevoegen\"],\"Cf2umO\":[\"Voeg een projectdoel toe voordat je opslaat.\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"L1uMzn\":[\"Nog een toevoegen\"],\"LvDRbs\":[\"Toevoegen via e-mail\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"8T7YRB\":[\"Voeg eerst gesprekken toe aan je project\"],\"LL1rvo\":[\"Aangepast onderwerp toevoegen\"],\"0qHnFM\":[\"Voeg doeltekst toe voordat je dit toepast.\"],\"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.\"],\"ymW+mN\":[\"Voeg mensen uit je organisatie toe\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"b6Sm+u\":[\"Toevoegen aan \",[\"0\"],\"?\"],\"jo1zkp\":[\"Toevoegen aan Chat\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"P4Egjx\":[\"Toevoegen aan werkruimtes\"],\"6Xm4X2\":[\"Onderwerp toevoegen\"],\"AHaRrL\":[\"Vertalingen toevoegen\"],\"yFRVHT\":[\"Verificatieprompt toevoegen\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"hp8OtS\":[\"Toegevoegd\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"uVX6Vk\":[\"Toegevoegd aan werkruimte\"],\"yg5kon\":[\"Je bent toegevoegd aan \",[\"okCount\"],\" werkruimtes\"],\"ZncK2m\":[\"Je bent toegevoegd aan \",[\"okCount\"],\". \",[\"0\"],\" konden niet worden toegevoegd, probeer opnieuw.\"],\"lQmOCQ\":[\"Je bent toegevoegd aan 1 werkruimte\"],\"54QrMC\":[\"Als je er \",[\"pendingCount\"],\" toevoegt, gaat deze werkruimte over de zetellimiet. Extra zetels worden gefactureerd tegen het tarief van de werkruimte.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"Du6bPw\":[\"Adres\"],\"NY/x1b\":[\"Adresregel 1\"],\"cormHa\":[\"Adresregel 2\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"U3pytU\":[\"Beheerder\"],\"84oArf\":[\"Beheerdersdashboard\"],\"HJ47wa\":[\"Hier beheerder via organisatierol\"],\"uYQEe4\":[\"Beheerder, dembrane\"],\"eC58+P\":[\"Beheerders\"],\"CLlKPV\":[\"Beheerders hebben toegang tot elke werkruimte in deze organisatie. Leden en externen zien alleen de werkruimtes waartoe ze toegang hebben gekregen.\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"ftJZVq\":[\"Agent-run mislukt\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Tool-gestuurd uitvoering\"],\"I1JKlv\":[\"Agentische chat\"],\"N40H+G\":[\"Alles\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"zG6Ooi\":[\"Alle projecten\"],\"ynXPFB\":[\"Alles gelezen\"],\"W/4/mV\":[\"Alle plekken in dit niveau zijn bezet. Verwijder een lid of externe, of upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"XQ7aEI\":[\"Alle plekken zijn bezet. Maak een plek vrij of upgrade om meer mensen uit te nodigen.\"],\"X3FPsl\":[\"Alle plekken bezet\"],\"NGO2th\":[\"Alle sjablonen\"],\"IOEBQh\":[\"Alle niveaus\"],\"dYoI9C\":[\"Alle zichtbare gesprekken geselecteerd\"],\"AWdiC+\":[\"Alle werkruimtes\"],\"Ro8+2I\":[\"Geef dembrane-medewerkers toegang tot deze werkruimte voor support\"],\"3goDnD\":[\"Sta deelnemers toe om met behulp van de link nieuwe gesprekken te starten\"],\"sV+uzv\":[\"Bijna klaar\"],\"bruUug\":[\"Bijna klaar\"],\"gwPMvj\":[\"Al lid\"],\"H7cfSV\":[\"Al toegevoegd aan dit gesprek\"],\"cFO+NU\":[\"Heb je al een account? Log in\"],\"xNyrs1\":[\"Al in context\"],\"lLTpsm\":[\"Al uitgenodigd\"],\"3lBGEC\":[\"Al gebruikt in deze chat\"],\"hehnjM\":[\"Bedrag\"],\"nIUIH3\":[\"Bedragen zijn standaard het aantal plekken van het account maal de prijs per plek. Pas dit alleen aan wanneer dat nodig is.\"],\"2G0LKZ\":[\"Een extra training is verplicht voor teams die dembrane gebruiken in situaties die onder de EU AI Act als hoog risico worden aangemerkt.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Er ging iets onverwachts mis. Opnieuw laden of teruggaan naar home helpt meestal.\"],\"F4cOH1\":[\"Analyse taal\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Meldingen\"],\"77TKVS\":[\"Jaarlijkse facturering\"],\"J8yrvq\":[\"Transcripten anonimiseren\"],\"M8cgTa\":[\"Transcript anonimiseren\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"YdiKaK\":[\"anoniem gesprek\"],\"iPiP6k\":[\"Anoniem gesprek\"],\"D9CFV5\":[\"Anoniem\"],\"Pg5/xn\":[\"Anonieme deelnemer\"],\"SEllfL\":[\"Anonieme bezoeker\"],\"t2jB92\":[\"Een andere admin of eigenaar moet je herstellen.\"],\"6GojWN\":[\"Elke tag\"],\"FnbCx1\":[\"Iedereen in je organisatie kan deze werkruimte vinden. Admins kunnen meteen meedoen, leden kunnen toegang aanvragen.\"],\"N1Wkmw\":[\"Is er iets dat we beter hadden kunnen doen?\"],\"sMMWxH\":[\"Wil je nog iets toevoegen\"],\"aAIQg2\":[\"Weergave\"],\"9+QMn9\":[\"Toegepast. Het canvas toont nu dit ontwerp en houdt het actueel.\"],\"HMzKuc\":[\"Past deze formulering en het verversgedrag toe op het bestaande canvas.\"],\"DB8zMK\":[\"Toepassen\"],\"4TwsNi\":[\"Sjabloon toepassen\"],\"5swDY2\":[\"Bijna een limiet bereikt deze maand\"],\"z0ccuc\":[\"Bijna aan de limiet: \",[\"0\"],\" / 32.000 tekens\"],\"Z7ZXbT\":[\"Goedkeuren\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"m14CS3\":[\"Goedkeuren voor 24 uur\"],\"1kA9Tv\":[\"Supporttoegang goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"uqhbrg\":[\"Weet je zeker dat je deze chat wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"yrk3z3\":[\"Weet je zeker dat je dit aangepaste onderwerp wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"ELQ+fw\":[\"Weet je zeker dat je dit rapport wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"e3BGhi\":[\"Weet u zeker dat u dit sjabloon wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"participant.modal.finish.message.text.mode\":[\"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.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"ZmeZPn\":[\"Weet je zeker dat je je avatar wilt verwijderen?\"],\"wQ5jM6\":[\"Weet je zeker dat je je aangepaste logo wilt verwijderen? Het standaard dembrane-logo wordt in plaats daarvan gebruikt.\"],\"F+vBv0\":[\"Stel vraag\"],\"VttPAe\":[\"Vragen | dembrane\"],\"hC67sJ\":[\"Vraag een organisatie-admin om deze upgrade aan te vragen.\"],\"Djkxtl\":[\"Stel een vraag over de gesprekken in dit project, of vraag hulp bij het opzetten ervan. Elke wijziging wordt eerst ter beoordeling voorgesteld en er wordt niets opgeslagen totdat je het goedkeurt.\"],\"2QOQAV\":[\"Vraag een admin van de werkruimte om een uitnodiging, of kies een andere werkruimte uit je lijst.\"],\"jPTnVt\":[\"Stel vragen over de app.\"],\"7edAaq\":[\"Hierover vragen\"],\"9pDK3A\":[\"Vraag iets over je gesprekken...\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"KmS8XG\":[\"Vraag het in de chat als je een live beeld van de gesprekken wilt. Het eerste canvas komt hier te staan.\"],\"6S+qQR\":[\"Vraag deelnemers om hun e-mailadres\"],\"I+vZ9W\":[\"Vraag deelnemers om hun naam\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kaEPzR\":[\"Toewijzen\"],\"d/bvvp\":[\"Assistent\"],\"MPY6SL\":[\"Assistent-context\"],\"aYfeOI\":[\"Assistent-geheugen\"],\"bU39dx\":[\"Minstens 8 tekens\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"quMOkF\":[\"Aan het einde van deze periode\"],\"FA2/EC\":[\"Geverifieerde artefacten toevoegen\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio-download niet beschikbaar voor anonieme gesprekken\"],\"N2tS3I\":[\"Audio komt binnen\"],\"SLvg/d\":[\"Audio-afspelen niet beschikbaar voor anonieme gesprekken\"],\"IOBCIN\":[\"Audio-tip\"],\"OCG9c0\":[\"Er kwam audio binnen, maar dat is gestopt. De verbinding is misschien weggevallen of de telefoon is vergrendeld.\"],\"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\"],\"8kH9im\":[\"Automatische titels en concepttags\"],\"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.\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"FZA9K3\":[\"Beschikbaar vanaf innovator.\"],\"t4AO8x\":[\"Beschikbaar vanaf innovator en hoger. Upgrade om te ontgrendelen.\"],\"KKfW2W\":[\"Avatar verwijderd\"],\"jSKImf\":[\"Avatar bijgewerkt\"],\"vhjbKr\":[\"Afwezig\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"aBqveh\":[\"Terug naar live\"],\"7rgUr5\":[\"Terug naar mijn werkruimtes\"],\"/9nVLo\":[\"Terug naar selectie\"],\"UNaXdI\":[\"Terug naar templates\"],\"IWTC0l\":[\"Terug naar werkruimtes\"],\"1u1/HA\":[\"Terug naar je werkruimtes\"],\"Nzwli2\":[\"Basis\"],\"wVO5q4\":[\"Basis (Alleen essentiële tutorial slides)\"],\"epXTwc\":[\"Basis instellingen\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"Zz7XBz\":[\"Betafuncties\"],\"K9cTJe\":[\"Jaarlijks gefactureerd\"],\"/i0ppe\":[\"jaarlijks gefactureerd · \",[\"total\"],\"/plek/jr\"],\"+VoTOr\":[\"maandelijks gefactureerd\"],\"aIkeAd\":[\"Maandelijks gefactureerd\"],\"rKaO4m\":[\"Wordt op een eigen abonnement gefactureerd, niet dat van je organisatie. Beheer dit via de facturering van deze werkruimte.\"],\"+bLYyF\":[\"Per plek gefactureerd voor de hele organisatie. Je kunt op elk moment opzeggen. Voor organisaties die hiervoor in aanmerking komen zijn beurzen beschikbaar: mail <0>support@dembrane.com.\"],\"s44mh1\":[\"Per persoon gefactureerd. Een plek is één lid, automatisch geteld. Je kunt op elk moment opzeggen.\"],\"IHgGGv\":[\"Apart gefactureerd\"],\"4FkKL6\":[\"Apart gefactureerd, geen onderdeel van het abonnement van de organisatie.\"],\"jtq36d\":[\"Gefactureerd onder het abonnement van je organisatie, samen met je andere werkruimtes.\"],\"R+w/Va\":[\"Facturering\"],\"17Ox+q\":[\"Factuurgegevens\"],\"UQPSlS\":[\"Factuurgegevens opgeslagen.\"],\"ZQhgRe\":[\"Facturering wordt beheerd door je organisatie\"],\"/2TrP/\":[\"Facturatiemodus\"],\"8tzR0k\":[\"Factuurperiode\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"KKLfx1\":[\"Plan een gesprek met ons\"],\"kFl92P\":[\"Boek een gecertificeerde training om dembrane te blijven gebruiken in situaties met hoog risico.\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"xHijXF\":[\"Overzicht · \",[\"0\"],\" actief\"],\"EpQC5j\":[\"Overzicht per niveau\"],\"16exrD\":[\"Briefing\"],\"7Ic570\":[\"Gebruik je eigen LLM\"],\"SkqeF+\":[\"Gebruik je eigen taalmodel via de MCP.\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"G46Sdr\":[\"door \",[\"by\"]],\"IqudIv\":[\"Door dit project te verwijderen, verwijder je alle bijbehorende gegevens. Deze actie kan niet ongedaan worden gemaakt. Weet je het absoluut zeker?\"],\"aeGLaK\":[\"Op status\"],\"0rwwOn\":[\"Op trefwoord\"],\"URPLGF\":[\"kan bewerken\"],\"6++86c\":[\"kan lezen\"],\"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\"],\"4MDqQJ\":[\"Annuleer wanneer je wilt. Je houdt toegang tot het einde van de periode.\"],\"KWnDn1\":[\"Huidige run stoppen\"],\"Bu+BBn\":[\"Abonnement opzeggen\"],\"HoYkSd\":[\"Verzoek intrekken\"],\"lrdoAi\":[\"Planning annuleren\"],\"iypQhn\":[\"Selectie annuleren\"],\"XzQibx\":[\"Training annuleren\"],\"D2vAZP\":[\"Je abonnement opzeggen\"],\"vv7kpg\":[\"Opgezegd\"],\"AreLja\":[\"Bij opzeggen wordt je abonnement niet verlengd. Je houdt \",[\"0\"],\" tot het einde van je huidige factureringsperiode en gaat daarna over naar Free.\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"SL9Qao\":[\"Kan niet opnieuw plannen binnen 10 minuten voor het geplande tijdstip\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Verversfrequentie van het canvas aangepast\"],\"RP1RaW\":[\"Canvasvoorbeeld\"],\"J5lsfs\":[\"Canvasinstellingen\"],\"t1o65w\":[\"Canvassen die voor dit project zijn gemaakt, staan hier.\"],\"vkf71G\":[\"ontbrekende mogelijkheid\"],\"kryGs+\":[\"Kaart\"],\"SHhA6n\":[\"inhalen \",[\"0\"]],\"wNBLz0\":[\"Gecertificeerde training voor teams die dembrane in risicovolle situaties gebruiken. Een apart product, per sessie gefactureerd.\"],\"o+XJ9D\":[\"Wijzigen\"],\"rlgQn8\":[\"De organisatierol van \",[\"person\"],\" wijzigen van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"De rol van \",[\"person\"],\" op \",[\"wsName\"],\" wijzigen van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Toch wijzigen\"],\"U8sdJ+\":[\"Wijzigen in werkruimte-instellingen\"],\"+DEogc\":[\"Taal wijzigen\"],\"7KtLzo\":[\"Organisatierol wijzigen?\"],\"GptGxg\":[\"Wachtwoord wijzigen\"],\"Ts/A07\":[\"Betaalmethode wijzigen\"],\"ImM7Hj\":[\"Rol wijzigen\"],\"qpV0fp\":[\"Niveau wijzigen\"],\"XbjzC/\":[\"Werkruimterol wijzigen?\"],\"mtseAM\":[\"Je eigen rol wijzigen?\"],\"+sCya1\":[\"Wijzigingen toegepast. Je kunt ze altijd bijstellen in de projectinstellingen.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat aangemaakt\"],\"pB+sJr\":[\"Chat verwijderd\"],\"qlK5jV\":[\"Chat is niet beschikbaar op jouw toegangsniveau. Neem contact op met je werkruimtebeheerder om een upgrade aan te vragen.\"],\"qUVihD\":[\"Chatlimiet bereikt\"],\"tDlhkF\":[\"Chatnaam\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je email\"],\"mGd0TP\":[\"Gecontroleerd \",[\"checkedAgo\"],\". De eerste update verschijnt zodra er genoeg te tonen is.\"],\"fhPONC\":[\"Gecontroleerd \",[\"checkedAgo\"],\". Niets nieuws sinds je laatste gesprek. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Live gesprekken controleren\"],\"pMF40U\":[\"Je sessie wordt gecontroleerd.\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"MgLGKD\":[\"Kies een methodologie\"],\"zMquA7\":[\"Kies een abonnement\"],\"4Jd65a\":[\"Kies eerst een organisatie\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"mgiYV1\":[\"Kies je voorkeurstaal voor de interface\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"3wV73y\":[\"Plaats\"],\"xCJdfg\":[\"Wissen\"],\"yYxB17\":[\"Alles wissen\"],\"u8JHrO\":[\"Filters wissen\"],\"V8yTm6\":[\"Zoekopdracht wissen\"],\"eIdJyh\":[[\"cleared\"],\" van \",[\"total\"],\" gesprekken gewist\"],\"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\"],\"oL+Urh\":[\"Klik om te sorteren\"],\"VbcOhD\":[\"Klantkorting %\"],\"1vOl9f\":[\"Klantorganisatie\"],\"WXNW/R\":[\"Klantorganisaties van partners\"],\"bIj+VB\":[\"Door client beheerd\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"RRo5cD\":[\"Sluiten en naar dembrane\"],\"bQfDiL\":[\"Cloud Act-veilig\"],\"8Vsunl\":[\"Cloud Act-veilig. EU-soevereine stack voor de strengste naleving.\"],\"sShXu3\":[\"Collega's die je uitnodigt kunnen gesprekken verkennen, inzichten delen en samen met jou rapporten maken.\"],\"q+hNag\":[\"Collectie\"],\"jEu4bB\":[\"Kolommen\"],\"AUYALh\":[\"Binnenkort beschikbaar\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"Wqc3zS\":[\"Vergelijk\"],\"CfO59/\":[\"Vergelijk & Contrast Insights\"],\"2Jg8b0\":[\"Gratis proefperiode. €0 omzet.\"],\"bUEr/M\":[\"Gratis proefperiode. Verloopt op \",[\"0\"],\". €0 omzet.\"],\"bD8I7O\":[\"Voltooid\"],\"qqWcBV\":[\"Voltooid\"],\"XdO6hR\":[\"Voltooid op\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"7VpPHA\":[\"Bevestigen\"],\"s/uNVb\":[\"Bevestigen en versturen\"],\"JRQitQ\":[\"Bevestig nieuw wachtwoord\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"xnWESi\":[\"Wachtwoord bevestigen\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"vz1fGK\":[\"Herplanning bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"participant.modal.s3check.title\":[\"Verbindingsprobleem\"],\"WimHuY\":[\"Verbinding ongezond\"],\"l9fkrm\":[\"Toestemming\"],\"mpby9d\":[\"Contact met support\"],\"E5Shm/\":[\"Neem contact op met de beheerder als dit onverwacht was.\"],\"4b3oEV\":[\"Inhoud\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"JX3KT4\":[\"Contextuele suggesties\"],\"xGVfLh\":[\"Doorgaan\"],\"participant.button.continue\":[\"Doorgaan\"],\"participant.ready.to.begin.button.text\":[\"Doorgaan\"],\"hMqszB\":[\"Doorgaan naar betaling\"],\"F1pfAy\":[\"gesprek\"],\"YyNOE7\":[\"Gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"72XGHt\":[\"Gesprekken gewist\"],\"participant.refine.cooling.down\":[\"Even afkoelen. Beschikbaar over \",[\"0\"]],\"6V3Ea3\":[\"Gekopieerd\"],\"84o0nc\":[\"Gekopieerd van het originele gesprek\"],\"PiH3UR\":[\"Gekopieerd!\"],\"iaPtht\":[\"kopie\"],\"he3ygx\":[\"Kopieer\"],\"qQB+iu\":[\"Kopieer goedgekeurde uitkomsten naar het nieuwe gesprek zodat ze niet verloren gaan als het origineel wordt verwijderd.\"],\"x7uIlL\":[\"Uitnodigingslink kopiëren\"],\"y1eoq1\":[\"Kopieer link\"],\"H4brGj\":[\"Link naar klembord kopiëren\"],\"AjrNNs\":[\"Rapportinhoud kopiëren\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"OvEjsP\":[\"Kopieren...\"],\"/GF06U\":[\"Kon je gesprekken niet aan deze chat toevoegen\"],\"wcXkqW\":[\"Kon niet alle tagwijzigingen toepassen.\"],\"5XIW2B\":[\"Kon de wijzigingen niet toepassen. Er is niets opgeslagen.\"],\"1kNETE\":[\"Je selectie kon niet worden meegenomen. Kies hieronder opnieuw.\"],\"Exvn8R\":[\"Kon die actie niet voltooien.\"],\"leuP7L\":[\"Kon de betaling niet bevestigen. Vernieuw om opnieuw te proberen.\"],\"inHtAw\":[\"Kon niet naar het klembord kopiëren. Probeer het opnieuw.\"],\"X+pWr+\":[\"Sjabloon kon niet worden aangemaakt\"],\"qg6spM\":[\"De organisatie kon niet worden aangemaakt\"],\"D4A5VY\":[\"Kon dit canvas niet aanmaken\"],\"kzqg8O\":[\"Kon deze methodologie niet aanmaken\"],\"BiXtZw\":[\"Sjabloon kon niet worden verwijderd\"],\"qFM9uZ\":[\"Er kon geen samenvatting worden gegenereerd. Probeer het opnieuw.\"],\"WbwQgZ\":[\"Kon de methodologieën niet laden.\"],\"RYJyLk\":[\"Betalingen konden niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"3ewci6\":[\"Kon de bibliotheek niet laden.\"],\"S+kUD0\":[\"De rollup kon niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"mNTNj8\":[\"Kon het doel van dit project niet laden.\"],\"2gcFEX\":[\"De gesprekkenlijst kon niet worden geopend. Probeer het opnieuw.\"],\"WSxAYE\":[\"Kon nu geen voorbeeld van dit canvas laden.\"],\"iFyAlt\":[\"Kon dit canvas niet verversen\"],\"nx4kaN\":[\"Kon niet opslaan\"],\"BIQxIX\":[\"Kon tags niet opslaan\"],\"/C4Hgq\":[\"De hostgids kon niet worden opgeslagen\"],\"mb/wyK\":[\"Kon deze methodologie niet opslaan\"],\"g4QEze\":[\"Kon dit projectdoel niet opslaan\"],\"HQinjp\":[\"De uitnodigings-e-mail kon niet worden verstuurd. Controleer de e-mailconfiguratie.\"],\"hpYy7A\":[\"Sjabloon kon niet worden bijgewerkt\"],\"Ld3JrX\":[\"Kon dit canvas niet bijwerken\"],\"0Mj7CF\":[\"Kon de methodologie van dit project niet bijwerken\"],\"/P90WH\":[[\"failed\"],\" leden konden niet worden toegevoegd. Voeg ze toe via de instellingen van de werkruimte.\"],\"n5jG23\":[\"1 lid kon niet worden toegevoegd. Voeg het toe via de instellingen van de werkruimte.\"],\"KFEjpC\":[\"Persoon kon niet worden toegevoegd\"],\"RbXh2U\":[\"Zichtbaarheid kon niet worden gewijzigd\"],\"DjWv8n\":[\"De link kon niet worden gekopieerd.\"],\"QYq+2z\":[\"Deelnemen lukt nu niet\"],\"TOvPOV\":[\"Kon live activiteit niet laden\"],\"CLBne9\":[\"Kon herinneringen niet laden. Vernieuw om het opnieuw te proberen.\"],\"SnOYvu\":[\"Organisatie kon niet worden geladen (\",[\"0\"],\")\"],\"KYcw2y\":[\"Organisatieleden konden niet worden geladen. Probeer te vernieuwen, en neem contact op met support als het blijft mislukken.\"],\"Vw2vHe\":[\"Openstaande uitnodigingen konden niet worden geladen.\"],\"8a9fbX\":[\"Gebruik kon niet worden geladen (\",[\"0\"],\")\"],\"Fwc3py\":[\"Instellingen van de werkruimte konden niet worden geladen (\",[\"0\"],\")\"],\"edGmsx\":[\"Werkruimtes konden niet worden geladen. Sluit en open opnieuw om het nogmaals te proberen.\"],\"4ufrJH\":[\"Gebruik kon niet worden vernieuwd. Probeer het opnieuw.\"],\"PMx835\":[\"Kon deze herinnering niet verwijderen\"],\"b5ALMv\":[\"Training kon niet worden aangevraagd\"],\"JNCzPW\":[\"Land\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"oJfYM5\":[\"Een onderzoeksbrief maken van recente gesprekken\"],\"1hMWR6\":[\"Account aanmaken\"],\"3T8ziB\":[\"Maak een account aan\"],\"lJ+m2/\":[\"Maak een account aan om deel te nemen\"],\"library.create\":[\"Maak bibliotheek aan\"],\"T7gFri\":[\"Nieuwe organisatie aanmaken\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"55yNvT\":[\"Organisatie aanmaken\"],\"vPAex+\":[\"Wachtwoord aanmaken\"],\"Q7h9s/\":[\"Project aanmaken\"],\"bsfMt3\":[\"Maak rapport\"],\"A5hiCy\":[\"Template aanmaken\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"FdtSNC\":[\"Werkruimte aanmaken\"],\"WqpzRx\":[\"Werkruimte aanmaken | dembrane\"],\"d+F6q9\":[\"Aangemaakt\"],\"NCIYDF\":[\"Aangemaakt door\"],\"45O6zJ\":[\"Gemaakt op\"],\"QxmQob\":[\"Aanmaken in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Avatar bijsnijden\"],\"udBqWc\":[\"Afbeelding bijsnijden\"],\"8LMgB6\":[\"Logo bijsnijden\"],\"6dfVdc\":[\"Logo bijsnijden\"],\"Hp1l6f\":[\"Huidig\"],\"yOrQ4N\":[\"Huidige logo\"],\"Pn2B7/\":[\"Huidig wachtwoord\"],\"A+zoTy\":[\"Huidig abonnement\"],\"a+EVO+\":[\"Huidig tarief\"],\"8Tg/JR\":[\"Aangepast\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"TubmQJ\":[\"Eigen logo\"],\"GrXJvi\":[\"Aangepast logo\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"yGoz+a\":[\"Eigen logo van de werkruimte dat aan deelnemers wordt getoond.\"],\"1OE7Ts\":[\"Tsjechisch (alleen ECHO-functies, transcriptie en samenvattingen)\"],\"TNZKpI\":[\"Gevaar\"],\"Zz6Cxn\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"S3EU+A\":[\"E-mail van de data-eigenaar\"],\"+kPwoM\":[\"Data-eigendom\"],\"mYGY3B\":[\"Datum\"],\"Zpu3D+\":[\"Data die passen, context, alles wat verder relevant is\"],\"jbq7j2\":[\"Weigeren\"],\"a1Rv+M\":[\"Uitnodiging weigeren\"],\"bdg17D\":[\"Verzoek weigeren\"],\"OhcpqZ\":[\"Verzoek weigeren?\"],\"BfuTZd\":[\"De uitnodiging voor \",[\"subjectName\"],\" weigeren? Je kunt vragen om hem later opnieuw te sturen.\"],\"vrNxDR\":[\"Dit toegangsverzoek weigeren? De aanvrager krijgt geen melding en zou opnieuw toegang moeten aanvragen.\"],\"tUWfga\":[\"Toegewijde support\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"K/78Yl\":[\"Multistap analyse delegeren met live tool uitvoering\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"Tf88pC\":[[\"0\"],\" verwijderen?\"],\"YFpLoV\":[\"Chat verwijderen\"],\"2GCE3m\":[\"Gesprek verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"j5pYC4\":[\"Aangepast onderwerp verwijderen\"],\"mp235G\":[\"Project verwijderen\"],\"++iDlT\":[\"Verwijder project\"],\"rUWrSE\":[\"Rapport verwijderen\"],\"qr0gpK\":[\"Tag verwijderen\"],\"DFjdv0\":[\"Template verwijderen\"],\"NUXYj2\":[\"Dit project in \",[\"0\"],\" verwijderen? Alle gesprekken en gegevens worden definitief verwijderd.\"],\"Ja/2b5\":[\"Deze werkruimte verwijderen\"],\"ooWc3n\":[\"Deze werkruimte verwijderen. Leden verliezen direct toegang en alle gesprekken en gegevens worden definitief verwijderd.\"],\"zdyslo\":[\"Webhook verwijderen\"],\"kYu0eF\":[\"Werkruimte verwijderen\"],\"Jb6/SB\":[\"Verwijderen…\"],\"L7H6O4\":[\"Verwijderd · \",[\"0\"]],\"+m7PfT\":[\"Verwijderd succesvol\"],\"InIP7b\":[\"Een organisatie verwijderen doen we samen met support. Mail <0>support@dembrane.com en we lopen het met je door. Alle werkruimtes moeten eerst leeg zijn en verwijderd.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane, de standaard\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", alle rechten voorbehouden.\"],\"qFd3qy\":[\"dembrane kan fouten maken. Controleer antwoorden altijd even.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"toegang voor dembrane-medewerker automatisch gestopt\"],\"NBxEip\":[\"dembrane-medewerker heeft de sessie verlengd\"],\"7VMnIt\":[\"dembrane-medewerker is erbij gekomen voor support\"],\"g0sCc9\":[\"dembrane-medewerker is vertrokken\"],\"PDkZlx\":[\"dembrane-medewerker heeft toegang aangevraagd\"],\"cFCKYZ\":[\"Weigeren\"],\"Fs/0D5\":[\"Beschrijf wat de taalmodel moet extraheren of samenvatten uit het gesprek...\"],\"Nu4oKW\":[\"Beschrijving\"],\"Uf+1DF\":[\"Doelwerkruimte\"],\"2rgVKb\":[\"Bepaalt op welke AVG-grondslag persoonsgegevens worden verwerkt. Dit is van invloed op de informatie die aan deelnemers wordt getoond en de rechten van betrokkenen.\"],\"YrOV6x\":[\"Bepaalt onder welke GDPR-rechtsgrondslag personenbezogene gegevens worden verwerkt. Deze instelling geldt voor alle projecten en kan worden gewijzigd in uw accountinstellingen.\"],\"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.\"],\"rGCttu\":[\"Verwachtte je dit niet? Je kunt deze pagina rustig negeren.\"],\"ch15wD\":[\"Niet ontvangen? Kijk eerst in je spam of ongewenste mail. Het bericht komt van dembrane.com.\"],\"hsGK8G\":[\"Niet ontvangen? Kijk in je spam- of ongewenste-mailmap. De e-mail komt van dembrane.com.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"bzSI52\":[\"Weggooien\"],\"Xrxdv5\":[\"Dit project weggooien?\"],\"gemv7o\":[\"Deze werkruimte weggooien?\"],\"H6Ma8Z\":[\"Korting\"],\"Ix7Qp4\":[\"Vindbaar in deze organisatie\"],\"1QfxQT\":[\"Negeren\"],\"J6hrEy\":[\"Genegeerd\"],\"K0Wh2e\":[\"Afgewezen. Er is niets gewijzigd.\"],\"pfa8F0\":[\"Weergavenaam\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"qPwbNF\":[\"Ben je van plan dembrane te gebruiken in de zorg, het onderwijs, werving, het beheer van kritieke infrastructuur, rechtshandhaving of de rechtspraak?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Wordt niet vanzelf bijgewerkt.\"],\"VjXLEl\":[\"Wordt niet vanzelf bijgewerkt. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Klaar\"],\"K98xdM\":[\"Nu terug naar Free\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"SCWfsz\":[\"Alle transcripties downloaden\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"KMdYRY\":[\"PDF downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Ontwerp volgende acties en organiseer ze op basis van prioriteit\"],\"yboQcK\":[\"Een notitie opstellen die je naar het dembrane-team kunt sturen\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"pBB+yW\":[\"Gaat terug naar het gratis plan. Ze kunnen op elk moment een betaald plan nemen.\"],\"euc6Ns\":[\"Dupliceren\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"oUKP8j\":[\"E-factuur\"],\"hBOGLr\":[\"bijv. \\\"Focus op duurzaamheidsthema's\\\" of \\\"Wat vinden deelnemers van het nieuwe beleid?\\\"\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"9nchXg\":[\"bijv. Klant Alpha\"],\"o8kQWN\":[\"bijv. Klant Alpha, Q1-onderzoek\"],\"Ys/6OK\":[\"bijv. Onboardinggesprekken met klanten, Q1-productonderzoek\"],\"MR17iW\":[\"bijv. Klimaatluisteren, Q1-onderzoek\"],\"xnZ8L2\":[\"bijv. het rapportprobleem onderzoeken waarover je mailde\"],\"jYJhQk\":[\"bijv. We zijn een onderzoeksbureau. Rapporten gaan naar gemeentelijke opdrachtgevers, dus houd samenvattingen formeel en in het Nederlands.\"],\"sHNbQq\":[\"bijv. Wekelijkse samenvatting stakeholders\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"Cs04r/\":[\"Elk nieuw lid wordt per stoel in rekening gebracht volgens je abonnement.\"],\"8KA8wD\":[\"Nieuwe functies die je in dit project kunt proberen voordat ze klaar zijn voor iedereen.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"Y/3VME\":[\"Aangepast onderwerp bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"IYfHCP\":[\"Bijwerkinstellingen aanpassen\"],\"qDZ8v9\":[\"Doel bewerken\"],\"X14Q1S\":[\"Methodologie bewerken\"],\"G1Sb51\":[\"Bewerkingsmodus\"],\"niSWGL\":[\"Opties bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud 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\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"E-mailadres\"],\"LimKOG\":[\"E-mailverificatie\"],\"QdCcsg\":[\"E-mailverificatie | dembrane\"],\"g2N9MJ\":[\"email@werk.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji getoond naast het onderwerp bijvoorbeeld 💡 🔍 📊\"],\"TiAvLQ\":[\"leeggemaakt\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"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.\"],\"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\"],\"237hSL\":[\"Afgelopen\"],\"Q+niJN\":[\"Eindigt op \",[\"endDate\"]],\"ajxGoy\":[\"Eindigt op \",[\"endDate\"],\", gaat daarna over naar Free\"],\"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.\"],\"QbilUm\":[\"Voer een geldig e-mailadres in\"],\"CyH1Uk\":[\"Voer het huidige wachtwoord in\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"VpwcSk\":[\"Voer het nieuwe wachtwoord in\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"FiGRkg\":[\"Gegevens ingevuld\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"edh3aY\":[\"Fout bij laden van project\"],\"4kVRov\":[\"Fout opgetreden\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Geschatte kosten\"],\"0PkibI\":[\"Geschat totaal: €\",[\"estimated\"]],\"sIs2jw\":[\"In de EU gehoste taalmodellen inbegrepen\"],\"daDOWB\":[\"In de EU gehoste analyse, auditlogs en white labeling.\"],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"IwE6dT\":[\"Elke 15 minuten\"],\"QFwKaB\":[\"Elke 5 minuten\"],\"NsoFw9\":[\"Elke 60 minuten\"],\"aBiYpV\":[\"Iedereen kan het vinden. Admins doen direct mee, leden kunnen het aanvragen.\"],\"Mzb7Rk\":[\"Iedereen in \",[\"0\"],\" kan dit project vinden en openen.\"],\"PwqyQw\":[\"Iedereen in je organisatie\"],\"nvU1pM\":[\"Iedereen op de lijst is getraind.\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"p9TUoT\":[\"Overschrijdt het maximum aantal stoelen. Er gelden extra kosten.\"],\"sQpDn6\":[\"Volledig scherm sluiten\"],\"FATwZw\":[\"Werkruimtes uitvouwen\"],\"Rsjgm0\":[\"Experimenteel\"],\"M1RnFv\":[\"Verlopen\"],\"KnN1Tu\":[\"Verloopt\"],\"vHL8v0\":[\"Verloopt binnenkort\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"6jZGjE\":[\"Verkennen\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"2KAI4N\":[\"CSV exporteren\"],\"tZXz25\":[\"24 uur verlengen\"],\"bVhrVt\":[\"Extern\"],\"3xOpcO\":[\"Extern van \",[\"0\"]],\"8f/4pG\":[\"Extern van partner\"],\"FMB83I\":[\"Externen\"],\"uRzQpN\":[\"Externen worden niet aan je organisatie toegevoegd. Ze zien alleen de werkruimtes die je hier selecteert.\"],\"W3lkzg\":[\"Externen bestaan alleen binnen een werkruimte. Kies er minstens één om de uitnodiging te versturen.\"],\"KVTM6i\":[\"Extra deelnemers\"],\"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\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"UcQWAA\":[\"Gesprekken wissen is mislukt\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"UQ6LqT\":[\"Fout bij het aanmaken van het aangepaste onderwerp\"],\"bHJ//P\":[\"Project aanmaken mislukt\"],\"nVOWis\":[\"Verwijderen van chat mislukt\"],\"ZiNeUi\":[\"Fout bij het verwijderen van het aangepaste onderwerp\"],\"7QAutA\":[\"Verwijderen van project mislukt\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"REIHSi\":[\"Verwijderen van tag mislukt\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"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\"],\"PECaxL\":[\"Aankondiging als ongelezen markeren mislukt\"],\"CN1kl1\":[\"Verplaatsen van project mislukt\"],\"kC1ABz\":[\"Verplaatsen van projecten mislukt\"],\"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.\"],\"rv8mO7\":[\"Kan avatar niet verwijderen\"],\"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\"],\"IMUHg3\":[\"Opnieuw plannen mislukt. Kies een tijdstip verder in de toekomst en probeer het opnieuw.\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"FBpxE9\":[\"De run stoppen is mislukt\"],\"6xOp3l\":[\"Bericht versturen is mislukt\"],\"qTUnxX\":[\"Fout bij het bijwerken van het aangepaste onderwerp\"],\"BpuK7o\":[\"Fout bij het bijwerken van de rechtsgrondslag\"],\"Avee+B\":[\"Kan naam niet bijwerken\"],\"gnm1CH\":[\"Vastpinnen bijwerken mislukt\"],\"tOcErW\":[\"Instellingen bijwerken is mislukt\"],\"S1McZh\":[\"Kan avatar niet uploaden\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"3O1Mz4\":[\"Redelijk wachtwoord\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedbackportaal\"],\"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\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"3AFOMQ\":[\"Filter op naam of id\"],\"MRk67a\":[\"Vind tegenstrijdigheden en voeg volgende vragen voor\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"In/BVz\":[\"Betaling afronden\"],\"Gt4mS+\":[\"Rond het instellen van je abonnement af\"],\"4dQFvz\":[\"Voltooid\"],\"jtvljU\":[\"Afronden\"],\"V1EGGU\":[\"Voornaam\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus op gesprekken\"],\"2CludW\":[\"Gericht op:\"],\"cGeFup\":[\"Lettergrootte\"],\"UfM4y6\":[\"Voor <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"Voor geavanceerde gebruikers: Een geheime sleutel om de authenticiteit van de webhook te controleren. Alleen nodig als je ontvangende service een handtekeningvereist.\"],\"aW4yu6\":[\"Voor een externe organisatie\"],\"LBN11E\":[\"Voor specifieke compliance-eisen, <0>bel ons voor een offerte.\"],\"mSoJxU\":[\"Voor intern gebruik\"],\"c08s58\":[\"Voor facturen, een gedeeld contract, om een samenwerking te bespreken of voor iets op maat, mail <0>support@dembrane.com.\"],\"YP/rFm\":[\"voor het dembrane-team\"],\"GcibpE\":[\"Voor jou\"],\"z7J3FU\":[\"Prognose\"],\"UXY498\":[\"Een opgeslagen herinnering vergeten\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"rWsDiJ\":[\"Kader\"],\"2POOFK\":[\"Gratis\"],\"OLL8bQ\":[\"Het gratis plan staat 1 rapport per werkruimte toe\"],\"GAy5hu\":[\"Het gratis plan staat 1 werkruimte per organisatie toe\"],\"/L+Kwy\":[\"Gratis, alleen-lezen. Ziet projecten, gesprekken en rapporten. Kan niet chatten of rapporten genereren.\"],\"nLC6tu\":[\"Frans\"],\"2Ui6bR\":[\"wrijving\"],\"GtmO8/\":[\"vanaf\"],\"OwIqiD\":[\"Volledig scherm\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"3qkggm\":[\"Volledig scherm\"],\"Weq9zb\":[\"Algemeen\"],\"ziAjHi\":[\"Genereren\"],\"EIdJgG\":[\"Nieuw rapport genereren\"],\"QsUhrf\":[\"Rapport genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"MWSGhX\":[\"Bibliotheek genereren\"],\"5SWGxv\":[\"Nu genereren\"],\"GWUJ9X\":[\"Nu genereren\"],\"QqIxfi\":[\"Geheim genereren\"],\"gitFA/\":[\"Samenvatting genereren\"],\"3/pp83\":[\"Gegenereerd op basis van het transcript. Je kunt het bewerken.\"],\"5z5bUs\":[\"Rapport wordt gegenereerd...\"],\"kzY+nd\":[\"Samenvatting wordt gemaakt. Even wachten...\"],\"hMOYzR\":[\"Je rapport wordt gegenereerd...\"],\"DDcvSo\":[\"Duits\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Aan de slag\"],\"4/PUV0\":[\"aan de slag.\"],\"erZjsz\":[[\"0\"],\" van dembrane 24 uur adminrechten geven voor deze werkruimte? De toegang stopt automatisch.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"DXr0zk\":[\"Volledig scherm\"],\"iWpEwy\":[\"Ga naar home\"],\"y0SPQU\":[\"Naar facturering\"],\"mPlqH9\":[\"Naar chats\"],\"s15CIR\":[\"Naar gesprekken\"],\"10Xyas\":[\"Naar dashboard\"],\"4+0/e5\":[\"Naar de hostgids\"],\"BVMldh\":[\"Naar de bibliotheek\"],\"SAshCc\":[\"Naar de monitor\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"S8lgYE\":[\"Naar het overzicht\"],\"Zo4Spg\":[\"Naar de portal-editor\"],\"jH97zI\":[\"Naar de projectpagina\"],\"QvyaLZ\":[\"Naar het rapport\"],\"1WuwiM\":[\"Naar instellingen\"],\"mT57+Q\":[\"Ga naar Instellingen\"],\"EEZvNu\":[\"Doel\"],\"mc61Qc\":[\"Doel opgeslagen\"],\"Lr2Goo\":[\"Licenties toekennen\"],\"ALoP4W\":[\"Groeperen op\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"uMjvI3\":[\"Het rapport begeleiden\"],\"myXGZW\":[\"Begeleid\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"0zo6ap\":[\"Heb je een training afgerond?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me op weg\"],\"55zzNI\":[\"Hulp bij het opzetten van je project.\"],\"1zZ1IK\":[\"Hoi\"],\"v6a4UH\":[\"Hoi \",[\"firstName\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Verborgen voor leden van de organisatie. Beheerders van de organisatie kunnen de werkruimte nog wel vinden en eraan deelnemen.\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"CdQHTK\":[\"Details verbergen\"],\"lqv0Dk\":[\"Projecten verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"dN/wNN\":[\"Stappen verbergen\"],\"umJNCH\":[\"Wijzigingen verbergen\"],\"IzJDco\":[\"Gebruik met hoog risico vereist eerst een training\"],\"tn75xn\":[\"Specifiek Concept markeren\"],\"3l+JGi\":[\"Notitie bij wijziging\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"hostgids\"],\"bGCQQ9\":[\"Hostgids\"],\"yY8wAv\":[\"Uren\"],\"zvDeDZ\":[\"Uren vanaf nu\"],\"EmxJlb\":[\"Hoe Vragen werkt en wat je ermee kunt.\"],\"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\"],\"ACVscB\":[\"Ik heb het canvas toegepast.\"],\"wJCEin\":[\"Ik heb het doel toegepast.\"],\"Q53s6K\":[\"Ik heb de <0>voorwaarden gelezen en ga ermee akkoord\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Inactief\"],\"participant.verify.instructions.approve.artefact\":[\"Als je tevreden bent met \",[\"objectLabel\"],\", klik dan op \\\"Goedkeuren\\\" om te laten zien dat je je gehoord voelt.\"],\"mHvgOU\":[\"Verwachtte je toegang? Vraag de persoon die je heeft uitgenodigd om de uitnodiging opnieuw te sturen.\"],\"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.\"],\"kSoYmo\":[\"Als je je bij een bestaande organisatie wilt aansluiten, maak dan geen nieuwe aan. Je kunt hier per ongeluk terechtkomen door:\"],\"X2yiuT\":[\"Beeldstijl\"],\"zyr//t\":[\"Verbeter mijn instellingen\"],\"NoNwIX\":[\"Inactief\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portallink opnemen\"],\"hTwp/C\":[\"Inbegrepen uren opgebruikt\"],\"LYjZNH\":[\"Inbegrepen uren deze maand opgebruikt\"],\"8aA4We\":[\"overgenomen van organisatie\"],\"C6W6w6\":[\"Begin\"],\"fr30H3\":[\"Innovator of hoger\"],\"sQpkks\":[\"inzicht \",[\"0\"]],\"3hJypY\":[\"Inzichten\"],\"MSVCjk\":[\"Instructies voor het genereren van het verificatieresultaat\"],\"fN5mkr\":[\"Integraties en export\"],\"ne8SOf\":[\"Interesse in innovator of guardian? Laat het ons weten via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"B2Tpo0\":[\"Ongeldige e-mail\"],\"R7p7+o\":[\"Ongeldige uitnodigingslink\"],\"KhBSE/\":[\"Uitnodiging\"],\"oFgGAT\":[\"Er staan uitnodigingen voor je klaar. Accepteer om aan de slag te gaan.\"],\"MFKlMB\":[\"Uitnodigen\"],\"UwSCxN\":[\"Uitnodiging afgewezen\"],\"ynskdH\":[\"Nodig leden uit om samen te werken aan projecten en gesprekken in deze werkruimte.\"],\"3iGwJw\":[\"Alleen op uitnodiging\"],\"W6+yFb\":[\"Mensen uitnodigen\"],\"iLWFzs\":[\"Nodig mensen uit voor \",[\"orgName\"]],\"lOslCN\":[\"Uitnodiging opnieuw verstuurd\"],\"7Nlmb6\":[\"Uitnodiging ingetrokken\"],\"gfMuvV\":[\"Uitnodiging verstuurd\"],\"2AL6ct\":[\"Uitnodiging verstuurd.\"],\"CTWPKj\":[\"Nodig uit voor een werkruimte, of alleen voor de organisatie.\"],\"RXHza3\":[\"Nodig uit voor deze werkruimte, of alleen voor de organisatie.\"],\"d+Y+rP\":[\"Nodig je team uit\"],\"GA5TFo\":[\"Werkruimte op uitnodiging\"],\"M4oozP\":[\"uitgenodigd door \",[\"0\"]],\"voFazH\":[\"Uitnodigingen verlopen na 7 dagen. Vraag \",[\"inviterName\"],\" om een nieuwe te versturen.\"],\"ec+Yhb\":[\"Factuurbedrag, EUR\"],\"Nv38Sl\":[\"Factuur geregistreerd als betaald.\"],\"DTZqjh\":[\"Offline gefactureerd, geen Mollie-machtiging.\"],\"F7nA5/\":[\"Facturen\"],\"L7OkFI\":[\"Facturatie\"],\"1xMiTU\":[\"IP-adres\"],\"7eZuvg\":[\"Is dit voor intern gebruik binnen je organisatie, of voor een externe organisatie?\"],\"6u5tk8\":[\"Is deze werkruimte voor intern gebruik binnen je organisatie, of voor een externe organisatie die eigenaar is van haar data?\"],\"eeAl1v\":[\"Factuur uitgeven\"],\"08FN6B\":[\"Betaallink uitgeven\"],\"Gglww2\":[\"Het heeft een eigen abonnement en eigen plaatsen, niet het gedeelde abonnement van \",[\"0\"],\". Wijzigingen hier gelden alleen voor deze werkruimte.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"Het lijkt erop dat u nog geen rapport voor dit project heeft. Genereer er een om een overzicht van uw gesprekken te krijgen.\"],\"ZYXJus\":[\"Misschien is hij al gebruikt of verlopen. Als je e-mail geverifieerd is, log dan in om door te gaan.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"nfvG6u\":[\"Italiaans (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"KFXip/\":[\"Jan\"],\"r6wcTL\":[\"jan@voorbeeld.com\"],\"0wdd7X\":[\"Aansluiten\"],\"ADF305\":[\"Lid worden van \",[\"0\"],\" als <0>admin? Het verschijnt daarna meteen in je zijbalk.\"],\"C6DnOz\":[\"Word eerst zelf admin van \",[\"0\"],\" om anderen toe te voegen.\"],\"q1E+AA\":[\"Lid worden van \",[\"0\"],\"?\"],\"agqQk1\":[\"Word lid van \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Lid worden als admin\"],\"TCEFVm\":[\"Lid worden als admin?\"],\"j4IJHz\":[\"Eerst lid worden\"],\"eI7D2K\":[\"Aansluiten voor support\"],\"oopH2X\":[\"Aansluiten voor support (24 uur)\"],\"Q31z/2\":[\"Word lid van onze Slack-community\"],\"s/jfrO\":[\"Word lid van deze organisatie om werkruimtes te ontdekken en samen te werken met je team.\"],\"BICpzG\":[\"Sluit je als beheerder aan bij deze werkruimte om te helpen met support. De klant moet support-toegang voor medewerkers hebben aangezet. Je toegang stopt automatisch na 24 uur.\"],\"gePQ/O\":[\"Word lid van deze werkruimte om samen te werken aan gesprekken, inzichten te delen en samen rapporten te maken.\"],\"IKAMA9\":[\"Lid geworden van \",[\"subjectName\"]],\"Glgamf\":[\"Toegevoegd als admin\"],\"l4EwDk\":[\"Deelgenomen aan het gesprek\"],\"NiZZRh\":[\"Ga naar\"],\"uocCon\":[\"Gewoon een momentje\"],\"xOTzt5\":[\"zojuist\"],\"mmEyCQ\":[\"Net een preview gemaakt. Even geduld.\"],\"VqAl2y\":[\"Net bijgewerkt. Even geduld.\"],\"UQYK3R\":[\"Net begonnen\"],\"U0T6D0\":[\"Praat of typ gewoon op een natuurlijke manier. Uw bijdrage gaat rechtstreeks naar ons productteam en helpt ons echt om dembrane te verbeteren. We lezen alles.\"],\"hK3t2g\":[\"Alleen jij, plus de beheerders van de werkruimte.\"],\"rnwfSX\":[\"Voorlopig alleen jij.\"],\"lgdsfK\":[\"Alleen jij. Deel met specifieke mensen →\"],\"OePlDL\":[[\"tier\"],\" houden tot een datum\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"4OjqAQ\":[\"Verder bewerken\"],\"RQElWR\":[\"Behouden\"],\"B3WAHx\":[\"Licentie houden\"],\"uHdpk+\":[\"Mijn abonnement behouden\"],\"Qzyw+2\":[\"In behandeling houden\"],\"II//jO\":[\"Houd dit canvas up-to-date\"],\"0BWuwA\":[\"Houdt het niveau tot de datum hieronder en gaat daarna terug naar Free, tenzij ze een abonnement nemen.\"],\"4q0kY7\":[\"Kernbegrippen\"],\"dymfAn\":[\"Kernbegrippen vertellen de transcriptie hoe de namen en woorden die in dit project belangrijk zijn geschreven worden.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Taal\"],\"swJ0V2\":[\"Laatste audio\"],\"rTwgPH\":[\"Vorige maand\"],\"1ZaQUH\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"QEU41f\":[\"Laatst bijgewerkt \",[\"0\"]],\"wL3cK8\":[\"Laatste\"],\"wv+L3B\":[\"Laatste rapport\"],\"zwWKhA\":[\"Meer informatie\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"wpBe20\":[\"Nu verlaten\"],\"qvRaz1\":[\"Werkruimte verlaten\"],\"UlKSMd\":[\"Vertrokken\"],\"vRXsmZ\":[\"Rechtsgrondslag\"],\"7kyKF5\":[\"Rechtsgrondslag bijgewerkt\"],\"nc/jNe\":[\"Naam rechtspersoon\"],\"8zGcQ2\":[\"Laten we je eerste gesprek horen.\"],\"qnAazR\":[\"Laten we het over het canvas \\\\\\\"\",[\"0\"],\"\\\\\\\" hebben.\"],\"OQ/Al+\":[\"Laten we het over dit canvas hebben.\"],\"VxapXh\":[\"bibliotheek\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"gkv8iG\":[\"Kenteken\"],\"u/z4+7\":[\"Licentie ingetrokken\"],\"snyG+w\":[\"Licenties\"],\"/NleHL\":[\"Licenties verleend\"],\"JbbFA4\":[\"Levenslange limiet\"],\"J7Djew\":[\"Beperk wie deze werkruimte kan vinden en eraan kan deelnemen.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link gekopieerd\"],\"LIj2/f\":[\"Link naar de privacyverklaring van uw organisatie die aan deelnemers wordt getoond\"],\"g4/qsV\":[\"Toon mijn gesprekken\"],\"k3d/oJ\":[\"Toon de gesprekken in dit project.\"],\"+L0OEa\":[\"Gesprekken op een rij zetten\"],\"gWVReV\":[\"Documentatiepagina's opzoeken\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live en recent\"],\"uH9GEL\":[\"Live agent uitvoermodus\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live deelnemersstroom\"],\"O0rtUS\":[\"Live deelnemerstrechter: aantallen voor gescand, instellen, op opnamepagina, live en voltooid\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"hQE9uK\":[\"Live opnames, voortgang van transcriptie en fouten verschijnen hier zodra deelnemers in de portal beginnen met opnemen.\"],\"kfOJzm\":[\"Live verbinding verbroken. We werken minder vaak bij tot de verbinding terug is.\"],\"PPSKvH\":[\"Live verbinding onderbroken. We halen updates nu periodiek op.\"],\"1P8zM9\":[\"Levend canvas\"],\"yQ2kGp\":[\"Meer laden\"],\"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...\"],\"YyMToN\":[\"Leden laden\"],\"IG63hz\":[\"Methodologie laden\"],\"FUK4WT\":[\"Microfoons laden...\"],\"Xan9/v\":[\"Projecten laden...\"],\"GtQzAW\":[\"Deze chat laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"eRq8Ag\":[\"Werkruimtes laden…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"G2fuEb\":[\"Vergrendeld\"],\"pefb7Y\":[\"Gesprek vergrendeld, upgrade om te bekijken\"],\"z32CuS\":[\"Vergrendeld om bij de uitnodiging te passen. Wil je een ander adres gebruiken? Vraag de admin om dat e-mailadres opnieuw uit te nodigen.\"],\"sQia9P\":[\"Inloggen\"],\"L3Q5Lc\":[\"Log in bij \",[\"resolvedWorkspaceName\"],\" om verder te gaan.\"],\"KC88rc\":[\"Uitloggen en het uitgenodigde e-mailadres gebruiken\"],\"7Zt++i\":[\"Dit doorgeven aan het dembrane-team\"],\"z0t9bb\":[\"Inloggen\"],\"LM/dWU\":[\"Inloggen | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo verwijderd\"],\"MjfaMh\":[\"Logo bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"FTbR8B\":[\"Langste eerst\"],\"jWXlkr\":[\"Langste eerst\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Batterij bijna leeg\"],\"QqxHAZ\":[\"Maak het privé om alleen met specifieke mensen te delen. Privéprojecten vereisen het innovator-abonnement of hoger.\"],\"icpEdc\":[\"Privé maken\"],\"pCYZVV\":[\"Zichtbaar maken voor de hele werkruimte\"],\"wckWOP\":[\"Beheren\"],\"lXmPSL\":[\"Aanwezigen beheren\"],\"hB02vO\":[\"Leden beheren\"],\"WLAeKT\":[\"Facturatie van organisatie beheren\"],\"mrenWs\":[\"Templates beheren\"],\"2VeSf/\":[\"Training beheren\"],\"waFx9W\":[\"Beheerd\"],\"DlYfyz\":[\"Beheerde accounts betalen op factuur, niet met een kaart. Een account beheerd maken houdt alle functies aan en zet automatisch incasseren, aanmaningen en verlopen uit. Wijs een dembrane-accountmanager toe zodat de klant weet bij wie hij terechtkan.\"],\"bxxIPf\":[\"Beheerde facturatie\"],\"usR1Ju\":[\"Beheerd door dembrane\"],\"/FWPUc\":[\"Beheert leden, werkruimtes en organisatie-instellingen.\"],\"onllUU\":[\"Alles markeren als gelezen\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"E8m+Rc\":[\"Markeer als aanwezig\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"5GPcf9\":[\"Markeren als ongelezen\"],\"TyonBx\":[\"Markeer als voltooid\"],\"MCipZC\":[\"Factuur markeren als betaald\"],\"AHBWqd\":[\"Training als voltooid markeren\"],\"Ofm5QB\":[\"Markeert \",[\"orgName\"],\" als partner. De werkruimtes geven bij het aanmaken zelf aan of ze voor intern of extern klantgebruik zijn.\"],\"VxyuRJ\":[\"Vergadernotities\"],\"NwiNTb\":[\"lid\"],\"OvoEq7\":[\"Lid\"],\"deUR+U\":[\"Lid verwijderd\"],\"GnG6Oy\":[\"leden\"],\"wlQNTg\":[\"Leden\"],\"v8o+Rn\":[\"Geheugen\"],\"u418B7\":[\"Herinnering verwijderd\"],\"ltnOth\":[\"Bericht van het dembrane team\"],\"YcaR2g\":[\"Bericht is te lang (maximaal 32.000 tekens). Voeg gesprekken toe of maak je bericht korter.\"],\"m3fXOy\":[\"Berichtenlimiet bereikt\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologieën\"],\"m8tKkP\":[\"Methodologie\"],\"hml7oE\":[\"Methodologie aangemaakt\"],\"l1/lbT\":[\"Methodologie opgeslagen\"],\"e6I7Ej\":[\"Methodologie bijgewerkt\"],\"ADm81a\":[\"Microfoon geblokkeerd\"],\"+WoTL8\":[\"Microfoon getest\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"pTc/Cy\":[\"mnd\"],\"zz/Wd/\":[\"Modus\"],\"Re8IqH\":[\"Mollie is niet ingesteld in deze omgeving, dus er worden geen live transacties getoond. De Dashboard-link verwijst nog steeds naar de juiste Mollie-omgeving.\"],\"j0uaMA\":[\"Monitoren\"],\"4kanfr\":[\"Maandelijkse facturatie\"],\"f8jrkd\":[\"meer\"],\"JcD7qf\":[\"Meer acties\"],\"QWdKwH\":[\"Verplaatsen\"],\"3qp1VW\":[\"\\\"\",[\"0\"],\"\\\" verplaatsen naar \",[\"targetWorkspaceName\"],\"? Leden van de huidige werkruimte verliezen hun toegang.\"],\"ZU6coV\":[[\"0\"],\" van \",[\"1\"],\" naar \",[\"tier\"],\" verplaatsen?\"],\"8Pgx5L\":[\"Haal \",[\"name\"],\" van facturatie door dembrane. Kies wat er met hun plan gebeurt.\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"cK3qrq\":[\"Verplaatsingsgeschiedenis\"],\"nthowT\":[\"Project verplaatsen\"],\"WnyjBv\":[\"Projecten verplaatsen\"],\"7TYQRA\":[\"Dit project naar de geselecteerde werkruimte verplaatsen?\"],\"fwyWPz\":[\"Verplaats dit project, met de gesprekken en rapporten, naar een werkruimte die je beheert. Je moet admin of eigenaar van de doelwerkruimte zijn.\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"zCpAZ1\":[\"Naar een andere werkruimte verplaatsen\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"5MzfrX\":[\"Analyse in meerdere stappen.\"],\"uzUz9i\":[\"Meerdere talen\"],\"j7HfhZ\":[\"Moet minstens 10 minuten in de toekomst zijn\"],\"5hOInR\":[\"Mijn toegang\"],\"en+4fS\":[\"Mijn sjablonen\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"aFFbp6\":[\"Noem het naar de klant, opdracht of het doel.\"],\"KxAfaR\":[\"Noem het naar het onderwerp, de opdracht of de vraag die je verkent.\"],\"ztAdhw\":[\"Naam bijgewerkt\"],\"vfJR5V\":[\"Geef je organisatie een naam om te beginnen. Je kunt daarna meteen leden uitnodigen, of later via instellingen lid worden van andere organisaties.\"],\"5cahWP\":[\"Geef je organisatie een naam. Je kunt daarna mensen uitnodigen, of dat later via instellingen doen.\"],\"pfbjQ0\":[\"Geef je werkruimte een naam.\"],\"c5Xt89\":[\"Naam Z-A\"],\"WcgzjF\":[\"naam@voorbeeld.com\"],\"CLjxnx\":[\"naam@voorbeeld.com, naam2@voorbeeld.com\"],\"AQjK0x\":[\"Werkwijzen met een naam die je team opnieuw kan gebruiken.\"],\"0l5mYK\":[\"Meer toegang nodig? Vraag de persoon die je heeft uitgenodigd om je toe te voegen aan de organisatie of een andere werkruimte.\"],\"fAUSZy\":[\"Vereist aandacht\"],\"isRobC\":[\"Nieuw\"],\"mdHOWX\":[\"Nieuwe chat over dit canvas\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"u2uElg\":[\"Nieuwe gesprekken toegevoegd sinds dit rapport\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"UPRdvV\":[\"Nieuwe methodologie\"],\"MVaH2c\":[\"Nieuwe organisatie\"],\"/nT6AE\":[\"Nieuw wachtwoord\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"gKi+a/\":[\"Nieuw project\"],\"wzIR5D\":[\"Nieuw project | dembrane\"],\"z6wcHz\":[\"Nieuw rapport\"],\"ZfVx+G\":[\"Nieuw niveau\"],\"curoK5\":[\"Nieuwe werkruimte\"],\"cTUByn\":[\"Nieuwste eerst\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.next\":[\"Volgende\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"1vEADD\":[\"Volgende factuur\"],\"1UzENP\":[\"Nee\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"oPoLg+\":[\"Geen toegang\"],\"VHfLAW\":[\"Geen accounts\"],\"riwuXX\":[\"Geen acties gevonden\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"Xmk0PY\":[\"Nog geen factureringsaccount. Mail naar <0>support@dembrane.com en we stellen er een in.\"],\"PVAfDk\":[\"Geen factureringsaccounts voldoen aan de huidige filters.\"],\"xz3y0A\":[\"Nog geen canvassen\"],\"d2Jf1f\":[\"Geen wijziging\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"9nWRSv\":[\"Geen chats gevonden voor je zoekopdracht.\"],\"r3iaI0\":[\"Nog geen chats.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"PNz5nE\":[\"Geen gesprekken voldoen aan deze filters.\"],\"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.\"],\"YnWe3z\":[\"Nog geen gesprekken.\"],\"GKpO3x\":[\"Nog geen gesprekken. Je kunt nu een rapport plannen en gesprekken worden opgenomen zodra ze zijn toegevoegd.\"],\"dl4q4O\":[\"geen vervaldatum\"],\"7Ad0TM\":[\"Geen expliciete delingen. Werkruimtebeheerders hebben nog steeds toegang.\"],\"Fb9N7E\":[\"Nog geen extern geleide organisaties.\"],\"cqoc0B\":[\"Geen verdere kosten\"],\"bl3Q4e\":[\"Nog geen doel. Stel er hier een in, of laat de assistent je erover interviewen in de chat.\"],\"wuFH13\":[\"Er zijn geen uitnodigingen verstuurd. Bekijk de lijst hieronder.\"],\"rwtE4m\":[\"Geen logo ingesteld. De standaard van dembrane wordt gebruikt.\"],\"4TVVsS\":[\"Geen resultaten\"],\"IntpVZ\":[\"Geen resultaten gevonden\"],\"JuBV6F\":[\"Nog geen leden.\"],\"A4D9sY\":[\"Nog geen methodologieën.\"],\"gr5hJS\":[\"Er was geen microfoon beschikbaar. Controleer of er een is aangesloten en niet ergens anders in gebruik is.\"],\"UfnqDf\":[\"Geen naam\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"XOpCfj\":[\"Geen nieuwe uitnodigingen nodig. Bekijk de lijst hieronder.\"],\"nZsRCa\":[\"Nog niemand toegevoegd\"],\"VylT70\":[\"Nog niemand anders in deze organisatie\"],\"xp1ZnX\":[\"Nog niemand hier.\"],\"wca+1p\":[\"Niemand wordt automatisch geblokkeerd bij niet-betalen. Houd mislukte betalingen hier in de gaten en volg ze op.\"],\"6iedjR\":[\"Niemand voldoet aan dat filter.\"],\"RJSUJO\":[\"Nog niemand in de organisatie.\"],\"ZwZtAi\":[\"Nog niemand in deze organisatie.\"],\"/+Nxaa\":[\"Nog niemand gedeeld\"],\"sAu4UE\":[\"Nog niemand in de werkruimte.\"],\"/ksKg9\":[\"Geen organisatierol. Toegang via werkruimte-uitnodigingen.\"],\"laeweW\":[\"Geen betalingen voldoen aan het filter.\"],\"iV2Or0\":[\"Nog geen betalingen.\"],\"cqfchi\":[\"Geen pdf beschikbaar voor deze factuur.\"],\"qPbs1l\":[\"Geen openstaande uitnodigingen\"],\"X0DUuO\":[\"Geen projectactiviteit deze periode.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"YzI8q2\":[\"Geen projecten gevonden.\"],\"m0I2ba\":[\"Geen recente activiteit\"],\"9Y/ZE7\":[\"Nog geen verwijsafspraken.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"1iQvuD\":[\"Nog geen rapporten\"],\"Ev2r9A\":[\"Geen resultaten\"],\"pm345e\":[\"Geen selecteerbare gesprekken\"],\"klvSBe\":[\"Geen abonnement\"],\"deovLP\":[\"Nog geen samenvatting\"],\"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.\"],\"KE6RCJ\":[\"Geen templates gevonden voor {searchQuery}\"],\"ndv8BV\":[\"Geen trainingen gevonden met deze filters.\"],\"JmSs4s\":[\"Nog geen trainingen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"/uoEXj\":[\"Nog geen verbruik deze cyclus.\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"Z9sn1g\":[\"Nog geen versie\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"AtHA/x\":[\"Nog geen werkruimtetoegang\"],\"nnCUYC\":[\"Geen werkruimte gekozen. Ze worden toegevoegd aan \",[\"orgName\"],\" en kunnen zelf werkruimtetoegang aanvragen.\"],\"wn5bQU\":[\"Geen wijziging van werkruimterol. Voeg deze persoon toe aan de organisatie en nodig ze daarna opnieuw uit vanuit de werkruimte.\"],\"tPEiUj\":[\"Er worden op dit moment geen werkruimtes uit deze organisatie met je gedeeld.\"],\"pxmfsY\":[\"Geen werkruimtes komen overeen met \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"Niets gepland\"],\"PjeFWm\":[\"Geen geldig e-mailadres.\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"PBxg/E\":[\"Niet nu\"],\"Ua2NxX\":[\"Geen beheerde facturatie. Zet op beheerd om dit account op het \",[\"tier\"],\"-niveau te factureren, zonder automatische afschrijvingen via Mollie.\"],\"07Vguj\":[\"Wordt niet verlengd\"],\"vaVAp0\":[\"Niet ingepland\"],\"MTqQMG\":[\"Niet ingesteld\"],\"kBpuXT\":[\"Deze niet\"],\"vbpAZQ\":[\"Niet getraind\"],\"/hpEcX\":[\"notitie\"],\"1DBGsz\":[\"Notities\"],\"RYtZxa\":[\"Notities voor ons team\"],\"budBGD\":[\"Notities die de assistent bijhoudt over hoe je graag werkt, opgeslagen tijdens je chats. Alleen jij ziet ze. Verwijder alles wat je niet wilt bewaren.\"],\"NdAad3\":[\"Notities die de assistent vanuit chats over dit project heeft opgeslagen. Iedereen die in dit project chat deelt ze.\"],\"WAy8m5\":[\"Notities die de assistent vanuit chats over deze werkruimte heeft opgeslagen. Iedereen in de werkruimte deelt ze.\"],\"DZMptz\":[\"Op dit moment niets van dembrane.\"],\"DN72IZ\":[\"Hier is nog niets voor je.\"],\"yFnB+H\":[\"hier nog niets\"],\"0IdomT\":[\"Er wordt niets verstuurd totdat je het verstuurt. Pas hieronder eerst aan wat je wilt.\"],\"we3tJT\":[\"Niets komt overeen met het filter.\"],\"610qM/\":[\"Nog niets opgeslagen. De assistent voegt hier notities toe terwijl er wordt gechat.\"],\"6rAlvZ\":[\"Nog niets opgeslagen. De assistent voegt hier notities toe terwijl je chat.\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"hGA9Wy\":[\"Waarnemer\"],\"phUtHZ\":[\"Waarnemers (gratis)\"],\"k9cwCQ\":[\"Waarnemers zijn gratis en alleen-lezen, en alleen voor werkruimtes van externe klanten. Ze kunnen de werkruimte bekijken, maar niet chatten, rapporten genereren of bewerken. Wijzig hun rol naar Extern om ze meer te laten doen.\"],\"RfY3gN\":[\"Observers zijn gratis gasten die alleen kunnen meelezen. Wil je ze laten bewerken? Verwijder ze en nodig ze opnieuw uit als lid.\"],\"JIE4kF\":[\"Waarnemers zijn alleen beschikbaar in werkruimtes voor een externe klant. Kies alleen werkruimtes van externe klanten, of kies een andere rol.\"],\"Bdtwnw\":[\"uit\"],\"az8lvo\":[\"Uit\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oudste eerst\"],\"9+6THi\":[\"Oudste eerst\"],\"Fdp03t\":[\"aan\"],\"Z5HWHd\":[\"Aan\"],\"Hktelz\":[\"Facturatie wordt beheerd door dembrane. Overschakelen naar self-serve behoudt het niveau en toont de klant de checkout om kaartbetaling in te stellen.\"],\"er1mH/\":[\"Op opnamepagina\"],\"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.\"],\"qvLmaf\":[\"Eén kleine letter\"],\"+P5Okg\":[\"Eén cijfer\"],\"m5rZjl\":[\"Eén symbool\"],\"MKUgK1\":[\"Eén hoofdletter\"],\"qitPxp\":[\"Eenmalig\"],\"J6n7sl\":[\"Actief\"],\"conversation.ongoing\":[\"Actief\"],\"yAVA7C\":[\"Lopende gesprekken\"],\"a//PzZ\":[\"Verander deze instelling alleen in overleg met de verantwoordelijke persoon(nen) voor de bescherming van gegevens binnen uw organisatie.\"],\"uaB4AS\":[\"Alleen organisatiebeheerders en eigenaren kunnen werkruimtes aanmaken. Vraag een beheerder van je organisatie om er een aan te maken, of om je eerst te promoveren.\"],\"0WLwiw\":[\"Alleen mensen die al in deze werkruimte zitten, kunnen worden toegevoegd. Nodig ze eerst uit voor de werkruimte als ze hier nog niet zijn.\"],\"xbDpkO\":[\"Alleen de mensen die je toevoegt of uitnodigt, kunnen het zien.\"],\"K/CPkL\":[\"Alleen bij het vastleggen van een factuur die al buiten het systeem is betaald.\"],\"fKQbMI\":[\"Alleen werkruimtebeheerders en de mensen die je uitnodigt, kunnen dit project openen.\"],\"C/Sx14\":[\"Alleen werkruimtebeheerders kunnen deze instellingen wijzigen. Vraag een beheerder als er iets bijgewerkt moet worden.\"],\"4UuIbT\":[\"Alleen jij kunt deze werkruimte zien.\"],\"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.\"],\"1TNIig\":[\"Openen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Accountacties openen\"],\"tcgf5/\":[\"Alles openen\"],\"yCDcIF\":[\"Open chatdocumentatie\"],\"uIKeEf\":[\"Gesprek openen\"],\"EUQ7ko\":[\"Open documentatie\"],\"aRGGej\":[\"Open voor deelname\"],\"CD3rbs\":[\"Hostgids openen\"],\"f04uGY\":[\"Openen in Bibliotheek\"],\"c9rlQI\":[\"Mollie-dashboard openen\"],\"iZD9CK\":[\"Organisatie openen\"],\"FBPD+d\":[\"Open \",[\"0\"],\" vanaf hier.\"],\"OG3wju\":[\"Open de chat\"],\"828iLy\":[\"Open de oorspronkelijke uitnodigings-e-mail en klik daar op de link, of vraag de uitnodiger om een nieuwe uitnodiging te sturen.\"],\"FZ5fed\":[\"Open de probleemoplossingsgids\"],\"m9eUZO\":[\"Open voor de werkruimte\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"Gc/l1s\":[\"Werkruimte openen\"],\"F7e1nt\":[\"Werkruimteacties openen\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"rPRgw+\":[\"Zet experimentele functies aan en help dembrane vormgeven. Deze functies kunnen op elk moment veranderen of verdwijnen.\"],\"LLAa/9\":[\"Optioneel\"],\"ZFIvWo\":[\"Optioneel (valt terug naar Engels)\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"0OspM/\":[\"Optioneel. Waar deze werkruimte voor is.\"],\"0zpgxV\":[\"Opties\"],\"BzEFor\":[\"of\"],\"0EffTH\":[\"Of kies een tijd\"],\"7r2pfW\":[\"Of liever direct chatten?\"],\"1h45Hu\":[\"Of schrijf uw eigen\"],\"v2MBz4\":[\"Alleen organisatie\"],\"LB3Kje\":[\"Organisatie\"],\"sezvMj\":[\"Organisatie | dembrane\"],\"9L7xZr\":[\"Organisatieaccount\"],\"fGRmCP\":[\"organisatiebeheerder\"],\"x/dDGk\":[\"Organisatielid\"],\"Juy8tT\":[\"Organisatieleden verschijnen hier zodra ze deelnemen aan een werkruimte.\"],\"UPvG74\":[\"Organisatieleden verschijnen hier zodra ze deelnemen aan een werkruimte. Uitnodigingen worden verstuurd vanaf het tabblad Leden van elke werkruimte.\"],\"m9HLnV\":[\"Organisatienaam\"],\"IvGxhL\":[\"Organisatie niet gevonden\"],\"B38pCE\":[\"Alleen organisatie\"],\"kzWAph\":[\"Organisatiegebruik\"],\"GoZkew\":[\"Organisaties\"],\"usabod\":[\"Organisaties | dembrane\"],\"qdq0Jp\":[\"Organisaties aangemaakt door mensen die externe samenwerkers van een partner zijn. Een signaal dat ze mogelijk hun eigen abonnement willen.\"],\"6lcDxb\":[\"URL van de privacyverklaring van de organisator\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"NTkmOk\":[\"Facturering voor overschrijding van toepassing\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"oDAEQq\":[\"Eigendom\"],\"OwPQJt\":[\"Eigendom is vergrendeld. Neem contact op met support om over te dragen.\"],\"HSAzUy\":[\"Eigenaar-organisatie\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v4nCHK\":[\"Betaald\"],\"uneeEC\":[\"deels afgerond\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"hRcUJQ\":[\"Naam deelnemer\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"CmOBUh\":[\"Deelnemers abonneren op updates\"],\"DbvvEo\":[\"Verificatie van deelnemers\"],\"MZHPuB\":[\"Deelnemers\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partnerorganisatie\"],\"LkuJMH\":[\"Partnerwerkruimte, apart gefactureerd en geen onderdeel van het plan van de organisatie.\"],\"qC5k4V\":[\"Partnerwerkruimte, apart gefactureerd van de organisatie.\"],\"8ZsakT\":[\"Wachtwoord\"],\"zJx6Vx\":[\"Wachtwoord gewijzigd\"],\"PxRsoo\":[\"Wachtwoord voldoet niet aan de vereisten.\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"KXsZLF\":[\"Updates pauzeren\"],\"URAE3q\":[\"Gepauzeerd\"],\"XaA5fF\":[\"Gepauzeerd.\"],\"6Dmao4\":[\"Gepauzeerd. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Nu betalen\"],\"VwkrOQ\":[\"Betalende omzet\"],\"VESsDr\":[\"Betalende omzet deze maand\"],\"pJxzaT\":[\"Betaling mislukt\"],\"/CNehZ\":[\"Bedrag betaallink, EUR\"],\"GfJaff\":[\"Betaallink uitgegeven.\"],\"ENEPLY\":[\"Betaalmethode\"],\"sni5ir\":[\"Betalingskenmerk\"],\"Kd2B1D\":[\"De betaling is gelukt. Je plan is up-to-date.\"],\"S48xcO\":[\"in behandeling\"],\"UbRKMZ\":[\"In afwachting\"],\"EaYDGF\":[\"Openstaande toegangsverzoeken\"],\"V1wW5o\":[\"Actie vereist\"],\"sU2oO4\":[\"Openstaande uitnodigingen\"],\"GC714A\":[\"Openstaande uitnodigingen | dembrane\"],\"gPRsPw\":[\"personen\"],\"1wdjme\":[\"Personen\"],\"t9qtWL\":[\"Personen met toegang\"],\"Uoqcz2\":[\"Resultaten per ontvanger:\"],\"hkffer\":[\"Toegang per werkruimte\"],\"SrVzRe\":[\"Procent\"],\"NtQvjo\":[\"Periode\"],\"D0meML\":[\"persoon\"],\"t4wIPl\":[\"Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"zmwvG2\":[\"Telefoon\"],\"B8mlc2\":[\"Kies een datum\"],\"PYDbNJ\":[\"Kies een account\"],\"hZjgId\":[\"Kies minstens één werkruimte om de uitnodiging te versturen.\"],\"NCubup\":[\"Kies iemand uit je organisatie of typ een e-mailadres om uit te nodigen.\"],\"m+EMny\":[\"Kies er een\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"U1Tudq\":[\"Pilotlimiet bereikt\"],\"qVkGWK\":[\"Vastpinnen\"],\"u8qC4w\":[\"Project vastpinnen\"],\"S+WiJ3\":[\"Pin sjablonen hier vast voor snelle toegang.\"],\"kNiQp6\":[\"Vastgezet\"],\"LdWQ+0\":[\"Vastgepind is vol (max 5)\"],\"EC6BHi\":[\"Vastgezette projecten\"],\"RimR35\":[\"Vastgepinde sjablonen\"],\"afV5A2\":[\"Plan eindigt\"],\"Iqh0Uv\":[\"Gepland\"],\"lWy5a1\":[\"Plannen\"],\"PI95wJ\":[\"Plant, verzamelt en controleert het eigen werk over veel gesprekken.\"],\"PKrSWk\":[\"Accepteer de voorwaarden om door te gaan.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"ZhyvmA\":[\"Log in om door te gaan.\"],\"MXEkrp\":[\"Neem je reactie op door op de knop \\\"Record\\\" hieronder te klikken. Je kunt ook in tekst reageren door op het teksticoon te klikken.\\n**Houd dit scherm verlicht**\\n(zwart scherm = niet aan het opnemen)\"],\"Lu1j4b\":[\"Neem je reactie op door op de knop \\\"Record\\\" hieronder te klikken. Je kunt ook in tekst reageren door op het teksticoon te klikken.\\n**Houd dit scherm verlicht**\\n(zwart scherm = niet aan het opnemen).\\nJe transcriptie wordt geanonimiseerd en je host kan niet naar je opname luisteren.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"6MncU0\":[\"plus werkruimtebeheerders\"],\"rhEYMw\":[\"PNG, JPEG of WebP. Wordt bijgesneden tot een cirkel.\"],\"gL/sdV\":[\"Populair\"],\"uRFMMc\":[\"Portal inhoud\"],\"ivjxif\":[\"Portalbeschrijving\"],\"oNb5Ox\":[\"portal-editor\"],\"694+8E\":[\"Portaalbewerker\"],\"qVypVJ\":[\"Portaal-editor\"],\"OZYxCC\":[\"Afsluitbericht portal\"],\"FNuwSz\":[\"Portaltaal\"],\"gKSdKz\":[\"Portal open voor nieuwe gesprekken\"],\"XfoCxn\":[\"Portaaloverzicht\"],\"qLWG8R\":[\"Portaltitel\"],\"D5roJB\":[\"Portaltutorial\"],\"U4aiMW\":[\"Postcode\"],\"cWkKWE\":[\"compliment\"],\"kBa6hc\":[\"Een navigatiesnelkoppeling voorbereiden\"],\"9vB8nN\":[\"Eerste update wordt voorbereid.\"],\"xVEtui\":[\"Dit canvas wordt voorbereid\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"rdUucN\":[\"Voorbeeld\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"a7u1N9\":[\"Prijs\"],\"Ub/0bY\":[\"Prijzen zijn exclusief btw.\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"S8ugMC\":[\"Rapport afdrukken\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Privé\"],\"Q7R6ZJ\":[\"Privé · alleen genodigden kunnen dit zien\"],\"i4YTOL\":[\"Privéproject\"],\"1vsuTU\":[\"Privéwerkruimte\"],\"vXOtIa\":[\"Privéwerkruimtes\"],\"1ihBUA\":[\"Privé. Voeg mensen toe om het te delen.\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Projectacties\"],\"eBFgFZ\":[\"projectchats\"],\"2LxK9d\":[\"Projectcontext\"],\"RYrbVH\":[\"Project aangemaakt\"],\"Hie0VV\":[\"Project aangemaakt\"],\"zjTrs1\":[\"Projectstandaard: ingeschakeld. Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"rmmNSG\":[\"Projectstandaarden\"],\"aVOwd+\":[\"Project verwijderd\"],\"7TYa2T\":[\"Projectdoel\"],\"qW7NU2\":[\"Het project is nu zichtbaar voor iedereen in \",[\"workspaceName\"]],\"wNXqAE\":[\"Het project is nu zichtbaar voor de werkruimte\"],\"QFx9kj\":[\"Inzichtenbibliotheek | dembrane\"],\"QDjWwu\":[\"Project Meta Samenvatting\"],\"lltun+\":[\"Project verplaatst\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"uMobxw\":[\"projectoverzicht\"],\"q0+yfq\":[\"Project Overzicht | dembrane\"],\"3YND3K\":[\"projectinstellingen\"],\"Wsk5pi\":[\"Project Instellingen\"],\"7NmoFz\":[\"Verwacht maandtotaal\"],\"gitVS9\":[\"Verwacht jaartotaal\"],\"M9H+/G\":[\"projecten\"],\"+0B+ue\":[\"Projecten\"],\"DK5DV3\":[\"Projecten | dembrane\"],\"B1WDxD\":[\"Projecten binnen organisatie · \",[\"0\"]],\"uNGCZL\":[\"Projecten verplaatst\"],\"2ugVVF\":[\"Projecten verschijnen hier zodra iemand in de organisatie er een met je deelt.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Voorgesteld\"],\"pAY+Io\":[\"Voorgestelde wijzigingen\"],\"Aka3jE\":[\"Naar rato voor de rest van deze factureringsperiode.\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"EEYbdt\":[\"Publiceren\"],\"vsX8VJ\":[\"Publiceer dit rapport eerst om de portallink te tonen\"],\"IHzoSN\":[\"Publiceer dit rapport om een deellink te krijgen\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"NHHXdL\":[[\"name\"],\" op facturatie beheerd door dembrane zetten, op het \",[\"tier\"],\"-niveau? Geen automatische afschrijvingen via Mollie en niets dat automatisch verloopt.\"],\"4PTJUv\":[\"Vragen over hoe dembrane werkt, niet alleen over je data.\"],\"XhrBin\":[[\"0\"],\" stappen tegelijk uitgevoerd\"],\"iZuzSU\":[\"Snelheidslimiet bereikt\"],\"wr9IYa\":[\"Voer het nieuwe wachtwoord opnieuw in\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"D2yGaZ\":[\"Heractiveren\"],\"Pkpg2N\":[\"Plan heractiveren\"],\"wZxwNu\":[\"Lees hardop voor\"],\"C4TjpG\":[\"Minder lezen\"],\"8fZueG\":[\"Meer lezen →\"],\"wOfACA\":[\"Lees de gids voor problemen met transcripties en samenvattingen\"],\"6pSHJ5\":[\"Alleen-lezen\"],\"WU7BCa\":[\"Samenvatting van \",[\"0\"],\" lezen\"],\"tFk6c8\":[\"Transcript van \",[\"0\"],\" lezen\"],\"E3kwAc\":[\"Een gesprekssamenvatting lezen\"],\"LpWlYq\":[\"Een skill lezen\"],\"9UTzRO\":[\"Een transcript lezen\"],\"DYyFO2\":[\"Projectcontext lezen\"],\"ug1A83\":[\"Projectinstellingen lezen\"],\"IdmBAm\":[\"De documentatie lezen\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"Xc0UKh\":[\"reden: \",[\"0\"]],\"0f3uxy\":[\"Recente betalingen over alle accounts\"],\"mzcrRN\":[\"onlangs\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.s3check.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"BakXLg\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"462bGY\":[\"Spraakbericht opnemen\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"XmKjfh\":[\"Opname\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"yjom5N\":[\"Opnemen blijft werken, dus je deelnemers ondervinden er niets van.\"],\"BYO86u\":[\"Opnamelimiet bereikt\"],\"4IbgAX\":[\"Opnamepagina\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"POxNnV\":[\"De opname is gestopt bij de limiet van vijf minuten. Je opname wordt omgezet naar tekst.\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"rOwugh\":[\"Nu verversen\"],\"1STMKj\":[\"Lopende gesprekken vernieuwen\"],\"eEud7e\":[\"Verversen gestart\"],\"WqYAGe\":[\"Verversen werkt zodra de canvasservice klaar is.\"],\"zVuxvN\":[\"Vernieuwen…\"],\"6exX+8\":[\"Opnieuw genereren\"],\"PpFJd2\":[\"Samenvatting opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"HPitDS\":[\"Registreer | dembrane\"],\"UcLJ6I\":[\"Releasevideo\"],\"tF5Smn\":[\"Pagina opnieuw laden\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"Lbcvrt\":[\"Denk eraan dat je altijd de Feedback-knop kunt gebruiken voor suggesties. We waarderen je steun, en bedankt dat je dembrane gebruikt.\"],\"vqD7S+\":[\"Gebruikers herinneren om te verifiëren voordat ze klaar zijn\"],\"tmHC17\":[\"Herinnering verstuurd: supporttoegang staat nog aan\"],\"t/YqKh\":[\"Verwijderen\"],\"w61W3L\":[[\"0\"],\" verwijderen\"],\"G0aZvo\":[[\"0\"],\" verwijderen uit deze werkruimte? Ze verliezen toegang tot alle projecten erin.\"],\"VoKjPv\":[\"Avatar verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"tOkPHm\":[\"Uit chat verwijderen\"],\"1G/+Gj\":[\"Uit organisatie verwijderen\"],\"18PmZk\":[\"Uit organisatie verwijderen?\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"O90CN2\":[\"Logo verwijderen\"],\"99VIgC\":[\"Lid verwijderen\"],\"Gr8pvR\":[\"Het aangepaste logo verwijderen? In plaats daarvan wordt het standaardlogo van dembrane gebruikt.\"],\"itsN5H\":[\"Deze herinnering verwijderen?\"],\"eps54V\":[\"Verwijderd\"],\"nVEhnc\":[\"Verwijderd uit organisatie\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"6PsaMr\":[\"Chat hernoemen\"],\"TBZOgu\":[\"Verlenging\"],\"M7SqjM\":[\"Heropenen\"],\"rnkWZt\":[\"Antwoorden aan deelnemers\"],\"1jBoqr\":[\"Richtlijnen voor antwoorden\"],\"X9GEGX\":[\"Antwoordmodus\"],\"XyN13i\":[\"Reactie prompt\"],\"w1tLX2\":[\"rapport\"],\"gjpdaf\":[\"Rapport\"],\"e/MQa5\":[\"Rapport wordt al gegenereerd\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"hh/mvZ\":[\"Rapportgeneratie geannuleerd\"],\"sSy8vA\":[\"Rapport wordt gegenereerd...\"],\"v7O77U\":[\"Rapportgeneratie is geannuleerd. Je kunt hieronder een nieuw rapport starten.\"],\"fIBsri\":[\"Rapportlimiet bereikt\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"M9snPp\":[\"Rapport gepland\"],\"u9r3Di\":[\"Report templates staan op onze roadmap.\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"t9yxlZ\":[\"Rapporten\"],\"E1vQT6\":[[\"0\"],\"-training aanvragen\"],\"qbXLnJ\":[\"Een training aanvragen\"],\"WdCAhr\":[\"Toegang aanvragen\"],\"library.request.access\":[\"Toegang aanvragen\"],\"cH8Bhd\":[\"Aanvraag goedgekeurd\"],\"ViqcVt\":[\"Aanvraag afgewezen\"],\"jI02E7\":[\"Verzoek geweigerd.\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"8H5nRH\":[\"Wachtwoord reset aanvragen | dembrane\"],\"1RVBJe\":[\"Aanvraag verzonden\"],\"OQsKlA\":[\"Verzoek verstuurd. De beheerders van de werkruimte hebben bericht gekregen.\"],\"b44axA\":[\"Verzoek verstuurd. Wachten op de beheerders van de werkruimte.\"],\"7rVjfL\":[\"Supporttoegang aanvragen\"],\"XmXfrX\":[\"Verzoek ingetrokken.\"],\"Yx0Ud8\":[\"Aangevraagd\"],\"VRpBev\":[\"Aangevraagde en geplande trainingen. Markeer een training als voltooid om elke deelnemer een licentie van een jaar te geven.\"],\"PXQc8Y\":[\"Aanvrager\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"TMLAx2\":[\"Verplicht\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"iE/mLK\":[\"Vereist changemaker-niveau of hoger\"],\"QqW27M\":[\"Herplannen\"],\"6eIR/n\":[\"Opnieuw plannen naar\"],\"ZSTojU\":[\"Uitnodiging opnieuw versturen\"],\"8WtTog\":[\"Uitnodiging opnieuw versturen\"],\"OfhWJH\":[\"Resetten\"],\"I9EnzM\":[\"Filters resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"9uplIY\":[\"Wachtwoord resetten | dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"1K1kvB\":[\"Abonnement hervatten\"],\"85Qjyx\":[\"Updates hervatten\"],\"ioYnu6\":[\"ingetrokken\"],\"fM1Ldq\":[\"ingetrokken voor het dembrane-team\"],\"AWy1Kd\":[\"Een notitie voor het dembrane-team intrekken\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"+gmVxi\":[\"Hertranscriptie niet beschikbaar voor anonieme gesprekken\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"zHJTti\":[\"Nu opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"2fCpt5\":[\"Terug naar home\"],\"5k0NLb\":[\"Controleren\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"ECoHYI\":[\"Opnieuw bekijken\"],\"dSCHZP\":[\"Bekijk en bewerk hieronder. Dit voegt een controle toe die bij elk gesprek draait. Verificatie moet aan staan om de controle uit te voeren. Er verandert niets tot je hem toevoegt.\"],\"Tqa1v9\":[\"Controleer voordat je aanmaakt.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"OybZ3y\":[\"Bekijk mijn projectinstellingen en stel verbeteringen voor.\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"JuDdMd\":[\"Bekijk, bewerk en open elk gesprek in dit project.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Versiegeschiedenis\"],\"GXsAby\":[\"Intrekken\"],\"jjsSSc\":[\"Uitnodiging intrekken\"],\"HZn3qT\":[\"Licentie intrekken\"],\"TUcQqn\":[\"De uitnodiging aan \",[\"0\"],\" intrekken? Je kunt deze persoon later opnieuw uitnodigen.\"],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"GDvlUT\":[\"Rol\"],\"QjMlvE\":[\"Rol gewijzigd\"],\"jQ6I8X\":[\"Rol bijgewerkt\"],\"wbV5uX\":[\"Ruwe schatting om de achterstand aan transcripties weg te werken\"],\"xxCtZv\":[\"Rijen per pagina\"],\"RiQMUh\":[\"Bezig\"],\"i39IXZ\":[\"Verkoopfactuur uitgegeven.\"],\"tfDRzk\":[\"Opslaan\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"GsV2va\":[\"Toegang opslaan\"],\"BnmEvM\":[\"Opslaan als template\"],\"gjqGP0\":[\"Factuurgegevens opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"qjHQoH\":[\"Korting opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"5dVjYt\":[\"Template opslaan\"],\"idD8Ev\":[\"Opgeslagen\"],\"8AhhHy\":[\"Opgeslagen als doel van dit project.\"],\"XvjC4F\":[\"Opslaan...\"],\"JnhbnC\":[\"Scan of klik op de QR-code om het feedbackportaal te openen\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"SGnha7\":[\"Scan om deel te nemen aan dit project\"],\"NAe+hu\":[\"Gescand\"],\"epl7MR\":[[\"0\"],\" keer gescand\"],\"iQbBJn\":[\"QR gescand\"],\"gmB6oO\":[\"Plannen\"],\"wCGy0o\":[\"Rapport inplannen\"],\"qtjOKf\":[\"Training inplannen\"],\"4ba0NE\":[\"Ingepland\"],\"oOi11l\":[\"Scroll naar beneden\"],\"A1taO8\":[\"Zoeken\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"FyLaDj\":[\"Zoek op account, status, beschrijving\"],\"Uu9l/P\":[\"Zoek op account, werkruimte, organisatie, e-mail, tier\"],\"EJ1adC\":[\"Zoek en selecteer de gesprekken voor deze chat.\"],\"V0wu2W\":[\"Zoeken op organisatie\"],\"a4xYoA\":[\"Zoek chats\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"QU2qoc\":[\"Zoek op naam of e-mail\"],\"6/qy61\":[\"Zoek op partner, klant, werkruimte\"],\"l9vi1F\":[\"Zoek mensen\"],\"S1LvJy\":[\"Zoek mensen of typ een e-mailadres\"],\"hjqK3H\":[\"Zoek project of werkruimte\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"Ix2UwQ\":[\"Zoek projecten, organisaties, werkruimtes, instellingen…\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"5WYZKZ\":[\"Zoekresultaten\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"S2BNQs\":[\"Zoek werkruimtes\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"mHOLEz\":[\"Gesprekken doorzoeken\"],\"rI5Wda\":[\"Gesprekken doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"De documentatie doorzoeken\"],\"hoK9sq\":[\"Transcripten doorzoeken\"],\"/DtZhN\":[\"Transcripten doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Zoeken…\"],\"MpFIca\":[\"plekken\"],\"grt0Pu\":[\"Plekken\"],\"R4Xlsa\":[\"Plekken vol\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"9dDRnY\":[\"bekijk eerdere releases\"],\"ruKb0q\":[\"Bekijk abonnementen\"],\"ic1SaJ\":[\"Bekijk upgrade-opties\"],\"0sQPzI\":[\"Tot snel\"],\"XZRu52\":[\"Ziet gebruik en facturen. Geen toegang tot projecten of content.\"],\"rG3WVm\":[\"Selecteren\"],\"02ePaq\":[[\"0\"],\" selecteren\"],\"F7wP7I\":[\"Selecteer een gesprek om verder te gaan\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"NM2hyD\":[\"Selecteer een werkruimte\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"XSLOfq\":[\"Selecteer alle zichtbare (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"d3O/ZP\":[\"Selecteer ten minste één ander onderwerp voordat u dit verwijdert\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"OOZBXR\":[\"Gesprek selecteren\"],\"5z/6Uk\":[\"Gesprekken selecteren\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"1kovRK\":[\"Project selecteren\"],\"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\"],\"Dh99yE\":[\"Selecteer maximaal 2 focusgebieden voor je rapport\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \\\"Verifiëren\\\".\"],\"GnNO41\":[\"Selecteer wie erbij was. Iedereen krijgt een licentie van een jaar om dembrane te gebruiken in situaties met een hoog risico.\"],\"participant.select.microphone\":[\"Selecteer een 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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Verzenden\"],\"iJyjJ8\":[[\"0\"],\" uitnodigingen versturen\"],\"Hvnq/n\":[\"Uitnodiging versturen\"],\"FCfEtD\":[\"Uitnodigingen versturen\"],\"6M/wwR\":[\"Notitie versturen\"],\"4k2VbT\":[\"Verzoek versturen\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"j73b/6\":[\"Naar dembrane sturen\"],\"h69WC6\":[\"Verstuurd\"],\"EhSyaK\":[[\"sentCount\"],\" van \",[\"0\"],\" verstuurd. Bekijk de lijst hieronder.\"],\"oSzbte\":[\"verstuurd naar het dembrane-team\"],\"XyiDbI\":[\"Apart (klant)\"],\"OnmeuT\":[\"Scheid met komma's, spaties of nieuwe regels.\"],\"NprC8U\":[\"Sessienaam\"],\"SpfrD/\":[\"ingesteld door \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Doel instellen\"],\"eo7QNa\":[\"Instellen als beheerd\"],\"WAdU35\":[\"Zet op beheerd\"],\"c0oPm+\":[\"Zet op beheerde facturatie\"],\"FpHYiz\":[\"Na het aanmaken instellen met de assistent\"],\"JfvZ6H\":[\"Werkruimte instellen\"],\"J4TuIW\":[\"Stel je eerste organisatie in\"],\"aBwEIZ\":[\"Stel je organisatie in\"],\"OALBTr\":[\"Stel je werkruimte in | dembrane\"],\"2zDY/H\":[\"Bepaal wie het kan zien en kan deelnemen.\"],\"A6EhcS\":[\"We zetten alles voor je klaar\"],\"XYlJJT\":[\"Instellen\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"BVRW7i\":[\"Instellingen | dembrane\"],\"RPF/8g\":[\"Instellingen bijgewerkt\"],\"RDjuBN\":[\"Instellen\"],\"OuFYHU\":[\"Rapport delen\"],\"nzT4VD\":[\"Deel het project, volg live activiteit en spring vanaf één plek naar de belangrijkste tools.\"],\"8styFN\":[\"Deel met iemand\"],\"bM7Rp3\":[\"Deel met werkruimte\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"nnWGzO\":[\"Deel uw ideeën met ons team\"],\"4o0klJ\":[\"Deel je stem door de QR-code te scannen\"],\"jqnSi6\":[\"Gedeeld met\"],\"YJJJo3\":[\"Gedeeld met \",[\"0\"]],\"zIgU4M\":[\"Gedeeld met \",[\"0\"],\" en \",[\"overflow\"],\" anderen\"],\"Sdetlc\":[\"Kortste eerst\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"ZptNUh\":[\"Toon \",[\"hidden\"],\" meer\"],\"fp7sBF\":[\"Nog \",[\"overflow\"],\" tonen\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"9Resvw\":[\"Toon details\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"Wh1pao\":[\"Meer versies tonen\"],\"34iCWY\":[\"Alleen wijzigingen tonen\"],\"ersE21\":[\"Toon projecten\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"qB9H4B\":[\"Stappen tonen\"],\"EgEjZz\":[\"Volledige tekst tonen\"],\"RpOvMh\":[[\"0\"],\" van \",[\"1\"],\" weergegeven\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"qVf+dV\":[\"De eerste \",[\"0\"],\" van \",[\"shownCount\"],\" resultaten worden getoond. Verfijn je zoekopdracht om de rest te zien.\"],\"8Lpud3\":[\"Uw meest recente voltooide rapport wordt getoond.\"],\"HHR5pX\":[\"Wordt getoond in de organisatiekop en in onderwerpregels van e-mails.\"],\"6Uau97\":[\"Overslaan\"],\"participant.button.verify_prompt.skip\":[\"Overslaan\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"TTKYZB\":[\"Microfooncheck overgeslagen\"],\"3Czdpd\":[\"Slack-community\"],\"QCIy1f\":[\"Een deel van de audio in dit gesprek kon niet worden getranscribeerd. Open het gesprek om te zien welke delen misgingen.\"],\"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).\"],\"Pe0Fnh\":[\"Een deel van de recente audio kon niet worden getranscribeerd. De opname is opgeslagen.\"],\"C6+ZRl\":[\"Iemand\"],\"participant.modal.s3check.message\":[\"Iets blokkeert je verbinding. Je audio wordt niet opgeslagen tenzij dit wordt opgelost.\"],\"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\"],\"mwpVVD\":[\"Er is iets misgegaan bij het genereren van uw laatste rapport.\"],\"2WNFmv\":[\"Er is iets misgegaan bij het genereren van uw rapport.\"],\"aT53wg\":[\"Er ging iets mis aan mijn kant. Stuur je bericht opnieuw, dan probeer ik het nog een keer.\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"VXAsiD\":[\"Er ging iets mis tijdens het transcriberen. Probeer het opnieuw.\"],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"7PyY8A\":[\"Er ging iets mis. Open de link uit je e-mail opnieuw, of <0>begin opnieuw.\"],\"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\"]],\"sBJ5MF\":[\"Bronnen\"],\"65A04M\":[\"Spaans\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"uXsB4R\":[\"Personeel\"],\"eicGWU\":[\"Alleen personeel\"],\"vtV8C/\":[\"Door dembrane aangemaakt\"],\"NBA/uu\":[\"Standaardtoegang. Werkt samen in de werkruimtes waaraan ze zijn toegevoegd.\"],\"vv5o+Y\":[\"Vaste richtlijnen die de assistent meekrijgt in elke projectchat in deze werkruimte. Wordt automatisch opgeslagen.\"],\"ruoKG4\":[\"Start een chat\"],\"vPF04k\":[\"Start een nieuwe chat\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"nYTTLF\":[\"Starten in de assistentchat\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"slY7aQ\":[\"Opname gestart\"],\"W1KkjZ\":[\"Begint\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Blijft live gedurende\"],\"DpvswE\":[\"Blijft actueel\"],\"M66Dtk\":[\"Blijft actueel tot \",[\"0\"]],\"oWpwLu\":[\"Blijft actueel tot morgen \",[\"0\"]],\"HfI5Nm\":[\"Kom je er nog niet uit? Mail <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Opname stoppen en omzetten naar tekst\"],\"pozyoW\":[\"Gestopt op \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Gestopt op \",[\"stoppedAt\"],\". Bijgewerkt \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Gestopt.\"],\"YAtsqu\":[\"Gestopt. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategische Planning\"],\"BVSaId\":[\"Sterk wachtwoord\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"EDl9kS\":[\"Abonneren\"],\"zzDlyQ\":[\"Succes\"],\"aG+cH9\":[\"Dynamische suggesties voorstellen op basis van uw gesprek.\"],\"6xSPmn\":[\"Voorgesteld projectdoel\"],\"SLIAI6\":[\"Voorgestelde tagwijzigingen voor je project\"],\"kBrP+r\":[\"Voorgestelde verificatievraag\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"TQTiuh\":[\"Canvas voorstellen\"],\"VOjaCv\":[\"Projectdoel voorstellen\"],\"jt3eXx\":[\"Verificatievraag voorstellen\"],\"5+Cysq\":[\"Projectwijzigingen voorstellen\"],\"BN3mxb\":[\"Tagwijzigingen voorstellen\"],\"F1nkJm\":[\"Samenvatten\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"zdF7Nh\":[\"Samenvatting gegenereerd.\"],\"hlaWg4\":[\"Samenvatting opnieuw gegenereerd.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"/lNOlB\":[\"Supporttoegang beëindigd.\"],\"iD58Ik\":[\"Supporttoegang met 24 uur verlengd.\"],\"1iB0Qb\":[\"Supporttoegang verleend. Deze stopt automatisch na 24 uur.\"],\"H9ee/+\":[\"Supporttoegang uitgezet\"],\"Qm32kv\":[\"Supporttoegang uitgezet nadat de sessie eindigde\"],\"jtzW2z\":[\"Supporttoegang aangezet\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Overzetten naar self-serve\"],\"h1qzuU\":[\"Overzetten naar self-serve facturering\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"D+NlUC\":[\"Systeem\"],\"InGQz2\":[\"Systeemstatus\"],\"N3D6GN\":[\"Tag verwijderd\"],\"OYHzN1\":[\"Trefwoorden\"],\"gGG+ax\":[\"Tags zijn de woorden waaruit deelnemers in de portal kunnen kiezen. Er verandert niets tot je ze toepast.\"],\"kNzjto\":[\"Tags bijgewerkt. Je kunt ze altijd bijstellen in de portaleditor.\"],\"tFhVJf\":[\"Breng me naar \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig.\"],\"participant.refine.make.concrete.description\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig.\"],\"fLzFsM\":[\"Praat met ons over training\"],\"VC5y9X\":[\"Teams in de EU die dembrane gebruiken in scenario's die volgens de EU AI Act als hoog risico worden aangemerkt, moeten een training volgen voordat ze hun werkruimte gebruiken.\"],\"Jzcupi\":[\"Vertel de beheerders van de werkruimte waarvoor je toegang nodig hebt. Deze notitie is optioneel.\"],\"QCchuT\":[\"Template toegepast\"],\"JcCDm9\":[\"Sjabloon aangemaakt\"],\"ZTgE3k\":[\"Sjabloon verwijderd\"],\"5OwALL\":[\"Template naam\"],\"PQb/If\":[\"Sjabloon bijgewerkt\"],\"iTylMl\":[\"Sjablonen\"],\"4Y5H+g\":[\"Voorwaarden\"],\"qYLZL2\":[\"testmodus\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"FT6q8r\":[\"Die opname is te lang om te versturen. Neem een kortere notitie op.\"],\"a/CreD\":[\"Dat was te kort om te transcriberen. Houd de opname iets langer vast.\"],\"rKnNUJ\":[\"Misschien heeft de beheerder hem geannuleerd, of is er met de link geknoeid. Vraag degene die je heeft uitgenodigd om een nieuwe te sturen.\"],\"Ie4DcG\":[\"De assistent vergeet dit in elke toekomstige chat.\"],\"jvdqI1\":[\"De assistent stelt voor om \",[\"headlineFields\"],\" bij te werken. Wacht op jou.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"NPynOC\":[\"De verbinding is weggevallen. We proberen automatisch opnieuw.\"],\"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\"],\"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\"],\"x0q6pF\":[\"Het gratis plan bevat 1 chat per werkruimte. Vraag een beheerder van de organisatie om te upgraden.\"],\"2VRtP/\":[\"Het gratis plan bevat 1 chat per werkruimte. Upgrade om meer chats te starten.\"],\"3rUXa7\":[\"Het gratis plan bevat 1 werkruimte per organisatie. Upgrade om meer werkruimtes aan te maken.\"],\"IUkPfk\":[\"Het doel stuurt de rapporten, canvassen en suggesties van de assistent in dit project.\"],\"IwNUoA\":[\"De hostgids is wat begeleiders lezen voordat ze een sessie draaien.\"],\"oRhAnS\":[\"De uitnodiging is verstuurd naar \",[\"invitedEmail\"],\", maar je bent ingelogd als \",[\"myEmail\"],\". Log uit en meld je aan met het juiste adres, of vraag de beheerder om \",[\"myEmail\"],\" opnieuw uit te nodigen.\"],\"lrIONj\":[\"De link is misschien privé, of hij is verplaatst. Vraag degene die de link heeft gedeeld om het te controleren.\"],\"o5ki/a\":[\"Misschien is de link verwijderd, of is hij naar een ander e-mailadres gestuurd. Vraag degene die je heeft uitgenodigd om een nieuwe te sturen.\"],\"jnNEHx\":[\"De methodologie is de manier waarop dit project is opgezet en wordt begeleid.\"],\"WO8jr5\":[\"De microfoon is nog steeds geblokkeerd. Pas het aan in je browserinstellingen en controleer het daarna opnieuw.\"],\"LofrVg\":[\"De organisatie waarvoor deze uitnodiging was, is verwijderd. Er is niets om aan deel te nemen.\"],\"K3dQWG\":[\"De pagina waar dit antwoord naar verwijst.\"],\"Khtiqr\":[\"De vorige versies zijn hieronder nog beschikbaar.\"],\"D4If9P\":[\"De projectcontext wordt gelezen door transcriptie, chatantwoorden en canvasgeneratie, dus een wijziging hier raakt meer dan een scherm.\"],\"s+NYkH\":[\"Het rapport kan tot 5 minuten na de gekozen tijd starten.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"otcrOk\":[\"Het transcript kwam niet terug. Controleer je verbinding en probeer het opnieuw.\"],\"sQgHJn\":[\"De transcriptie is niet afgerond. Probeer het opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"Ws5p1J\":[\"De werkruimte waarvoor deze uitnodiging was, is verwijderd. Er is niets om aan deel te nemen.\"],\"mbsBu1\":[\"Hun vertegenwoordiger die eigenaar is van deze data. Diegene wordt toegevoegd als gratis waarnemer en wordt het overdrachtscontact.\"],\"k59/22\":[\"Hun vertegenwoordiger die eigenaar is van deze data. Diegene wordt toegevoegd als gratis waarnemer, krijgt per e-mail bericht dat hij de data-eigenaar is en wordt het overdrachtscontact.\"],\"p9LlT0\":[\"Het scherm is vergrendeld of het tabblad is niet actief. De opname pauzeert tot ze terugkomen.\"],\"FEr96N\":[\"Thema\"],\"tn4pEQ\":[\"daar\"],\"fm15Og\":[\"Er zijn geen andere werkruimtes waarnaar je deze projecten kunt verplaatsen.\"],\"PmKiRy\":[\"Er zijn geen andere werkruimtes waarnaar je dit project kunt verplaatsen.\"],\"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.\"],\"4MElLm\":[\"Er zat geen spraak in die opname.\"],\"D8iLCl\":[\"Deze wijzigingen zijn toegepast op je project.\"],\"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.\"],\"UCmdZb\":[\"Deze instellingen zijn alleen-lezen. Alleen organisatiebeheerders kunnen de projectstandaarden wijzigen.\"],\"7Ye3FL\":[\"Deze tagwijzigingen zijn toegepast op je project.\"],\"81wkbM\":[\"Deze werkruimtes worden apart gefactureerd. Elke persoon die je toevoegt neemt een plek in \",[\"billingContextCount\"],\" factureringscontexten in, die elk afzonderlijk worden gefactureerd.\"],\"0ZaC+v\":[\"Deze werkruimtes hebben hun eigen abonnement, beheerd vanuit elke werkruimte. Ze maken geen deel uit van het abonnement van deze organisatie.\"],\"8AOwf0\":[\"Ze worden toegevoegd als leden. Je kunt er later meer toevoegen.\"],\"Ed99mE\":[\"Denken...\"],\"WLBoIc\":[\"Dit account heeft een lopend Mollie-abonnement. Zeg dat eerst op.\"],\"3YoDz8\":[\"Dit account heeft een actief abonnement. Vraag de klant om het op te zeggen via de factureringspagina voordat je het niveau aanpast.\"],\"kUtEeG\":[\"Dit gedeelte is voor dembrane-personeel. Denk je dat je toegang zou moeten hebben? Mail dan support@dembrane.com.\"],\"7eQeNC\":[\"Deze browser kan geen audio opnemen. Chrome, Edge en Safari wel.\"],\"participant.modal.s3check.suggestions\":[\"Dit kan gebeuren wanneer een VPN of firewall de verbinding blokkeert. Probeer je VPN uit te schakelen, over te schakelen naar een ander netwerk (bijv. mobiele hotspot) of neem contact op met je IT-afdeling voor hulp.\"],\"XR7DRS\":[\"Dit canvas kon niet worden bijgewerkt.\"],\"fztlir\":[\"Dit verandert hoe transcripten vanaf nu worden opgeslagen. Gesprekken die al zijn opgenomen behouden de vorm waarin ze zijn bewaard.\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"XVmrFS\":[\"Dit veld bevat al de voorgestelde waarde.\"],\"lja/om\":[\"Deze informatie is anoniem\"],\"VqK4uu\":[\"Dit inzicht is verwijderd\"],\"1p9Zmk\":[\"Deze uitnodiging is al gebruikt\"],\"BGIpSK\":[\"Deze uitnodiging is verlopen\"],\"tU7tLa\":[\"Deze uitnodiging is niet meer geldig\"],\"u3BWAB\":[\"Deze uitnodiging is niet voor dit account\"],\"fcMrKf\":[\"Deze uitnodigingslink is niet geldig\"],\"ZPOM9u\":[\"Deze uitnodigingslink is niet geldig voor dit account\"],\"kdZCIM\":[\"Deze uitnodiging beslaat \",[\"0\"],\" factureringscontexten, die elk apart worden gefactureerd:\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"bSbU2m\":[\"Dit is een overzicht van elke organisatie en werkruimte waarvan je lid bent.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"AypXpi\":[\"Dit is nog niet opgeslagen.\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"BLwPhM\":[\"Dit is niet beschikbaar voor jou\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"2033EA\":[\"Deze link is al gebruikt. Je bent ingelogd en kunt aan de slag.\"],\"MR5ygV\":[\"Deze link is niet meer geldig\"],\"Aznd4+\":[\"Hiermee zet je de training op geannuleerd. Je kunt hem later via hetzelfde menu weer openen.\"],\"oW3yYY\":[\"Deze maand\"],\"YN8nMm\":[\"Hiermee krijgt de werkruimte een eigen facturerings- en datacontext. De projecten verplaatsen niet meer vrij mee met de rest van je organisatie.\"],\"KpeRTX\":[\"Deze organisatie heeft nog geen leden om te trainen.\"],\"DHgelW\":[\"Deze organisatie bestaat niet meer\"],\"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.\"],\"+9D2sa\":[\"Dit deel van de pagina kon niet laden. Opnieuw laden lost het meestal op. Blijft het gebeuren, ga dan terug naar home.\"],\"SWBo09\":[\"deze persoon\"],\"CWAQCC\":[\"Dit project was niet bereikbaar.\"],\"bon4/x\":[\"Dit project hoort niet bij een werkruimte.\"],\"ocBOyA\":[\"Dit project is zichtbaar voor iedereen in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"Dit project is zichtbaar voor iedereen in de werkruimte.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"3dSMKs\":[\"Hiermee zet je het account op facturering die dembrane beheert: geen automatische Mollie-afschrijvingen en geen automatisch verlopen.\"],\"xfqtI+\":[\"Deze korte rondleiding laat onze nieuwe indeling in drie niveaus zien: organisaties, workspaces en projecten. Bekijk de video en leer hoe je toegang beheert, je werk organiseert en onze nieuwe analysetools gebruikt.\"],\"64Ko7C\":[\"Dit record heeft geen factureringsaccount.\"],\"SQuwgX\":[\"Hiermee verwijder je het gesprek uit het project. Dit kun je niet terugdraaien.\"],\"9zTDpd\":[\"Hiermee verwijder je de licentie van één jaar voor \",[\"0\"],\". Ze tellen dan niet meer als getraind en verliezen toegang tot instellingen met hoog risico. Doe dit alleen als de licentie per ongeluk is toegekend.\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"WsV2BS\":[\"Dit verzoek duurde te lang, dus ik heb het gestopt. Stuur het opnieuw, dan probeer ik het nog een keer.\"],\"bKWJ+t\":[\"Hiermee gaat het account terug naar standaard gratis facturering.\"],\"XK9N+e\":[\"Hiermee komt de werkruimte terug bij de gedeelde facturering van je organisatie en wordt de externe data-eigenaar verwijderd.\"],\"cjRyq5\":[\"Dit bepaalt de taal die deelnemers in het portaal zien, inclusief de vragen die ze krijgen.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"ABJz8Q\":[\"Deze verificatievraag is toegevoegd aan je project.\"],\"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.\"],\"mSuhYn\":[\"deze werkruimte\"],\"8b9oJD\":[\"Deze werkruimte heeft de opnamelimiet bereikt. Upgrade om meer audio te uploaden.\"],\"fZZhNF\":[\"Deze werkruimte heeft de inbegrepen opname-uren gebruikt. Vraag een beheerder van de organisatie om te upgraden.\"],\"nHYAFS\":[\"Deze werkruimte heeft de inbegrepen opname-uren gebruikt. Upgrade om spraak te blijven gebruiken.\"],\"1pzlg0\":[\"Deze werkruimte heeft zijn opname-uren gebruikt. Upgrade om spraak te blijven gebruiken.\"],\"teN+SJ\":[\"Deze werkruimte wordt apart gefactureerd\"],\"/HZ7l/\":[\"Deze werkruimte wordt gefactureerd via \",[\"orgName\"],\". Abonnementen en betaling worden in één keer voor de hele organisatie beheerd, en elke werkruimte deelt dit.\"],\"Khe1Xt\":[\"Deze werkruimte zit op een niveau dat geen extra plekken toelaat. Upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"vvEr5j\":[\"Deze werkruimte bestaat niet meer\"],\"+FiXAn\":[\"Deze werkruimte deelt de facturering van de organisatie. Pas het niveau aan op het organisatieaccount, daar geldt hij voor elke interne werkruimte in de organisatie.\"],\"QnWmgF\":[\"Deze werkruimte is op \",[\"sinceDate\"],\" teruggezet naar \",[\"tier\"],\". Sommige functies zijn beperkt.\"],\"DGZ0dc\":[\"Drie snelle stappen en je bent binnen.\"],\"nNGGkA\":[\"Niveau\"],\"qPIf5y\":[\"Niveau gewijzigd\"],\"LhMjLm\":[\"Tijd\"],\"cklVjM\":[\"Tijdlijn\"],\"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.\"],\"Zb3ANR\":[\"Tip: U kunt ook een sjabloon maken van elk chatbericht dat u verstuurt, of een bestaand sjabloon dupliceren.\"],\"MHrjPM\":[\"Titel\"],\"1xkgU6\":[\"Titel automatisch gegenereerd\"],\"ouSxtJ\":[\"Titel gegenereerd uit het gesprek\"],\"uqnBvS\":[\"Titelrichtlijn\"],\"Mozc0C\":[\"Titel of deelnemer\"],\"dMtLDE\":[\"naar\"],\"xLXwHL\":[\"Om een nieuwe tag toe te wijzen, maak je deze eerst aan in de portalinstellingen.\"],\"qDfpLj\":[\"Om ons te helpen actie te ondernemen, probeer aan te geven waar het gebeurde en wat u probeerde te doen. Bij bugs, vertel ons wat er mis ging. Bij ideeën, vertel ons welke behoefte het voor u zou oplossen.\"],\"UEleqp\":[\"Om iemand te promoveren tot lid van de werkruimte, voeg je deze persoon eerst toe aan de organisatie en nodig je daarna opnieuw uit vanuit de werkruimte.\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"li4gmn\":[\"Te veel om hier te tonen. De assistent leest ze in delen door.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Onderwerp succesvol aangemaakt\"],\"Sawj4V\":[\"Onderwerp verwijderd\"],\"xcp3ny\":[\"Onderwerp label\"],\"vQoAht\":[\"Onderwerp bijgewerkt\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"72c5Qo\":[\"Totaal\"],\"kFzhfN\":[\"Nu te betalen totaal\"],\"McSz22\":[\"Getraind\"],\"kMf0pe\":[\"Getraind tot \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training aangemaakt\"],\"p9JlS7\":[\"Trainingsdatum\"],\"1gL8o6\":[\"Training aangevraagd. We nemen contact op om het in te plannen.\"],\"KxpIJA\":[\"Training vereist voor gebruik met hoog risico\"],\"VGao62\":[\"Training bijgewerkt\"],\"miJqd2\":[\"Trainingsverificatie is hier niet beschikbaar.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainingen\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"K3Fxr/\":[\"transcriptfragment\"],\"MzWrba\":[\"Transcriptiefout\"],\"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.\"],\"lhkaAC\":[\"Proef\"],\"hDv2MY\":[\"Proef- en gratis accounts, niet meegerekend in het betalende totaal.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Problemen met inloggen? Neem contact op via support@dembrane.com.\"],\"KDw4GX\":[\"Opnieuw proberen\"],\"u62wQ4\":[\"Probeer het zo meteen opnieuw.\"],\"7dRUDh\":[\"Probeer Agentic\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"sZgR8D\":[\"Probeer het\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"q1ok4Y\":[\"Wil je je aansluiten bij een bestaande organisatie?\"],\"portal.anonymization.disable.confirm\":[\"Uitschakelen\"],\"QOnnq7\":[\"Anonimisering uitschakelen?\"],\"portal.anonymization.disable.warning\":[\"Het uitschakelen van anonimisering terwijl opnames gaande zijn kan onbedoelde gevolgen hebben. Actieve gesprekken worden ook beïnvloed tijdens de opname. Gebruik dit met voorzichtigheid.\"],\"JPF8BN\":[\"Je spraaknotitie wordt omgezet naar tekst\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Typ <0>\",[\"0\"],\" om te bevestigen.\"],\"hHFgGr\":[\"Typ een bericht of druk / voor templates...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"KfLidz\":[\"Typt\"],\"dubg//\":[\"Oekraïens (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"8ryDoK\":[\"Onder je organisatie\"],\"HYUJF4\":[\"Onze nieuwe structuur uitgelegd\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"wF2wqQ\":[\"Onbekende datum\"],\"rIOkYf\":[\"Onbekend lid\"],\"1MTTTw\":[\"Onbekende reden\"],\"JVW+Ic\":[\"Onbeperkt aantal uren\"],\"nWMRxa\":[\"Losmaken\"],\"vSdeRU\":[\"Maak eerst een project los (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Maak eerst een project los (max 3)\"],\"dx+iaL\":[\"Project losmaken\"],\"KuVpz+\":[\"Ongelezen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"nOxIVE\":[\"Zonder tag\"],\"VFYmmV\":[\"Vink een veld uit om het precies te laten zoals het is.\"],\"1hTGn4\":[\"tot \",[\"0\"]],\"wja8aL\":[\"Naamloos\"],\"CoInOF\":[\"Naamloos canvas\"],\"LOM/+N\":[\"Naamloos gesprek\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"ZjKqrC\":[\"Naamloze methodologie\"],\"PZKdTd\":[\"Naamloos rapport\"],\"+TYrZZ\":[\"Tot \",[\"0\"],\" deelnemers\"],\"RHUiSf\":[\"Tot \",[\"0\"],\" deelnemers zijn inbegrepen.\"],\"EkH9pt\":[\"Bijwerken\"],\"H/FUVb\":[\"Updateritme\"],\"x4Xp3c\":[\"bijgewerkt\"],\"Ef5vag\":[\"Bijgewerkt \",[\"0\"],\" · \"],\"+vId6X\":[\"Bijgewerkt \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Bijgewerkt.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Werkt elke \",[\"cadenceMinutes\"],\" minuten bij tot \",[\"0\"],\".\"],\"luwc/s\":[\"Werkt elke \",[\"cadenceMinutes\"],\" minuten bij.\"],\"V7w3WZ\":[\"Notitie voor het dembrane-team bijwerken\"],\"IUC5Nz\":[\"Opgeslagen geheugen bijwerken\"],\"26+vhb\":[\"Projecttags bijwerken\"],\"yM+69W\":[\"Upgraden naar \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade om dit aan de chat toe te voegen\"],\"0s5x5X\":[\"Upgrade om verder te gaan\"],\"3I+le5\":[\"Upgrade om een titel voor dit gesprek te genereren\"],\"GFLM5d\":[\"Upgrade om samenvattingen voor dit gesprek te genereren\"],\"TB+04S\":[\"Upgraden om te ontgrendelen\"],\"A23Uef\":[\"Upgrade je plan om meer rapporten in deze werkruimte te maken.\"],\"5x82bP\":[\"Upgrade je plan om meer werkruimtes in deze organisatie te maken.\"],\"xeIX9S\":[\"Upgrade je werkruimte om audio te downloaden van gesprekken die na de limiet zijn opgenomen\"],\"24kHLh\":[\"Upgrade je werkruimte om samenvattingen van nieuwe gesprekken te bekijken.\"],\"mahIMH\":[\"Upgrade je werkruimte om dit gesprek te bekijken\"],\"3symHf\":[\"Upgrade je werkruimte om transcripties van nieuwe gesprekken te bekijken.\"],\"ONWvwQ\":[\"Uploaden\"],\"V/OOEy\":[\"Upload een custom logo om het dembrane logo te vervangen op het portale, dashboard, rapporten, en host gids.\"],\"AIGPM8\":[\"Avatar uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"4Z7WLN\":[\"Uploadlimiet bereikt\"],\"6XdQf/\":[\"Uploadlimiet bereikt. Upgrade je werkruimte.\"],\"QfiWpJ\":[\"Logo uploaden\"],\"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://\"],\"7FaY4u\":[\"Gebruik\"],\"6YK+1q\":[\"Gebruik · \",[\"0\"]],\"9TZVmX\":[\"Gebruik en facturering\"],\"589hpo\":[\"Gebruik en facturering, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Gebruik en facturering, betalingen, partnergrootboek. Elke Directus-beheerder heeft toegang.\"],\"9rNv3P\":[\"Gebruik wordt bijgehouden voor je organisatie. Bekijk het in de organisatie-instellingen.\"],\"RuzOGi\":[\"Gebruik deze cyclus\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"5pcSZ4\":[\"Gebruikt op je facturen. Prijzen zijn exclusief btw.\"],\"vSPQ9U\":[\"Verkeerd adres gebruikt? <0>Registreer opnieuw.\"],\"lcDO4m\":[\"Gebruikersinstellingen\"],\"7sNhEz\":[\"Gebruikersnaam\"],\"1Nt3Kg\":[\"Gebruik standaard dembrane-logo\"],\"R3ZvsJ\":[\"Gebruik je dembrane in de zorg, het onderwijs, werving, kritieke infrastructuur, rechtshandhaving of justitie? Dat zijn risicovolle contexten en vereisen een verplichte training voordat je live gaat.\"],\"08yTaL\":[\"Gebruikt fixture-data.\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"Ttw+e+\":[\"Btw-nummer\"],\"/n0QEP\":[\"Btw-regio\"],\"NBpTc8\":[\"Verificatie op het eindscherm\"],\"participant.modal.verify_prompt.title\":[\"Herinnering om te verifiëren\"],\"participant.banner.verification_required\":[\"Verificatie vereist\"],\"OKGlwv\":[\"Verificatieonderwerpen\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"QDEWii\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"bepwgB\":[\"Geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"uSMfoN\":[\"Verifiëren\"],\"participant.button.verify_prompt.verify\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code controleren\"],\"MBOY4U\":[\"E-mail verifiëren\"],\"w6Mgbs\":[\"Onderwerpen verifiëren\"],\"bl9677\":[\"Verifieert\"],\"iOnm3W\":[\"Je e-mailadres wordt geverifieerd.\"],\"eE0JZ4\":[\"Versie\"],\"IYNSdp\":[\"Versies\"],\"YFvfo/\":[\"Erg stil op dit moment. Check of de microfoon niet uitstaat.\"],\"jpctdh\":[\"Weergave\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"j45ntU\":[\"Uitnodiging bekijken\"],\"D4e7re\":[\"Bekijk je reacties\"],\"rUp0hp\":[\"Je bekijkt \",[\"0\"]],\"P0bGkp\":[\"Zichtbare kolommen\"],\"S3T9oe\":[\"Zichtbaar voor iedereen in \",[\"workspaceName\"]],\"fedNgo\":[\"Zichtbaar voor iedereen in deze werkruimte\"],\"754W/v\":[\"Zichtbaar voor iedereen in deze werkruimte. Laat uit om het persoonlijk te houden.\"],\"RdG06l\":[\"Bezoekersgegevens\"],\"KAXSwC\":[\"Spraak\"],\"Ln6Gy/\":[\"Wachten tot gesprekken zijn afgerond voordat een rapport wordt gegenereerd.\"],\"PVqk8Y\":[\"Loopt de installatie met je door en stelt volgende stappen voor.\"],\"0/aCt7\":[\"Volg live opnames, transcriptievoortgang en fouten in dit project terwijl ze gebeuren.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"kSJ1rO\":[\"We konden je betaalmethode niet belasten\"],\"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.\"],\"mW8QSA\":[\"We konden de pagina die je zocht niet vinden. Misschien is hij verplaatst.\"],\"UStbqQ\":[\"We konden deze organisatie niet laden. Probeer het zo meteen opnieuw.\"],\"viuoK1\":[\"We konden het gebruik van deze organisatie niet laden.\"],\"huDAZ9\":[\"We konden de werkruimtes van deze organisatie niet laden. Sommige opties ontbreken mogelijk. Probeer te vernieuwen.\"],\"Ay7FNv\":[\"We konden dit project niet laden. Controleer je verbinding en probeer het opnieuw.\"],\"Z2y7ap\":[\"We konden deze werkruimte niet laden. Probeer het zo meteen opnieuw.\"],\"zPjLTr\":[\"We konden het gebruik van deze werkruimte niet laden.\"],\"y5BiQM\":[\"We konden je organisaties niet laden. Controleer je verbinding en probeer het opnieuw.\"],\"+jHAFm\":[\"We konden je openstaande uitnodigingen niet laden. Probeer het zo meteen opnieuw.\"],\"gNHeDV\":[\"We konden je betaalmethode niet bijwerken. Je oude methode is nog actief. Probeer het opnieuw.\"],\"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.\"],\"GC6z0d\":[\"We hebben een verificatielink naar <0>\",[\"email\"],\" gestuurd. Klik erop om het instellen van je account af te ronden.\"],\"9i8m90\":[\"We hebben je een verificatielink gestuurd. Klik erop om het instellen van je account af te ronden.\"],\"S+HYhm\":[\"We konden je methode nog steeds niet belasten. Werk deze bij en probeer het opnieuw.\"],\"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.\"],\"/621Bs\":[\"We horen graag van u. Of u nu een idee heeft voor iets nieuws, een bug heeft gevonden, een vertaling heeft gezien die niet klopt, of gewoon wilt delen hoe het gaat.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We hebben organisaties toegevoegd zodat je projecten kunt ordenen en delen met collega's. Alles wat je eerder had, is er nog. We hebben alleen een naam voor je organisatie nodig.\"],\"Yc3tsw\":[\"We hebben een verificatielink naar <0>\",[\"0\"],\" gestuurd. Open de e-mail en klik op de link om verder te gaan.\"],\"fylXkT\":[\"Zwak netwerk\"],\"7cUq8g\":[\"Zwak wachtwoord\"],\"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.\"],\"3rkRxG\":[\"Webhooks zijn niet ingeschakeld voor deze omgeving.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"ZVR4oQ\":[\"Welkom terug, \",[\"displayName\"]],\"OM+lH0\":[\"Welkom bij dembrane\"],\"P3EAlh\":[\"Welkom bij dembrane chat. Selecteer de gesprekken die je wilt analyseren en vraag dan naar details, citaten en samenvattingen.\"],\"Fx+f0A\":[\"Welkom bij dembrane!\"],\"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.\"],\"J2FSRx\":[\"Welkom, \",[\"displayName\"]],\"klH6ct\":[\"Welkom!\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"nCQNTt\":[\"Wat wil je te weten komen?\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"WSxXHT\":[\"Waarvoor wil je dembrane gebruiken?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"B5v8nx\":[\"Wat er verstuurd wordt\"],\"T91psD\":[\"Wat zou hieraan anders moeten zijn?\"],\"pVIWuw\":[\"Wat moet ECHO analyseren of genereren uit de gesprekken?\"],\"yWXuOc\":[\"Welke thema's kwamen naar voren in de gesprekken in dit project?\"],\"LfRBcL\":[\"Welke thema's kwamen naar voren?\"],\"pd3Yt/\":[\"Wat dit project deze cyclus verbruikt.\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"3ePd3I\":[\"Wat is er nieuw\"],\"k7eeqO\":[\"Wat is de belangrijkste reden?\"],\"W5R8OO\":[\"Wanneer een deelnemer het portaal opent, hun details invoert en een gesprek begint\"],\"myUTw1\":[\"Wanneer er een rapport is gegenereerd voor het project\"],\"7t3vo1\":[\"Wanneer alle audio is geconverteerd naar tekst en het volledige transcript beschikbaar is\"],\"N0GETg\":[\"Wanneer worden webhooks geactiveerd?\"],\"KmUKwU\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Anonieme gesprekken deactiveren ook audio-afspelen, audio-download en hertranscriptie om de privacy van deelnemers te beschermen. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"MEmr1I\":[\"Wanneer je het gesprek afmaakt, worden deelnemers die nog niet hebben geverifieerd gevraagd om te verifiëren of over te slaan\"],\"BaiSBQ\":[\"Staat dit aan, dan kan het supportteam van dembrane deze werkruimte in om je te helpen. Hun toegang stopt automatisch na 24 uur.\"],\"SgIrVC\":[\"Zodra deelnemers de QR-code scannen, verschijnen ze hier en bewegen ze live door de fases.\"],\"/dAMl1\":[\"Wanneer moet het rapport gegenereerd worden?\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"JwZibo\":[\"Waar wil je naartoe?\"],\"msYPX5\":[\"Waar wil je beginnen?\"],\"kqHiF1\":[\"Bij welke organisatie hoort deze werkruimte?\"],\"lwFEDE\":[\"Welke organisatie is eigenaar van de data van deze werkruimte? Dit bepaalt de data- en compliancecontext.\"],\"wZht80\":[\"Wie dit project kan zien en eraan kan samenwerken.\"],\"P9WL8r\":[\"Wie kan dit project zien?\"],\"QDRAyJ\":[\"Wie in je team een actuele trainingslicentie heeft. Boek een training via de Training-weergave van je organisatie.\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"EpZ9+F\":[\"wens\"],\"QdkkH5\":[\"Met externe klanten\"],\"KWhZCH\":[\"Binnen mijn organisatie\"],\"qJ0J+6\":[[\"0\"],\" stappen doorlopen\"],\"B6dzt1\":[\"Bezig met je antwoord...\"],\"NwM/eB\":[\"werkruimte\"],\"pmUArF\":[\"Werkruimte\"],\"VmdouC\":[\"Werkruimte-account\"],\"Zqthj7\":[\"Werkruimte-acties\"],\"ZBKhLV\":[\"Werkruimte aangemaakt.\"],\"1hyEG5\":[\"Werkruimtedata nog niet geladen. Probeer het opnieuw.\"],\"UlhdTP\":[\"Werkruimte verwijderd\"],\"Ep8k4i\":[\"Werkruimte is vol\"],\"P29tQ5\":[\"Werkruimtelimiet bereikt\"],\"Y0Fj4S\":[\"Werkruimtelogo\"],\"CozWO1\":[\"Naam van de werkruimte\"],\"dg0Efy\":[\"Naam van de werkruimte. Wordt automatisch opgeslagen.\"],\"wHWiPE\":[\"Werkruimte hernoemd\"],\"XAW6X5\":[\"Werkruimte-instellingen | dembrane\"],\"wowvFW\":[\"Gast met alleen toegang tot de werkruimte. Niet toegevoegd aan de organisatie.\"],\"JKU2hI\":[\"werkruimtes\"],\"pmt7u4\":[\"Werkruimtes\"],\"YRelrK\":[\"Werkruimtes apart gefactureerd\"],\"vMCu+n\":[\"Werkruimtes in dit account\"],\"XLYmK5\":[\"Werkruimtes in deze organisatie waar je nog geen lid van bent. Als admin kun je jezelf toevoegen om ze te beheren.\"],\"lBVr4U\":[\"Werkruimtes die met je zijn gedeeld\"],\"++IGvT\":[\"Werkruimtes waar je lid van kunt worden\"],\"JEHySj\":[\"Werkruimtes waarvoor je bent uitgenodigd. Accepteer om te gaan samenwerken.\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"Exc/LI\":[\"Verkeerd adres? E-mail wijzigen\"],\"l75CjT\":[\"Ja\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"av/PD9\":[\"jou\"],\"kWJmRL\":[\"Jij\"],\"VHG+Js\":[\"Je hebt al toegang tot deze werkruimte.\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"rKP2WF\":[\"Jij bent de data-eigenaar\"],\"EDIsb+\":[\"Je kunt dit altijd aanpassen in de instellingen.\"],\"fzU5ll\":[\"Je kunt dit later aanpassen in de projectinstellingen.\"],\"uGP87g\":[\"Je kunt dit later aanpassen in de werkruimte-instellingen.\"],\"WS92Fk\":[\"Je kunt wegnavigeren en later terugkomen. Je rapport wordt op de achtergrond verder gegenereerd.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"+IqtlU\":[\"Je kunt ze later opnieuw uitnodigen vanuit elke werkruimte.\"],\"ORA5nz\":[\"U kunt het hieronder opnieuw proberen.\"],\"96ERwL\":[\"Je kunt nog geen werkruimte aanmaken\"],\"bHCu+u\":[\"Je kunt jezelf niet uitnodigen.\"],\"vj8JjD\":[\"Je hebt geen toestemming om te transcriberen in dit project.\"],\"UjkUrJ\":[\"Je hebt geen toegang tot deze werkruimte.\"],\"3x5+PU\":[\"Je hebt geen rechten om werkruimtes aan te maken in die organisatie. We vallen terug op je primaire organisatie.\"],\"fkXBUO\":[\"Je hebt geen rechten om uit te nodigen voor een werkruimte in deze organisatie.\"],\"QYdixc\":[\"Je hebt een openstaande uitnodiging\"],\"ombH/9\":[\"Je hebt een openstaande uitnodiging voor \",[\"0\"],\". Open deze om lid te worden van de organisatie.\"],\"8v7ix0\":[\"Je hebt een openstaande uitnodiging voor \",[\"0\"],\". De beheerder moet een plek vrijmaken voordat je lid kunt worden.\"],\"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.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"fopZ8o\":[\"Je hebt supporttoegang tot deze werkruimte. Deze stopt automatisch op \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"Je bent nog geen lid van een werkruimte in deze organisatie.\"],\"participant.modal.verify_prompt.description\":[\"Je hebt nog geen resultaten geverifieerd. Wil je verifiëren voordat je afsluit?\"],\"PjAkjf\":[\"Je hebt de werkruimte verlaten\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"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.\"],\"t6Ti2e\":[\"Je hebt een uitnodiging van een collega nodig\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"MLw3ff\":[\"Je hebt deze run gestopt.\"],\"N/N2Av\":[\"Je wordt als admin toegevoegd aan \",[\"0\"],\" privéwerkruimtes. Ze verschijnen daarna meteen in je zijbalk.\"],\"cehffY\":[\"Je wordt als admin toegevoegd aan \",[\"singleName\"],\". Die verschijnt daarna meteen in je zijbalk.\"],\"OR5x71\":[\"Al je projecten staan voor je klaar.\"],\"hu3KYo\":[\"Je komt in een chat waar dembrane je helpt het project vorm te geven, voordat je gesprekken verzamelt.\"],\"OQI3hm\":[\"Je verliest toegang tot deze werkruimte.\"],\"bX2FeG\":[\"Je verliest toegang tot deze werkruimte. Projecten die je hebt gemaakt blijven; je rol hier wordt verwijderd.\"],\"participant.verify.instructions.receive.artefact\":[\"Je ontvangt zo meteen \",[\"objectLabel\"],\" om te verifiëren.\"],\"gDdsRc\":[\"Je bevestigt je nieuwe betaalmethode op het volgende scherm. Er wordt niets in rekening gebracht, het bevestigt alleen de nieuwe kaart.\"],\"vkNkB8\":[\"Je staat op het punt je eigen rol te wijzigen naar <0>\",[\"0\"],\". Je verliest direct toegang tot de instellingen van de werkruimte, uitnodigingen en ledenbeheer.\"],\"KS7iJH\":[\"Je bent helemaal bij.\"],\"ADMWt4\":[\"Je bent al lid van \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"Je zit al in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"Je bent een externe medewerker in deze organisatie. Open hieronder een van de werkruimtes die met je zijn gedeeld.\"],\"bbvEPE\":[\"Je zit erin\"],\"LfpEZ9\":[\"Je logt in met het verkeerde e-mailadres\"],\"PVUJ6+\":[\"Je zit nog in geen enkele organisatie. Maak een werkruimte om een organisatie te starten, of vraag een lid om een uitnodiging.\"],\"Y3LcET\":[\"Je maakt op dit moment deel uit van geen enkele organisatie.\"],\"ta24bs\":[\"Je zit op \",[\"0\"],\", maar er is geen actief abonnement. Neem een abonnement om facturering in te stellen en het te behouden.\"],\"FQdXKc\":[\"Je hergebruikt plekken waarvoor je deze periode al hebt betaald (iemand is vertrokken), dus daar wordt nu niets voor in rekening gebracht. De verlenging houdt er rekening mee.\"],\"HnqO9D\":[\"Je bent de enige beheerder. Maak iemand anders beheerder voordat je je rol wijzigt.\"],\"AcL9Ou\":[\"Je bent uitgenodigd om samen te werken met \",[\"0\"],\" organisaties. We nemen je mee zodra je doorgaat.\"],\"cZ4+ZH\":[\"Je bent uitgenodigd om samen te werken met <0>\",[\"0\"],\". We brengen je er zo naartoe.\"],\"ePJQ19\":[\"Je bent uitgenodigd voor \",[\"0\"],\" organisaties. We nemen je mee zodra je doorgaat.\"],\"RTgVkc\":[\"Je bent uitgenodigd voor <0>\",[\"0\"],\". We brengen je er zo naartoe.\"],\"189Q0c\":[\"Je hebt de limiet van het gratis plan voor deze chat bereikt. Upgrade om verder te chatten.\"],\"PBlwH8\":[\"Je hebt de berichtenlimiet van het gratis plan bereikt. Vraag een beheerder van de organisatie om te upgraden.\"],\"YU91eY\":[\"Je hebt de berichtenlimiet van het gratis plan bereikt. Upgrade om verder te chatten.\"],\"GP7h+t\":[\"Je hebt je samenvattingslimiet bereikt\"],\"WfEaJc\":[\"Je hebt je transcriptielimiet bereikt\"],\"o/5HQF\":[\"Je hebt alle 10 uur van de pilot gebruikt. Tools voor hosts (Chat, rapporten, analyse, exports) staan op pauze.\"],\"Eddneo\":[\"Je toegang tot \",[\"0\"],\" stopt op \",[\"endDate\"],\" en gaat daarna naar Free. Neem een abonnement om hem te behouden.\"],\"M5ub3j\":[\"Jouw toegang\"],\"WIv0oz\":[\"Jouw toegang tot \",[\"0\"],\" eindigde op \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Jouw goedkeuring helpt ons begrijpen wat je echt denkt!\"],\"m4qbPC\":[\"Jouw merk op elk scherm van deelnemers.\"],\"wmkjMv\":[\"Je browser blokkeert de microfoon. Geef toegang en probeer het opnieuw.\"],\"wSfp0e\":[\"Je huidige abonnement\"],\"mmGBWT\":[\"Jouw gegevens\"],\"lRpeom\":[\"Je concept wordt niet opgeslagen.\"],\"t4FxxP\":[\"Je e-mailadres is al geverifieerd\"],\"CqsrQF\":[\"Je e-mailadres is geverifieerd. Log in om door te gaan.\"],\"GjqC/j\":[\"Je e-mailadres is geverifieerd. We brengen je naar de loginpagina.\"],\"SR/yCW\":[\"Je gratis plan bevat één gesprek. Upgrade om de rest te openen.\"],\"DM8bIO\":[\"Je gratis plan bevat één rapport. Upgrade om er meer te maken.\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"Yo3xGL\":[\"Je uitnodiging staat nog open. Probeer het opnieuw zodra de beheerder een plek vrijmaakt of de werkruimte upgradet.\"],\"aCpo/d\":[\"Je uitnodiging is al geaccepteerd, maar je bent geen lid meer van \",[\"resolvedWorkspaceName\"],\". Vraag de beheerder om je opnieuw uit te nodigen.\"],\"/Mqhsc\":[\"Je laatste betaling is niet gelukt. Je abonnement blijft actief. Werk je betaalmethode bij of probeer de betaling opnieuw om het recht te zetten.\"],\"1Uvqtx\":[\"De generatie van je laatste rapport is geannuleerd. Je meest recente voltooide rapport wordt getoond.\"],\"JgZh6f\":[\"Je logo is nog actief, maar kan op dit niveau niet worden gewijzigd.\"],\"q8yluz\":[\"Uw naam\"],\"LlzdZF\":[\"Je organisatie zit standaard op het gratis abonnement. Eén abonnement dekt elke werkruimte, per plek gefactureerd zodra je upgradet.\"],\"HnzTai\":[\"Je organisatie staat voor je klaar. Klik op doorgaan om mee te doen.\"],\"jlKzXO\":[\"Je organisatie of bedrijf\"],\"KoLVip\":[\"Je betaling is niet gelukt. Werk je betaalmethode bij om door te gaan.\"],\"INyMTs\":[\"Je betaling is nog niet voltooid. Ga verder waar je was gebleven om je abonnement te activeren. Er wordt niet twee keer betaald.\"],\"jqpO7d\":[\"Je betaling wordt nog verwerkt. Ververs zo om te controleren.\"],\"+3q2fE\":[\"Je betaalmethode is bijgewerkt.\"],\"xoMBWJ\":[\"Het bijwerken van je betaalmethode wordt nog verwerkt.\"],\"URFO7+\":[\"Je abonnement eindigt aan het einde van de periode.\"],\"6ba1MP\":[\"Je abonnement eindigt op \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Je abonnement is actief.\"],\"Zn38Tr\":[\"Je abonnement is weer actief. Je behoudt je huidige periode.\"],\"QIQh3n\":[\"Je abonnement is inactief. Activeer het opnieuw om leden toe te voegen.\"],\"PB21Rh\":[\"Je abonnement wordt beheerd door dembrane. Neem contact op met je accountmanager om wijzigingen te maken.\"],\"7IFghD\":[\"Je abonnement wordt niet verlengd. Je houdt toegang tot het einde van de periode.\"],\"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\"],\"lWeANa\":[\"Je werkruimte staat klaar. Klik op doorgaan om samen te werken.\"],\"crrqaX\":[\"jr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/uk-UA.po b/echo/frontend/src/locales/uk-UA.po index f12be2ed5..02492b0ae 100644 --- a/echo/frontend/src/locales/uk-UA.po +++ b/echo/frontend/src/locales/uk-UA.po @@ -213,7 +213,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2101 +#: src/components/chat/AgenticChatPanel.tsx:2114 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -478,11 +478,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:267 +#: src/components/chat/AgenticChatPanel.tsx:279 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:266 +#: src/components/chat/AgenticChatPanel.tsx:278 msgid "{name}'s transcript excerpt" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "Advanced (Tips and best practices)" msgid "Advanced Settings" msgstr "Advanced Settings" -#: src/components/chat/AgenticChatPanel.tsx:385 +#: src/components/chat/AgenticChatPanel.tsx:398 msgid "Agent run failed" msgstr "" @@ -1435,7 +1435,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2250 +#: src/components/chat/AgenticChatPanel.tsx:2263 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1529,7 +1529,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1813 +#: src/components/chat/AgenticChatPanel.tsx:1826 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1546,7 +1546,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2231 +#: src/components/chat/AgenticChatPanel.tsx:2244 msgid "Ask about your conversations..." msgstr "" @@ -1884,7 +1884,7 @@ msgstr "" msgid "Book a call" msgstr "Book a call" -#: src/components/common/FeedbackPortalModal.tsx:98 +#: src/components/common/FeedbackPortalModal.tsx:115 msgid "Book a call with us" msgstr "Забронюйте дзвiнок з нами" @@ -1986,11 +1986,11 @@ msgstr "" #: src/components/conversation/ConversationAccordion.tsx:336 #: src/components/common/InputModal.tsx:77 #: src/components/common/ImageCropModal.tsx:145 -#: src/components/common/FeedbackPortalModal.tsx:124 +#: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:734 -#: src/components/chat/AgenticChatPanel.tsx:2139 +#: src/components/chat/AgenticChatPanel.tsx:747 +#: src/components/chat/AgenticChatPanel.tsx:2152 msgid "Cancel" msgstr "Cancel" @@ -2023,7 +2023,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:722 +#: src/components/chat/AgenticChatPanel.tsx:735 msgid "Cancel current run" msgstr "" @@ -2189,7 +2189,7 @@ msgstr "Changing language during an active chat may lead to unexpected results. #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1657 +#: src/components/chat/AgenticChatPanel.tsx:1670 msgid "Chat" msgstr "Chat" @@ -2528,7 +2528,7 @@ msgstr "Content" msgid "Context" msgstr "Context" -#: src/components/chat/ChatHistoryMessage.tsx:394 +#: src/components/chat/ChatHistoryMessage.tsx:419 msgid "Context added:" msgstr "Context added:" @@ -3268,7 +3268,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2268 +#: src/components/chat/AgenticChatPanel.tsx:2281 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3456,7 +3456,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:404 +#: src/components/chat/AgenticChatPanel.tsx:417 msgid "Done" msgstr "" @@ -3826,8 +3826,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:409 -#: src/components/chat/AgenticChatPanel.tsx:1759 +#: src/components/chat/AgenticChatPanel.tsx:422 +#: src/components/chat/AgenticChatPanel.tsx:1772 msgid "Error" msgstr "Error" @@ -4179,11 +4179,11 @@ msgstr "Failed to revise outcome. 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/chat/AgenticChatPanel.tsx:1650 +#: src/components/chat/AgenticChatPanel.tsx:1663 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1609 +#: src/components/chat/AgenticChatPanel.tsx:1622 msgid "Failed to submit agentic message" msgstr "" @@ -4229,7 +4229,7 @@ msgstr "Feature available soon" msgid "Feedback" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:44 +#: src/components/common/FeedbackPortalModal.tsx:61 msgid "Feedback portal" msgstr "Feedback portal" @@ -4344,13 +4344,13 @@ msgstr "" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2143 -#: src/components/chat/AgenticChatPanel.tsx:2144 -#: src/components/chat/AgenticChatPanel.tsx:2278 +#: src/components/chat/AgenticChatPanel.tsx:2156 +#: src/components/chat/AgenticChatPanel.tsx:2157 +#: src/components/chat/AgenticChatPanel.tsx:2291 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:240 +#: src/components/chat/AgenticChatPanel.tsx:252 msgid "Focusing on:" msgstr "" @@ -4717,7 +4717,7 @@ msgstr "" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Hide steps" msgstr "" @@ -4781,11 +4781,11 @@ msgstr "" "* What is the north star goal or key metric\n" "* What does success look like" -#: src/components/chat/AgenticChatPanel.tsx:1927 +#: src/components/chat/AgenticChatPanel.tsx:1940 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1943 +#: src/components/chat/AgenticChatPanel.tsx:1956 msgid "I applied the goal." msgstr "" @@ -4839,7 +4839,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1837 +#: src/components/chat/AgenticChatPanel.tsx:1850 msgid "Improve my setup" msgstr "" @@ -5133,7 +5133,7 @@ msgstr "" msgid "Join for support (24h)" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:115 +#: src/components/common/FeedbackPortalModal.tsx:132 msgid "Join our Slack community" msgstr "" @@ -5187,7 +5187,7 @@ msgstr "" msgid "Just started" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:64 +#: src/components/common/FeedbackPortalModal.tsx:81 msgid "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." msgstr "Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything." @@ -5418,11 +5418,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link to your organisation's privacy policy that will be shown to participants" -#: src/components/chat/AgenticChatPanel.tsx:1827 +#: src/components/chat/AgenticChatPanel.tsx:1840 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1828 +#: src/components/chat/AgenticChatPanel.tsx:1841 msgid "List the conversations in this project." msgstr "" @@ -5481,7 +5481,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5535,7 +5535,7 @@ msgstr "Loading microphones..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1770 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Loading this chat..." msgstr "" @@ -5791,7 +5791,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2246 +#: src/components/chat/AgenticChatPanel.tsx:2259 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -6798,8 +6798,8 @@ msgstr "" msgid "Open to the workspace" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:227 -#: src/components/chat/ChatHistoryMessage.tsx:231 +#: src/components/chat/ChatHistoryMessage.tsx:250 +#: src/components/chat/ChatHistoryMessage.tsx:254 msgid "Open transcript" msgstr "" @@ -6863,7 +6863,7 @@ msgstr "or" msgid "Or choose a time" msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:91 +#: src/components/common/FeedbackPortalModal.tsx:108 msgid "Or prefer to chat directly?" msgstr "Або бажаєте поспiлкуватися напряму?" @@ -7727,7 +7727,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:587 +#: src/components/chat/AgenticChatPanel.tsx:600 msgid "Ran {0} steps at once" msgstr "" @@ -7852,7 +7852,7 @@ msgstr "" msgid "participant.button.record" msgstr "Record" -#: src/components/chat/AgenticChatPanel.tsx:2168 +#: src/components/chat/AgenticChatPanel.tsx:2181 msgid "Record a voice message" msgstr "" @@ -7888,7 +7888,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Recording Paused" -#: src/components/chat/AgenticChatPanel.tsx:859 +#: src/components/chat/AgenticChatPanel.tsx:872 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8094,7 +8094,7 @@ msgid "project.sidebar.chat.rename" msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1720 +#: src/components/chat/AgenticChatPanel.tsx:1733 msgid "Rename chat" msgstr "Rename chat" @@ -8412,7 +8412,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1838 +#: src/components/chat/AgenticChatPanel.tsx:1851 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8484,7 +8484,7 @@ msgstr "" msgid "Rows per page" msgstr "Rows per page" -#: src/components/chat/AgenticChatPanel.tsx:414 +#: src/components/chat/AgenticChatPanel.tsx:427 msgid "Running" msgstr "" @@ -8515,7 +8515,7 @@ msgstr "Save" msgid "Save access" msgstr "" -#: src/components/chat/ChatHistoryMessage.tsx:296 +#: src/components/chat/ChatHistoryMessage.tsx:319 msgid "Save as template" msgstr "Save as template" @@ -8558,7 +8558,7 @@ msgstr "" msgid "Saving..." msgstr "Saving..." -#: src/components/common/FeedbackPortalModal.tsx:87 +#: src/components/common/FeedbackPortalModal.tsx:104 msgid "Scan or click the QR code to open the feedback portal" msgstr "" @@ -8940,7 +8940,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2205 +#: src/components/chat/AgenticChatPanel.tsx:2218 msgid "Send" msgstr "Send" @@ -9204,7 +9204,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:617 +#: src/components/chat/AgenticChatPanel.tsx:630 msgid "Show steps" msgstr "" @@ -9323,7 +9323,7 @@ msgstr "Something went wrong generating your latest report." msgid "Something went wrong generating your report." msgstr "Something went wrong generating your report." -#: src/components/chat/AgenticChatPanel.tsx:206 +#: src/components/chat/AgenticChatPanel.tsx:218 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9372,6 +9372,10 @@ msgstr "Sort" msgid "Source {0}" msgstr "Source {0}" +#: src/components/chat/ChatHistoryMessage.tsx:359 +msgid "Sources" +msgstr "" + #: src/components/project/ProjectPortalEditor.tsx:644 msgid "Spanish" msgstr "Spanish" @@ -9487,7 +9491,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2163 +#: src/components/chat/AgenticChatPanel.tsx:2176 msgid "Stop" msgstr "Stop" @@ -9496,7 +9500,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2153 +#: src/components/chat/AgenticChatPanel.tsx:2166 msgid "Stop recording and turn it into text" msgstr "" @@ -10206,7 +10210,7 @@ msgstr "This report is not yet available. " msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" -#: src/components/chat/AgenticChatPanel.tsx:204 +#: src/components/chat/AgenticChatPanel.tsx:216 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10273,7 +10277,7 @@ msgstr "" msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2182 +#: src/components/chat/AgenticChatPanel.tsx:2195 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "" @@ -10375,7 +10379,7 @@ msgstr "" msgid "To assign a new tag, please create it first in the portal settings." msgstr "" -#: src/components/common/FeedbackPortalModal.tsx:57 +#: src/components/common/FeedbackPortalModal.tsx:74 msgid "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." msgstr "To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you." @@ -10392,7 +10396,7 @@ msgstr "Too large" msgid "Too long" msgstr "Too long" -#: src/components/chat/AgenticChatPanel.tsx:2117 +#: src/components/chat/AgenticChatPanel.tsx:2130 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10490,7 +10494,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:270 +#: src/components/chat/AgenticChatPanel.tsx:282 msgid "transcript" msgstr "" @@ -10506,7 +10510,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:269 +#: src/components/chat/AgenticChatPanel.tsx:281 msgid "transcript excerpt" msgstr "" @@ -11017,7 +11021,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2264 +#: src/components/chat/AgenticChatPanel.tsx:2277 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" @@ -11301,7 +11305,7 @@ msgstr "" 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." -#: src/components/common/FeedbackPortalModal.tsx:50 +#: src/components/common/FeedbackPortalModal.tsx:67 msgid "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." msgstr "We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going." @@ -11424,11 +11428,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "What should ECHO analyse or generate from the conversations?" -#: src/components/chat/AgenticChatPanel.tsx:1833 +#: src/components/chat/AgenticChatPanel.tsx:1846 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1832 +#: src/components/chat/AgenticChatPanel.tsx:1845 msgid "What themes came up?" msgstr "" @@ -11498,7 +11502,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1810 +#: src/components/chat/AgenticChatPanel.tsx:1823 msgid "Where would you like to start?" msgstr "" @@ -11541,11 +11545,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:588 +#: src/components/chat/AgenticChatPanel.tsx:601 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1682 +#: src/components/chat/AgenticChatPanel.tsx:1695 msgid "Working on your answer..." msgstr "" @@ -11809,7 +11813,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" -#: src/components/chat/AgenticChatPanel.tsx:202 +#: src/components/chat/AgenticChatPanel.tsx:214 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/uk-UA.ts b/echo/frontend/src/locales/uk-UA.ts index 88d0cf233..c6fb00518 100644 --- a/echo/frontend/src/locales/uk-UA.ts +++ b/echo/frontend/src/locales/uk-UA.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.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" views\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"A report is already being generated for this project. Please wait for it to complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Account password\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action By\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Спочатку додайте розмови до свого проекту\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Almost there\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Already added to this chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Already in context\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Сталася неочікувана помилка. Зазвичай допомагає перезавантаження сторінки або повернення на головну.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Announcements\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"IOBCIN\":[\"Audio Tip\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Забронюйте дзвiнок з нами\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"iaPtht\":[\"copy\"],\"he3ygx\":[\"Copy\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Дата\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"YrOV6x\":[\"Determines under which GDPR legal basis personal data is processed. This setting applies to all your projects and can be changed in your account settings.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"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\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Не вдалося перепланувати. Будь ласка, оберiть час далi у майбутньому та спробуйте знову.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"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\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Font Size\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generating report...\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"hMOYzR\":[\"Generating your report...\"],\"DDcvSo\":[\"German\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Go to Settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"З керiвництвом\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"I understand\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Legal Basis\"],\"7kyKF5\":[\"Legal basis updated\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link to your organisation's privacy policy that will be shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Mark all read\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Mark as read\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Має бути щонайменше через 10 хвилин\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"Новi розмови додано пiсля цього звiту\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"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.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Розмов ще немає. Ви можете запланувати звiт зараз, i розмови будуть включенi пiсля їх додавання.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"В організації поки нікого немає.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Або бажаєте поспiлкуватися напряму?\"],\"1h45Hu\":[\"Or write your own\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"Organiser's Privacy Policy URL\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Оберiть дату\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"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)\"],\"Lu1j4b\":[\"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).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Project Library | dembrane\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Recording limit reached\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Перезавантажити сторінку\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Перепланувати на\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Повернутися на головну\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rows per page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Знайдіть і виберіть розмови для цього чату.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Select at least one event\"],\"d3O/ZP\":[\"Select at least one other topic before deleting this one\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Оберiть до 2 напрямкiв для вашого звiту\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Подiлiться своїм голосом, вiдсканувавши QR-код\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"65A04M\":[\"Spanish\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Ця частина сторінки не завантажилася. Зазвичай допомагає перезавантаження. Якщо це повторюється, поверніться на головну.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"This workspace has used its included recording hours. Ask an organisation admin to upgrade.\"],\"nHYAFS\":[\"This workspace has used its included recording hours. Upgrade to keep using voice.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Час\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Upload\"],\"V/OOEy\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Username\"],\"1Nt3Kg\":[\"Using default dembrane logo\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"Ми не знайшли сторінку, яку ви шукали. Можливо, її перемістили.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Ласкаво просимо в режим Огляду! Я завантажив підсумки всіх ваших розмов. Запитуйте мене про закономірності, теми та висновки у ваших даних. Для точних цитат розпочніть нову бесіду в режимі Конкретного Контексту.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"myUTw1\":[\"When a report has been generated for the project\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")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.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"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\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"3wr3U9\":[[\"0\"],\" seat(s) · \",[\"1\"],\" now · +\",[\"2\"],\"/\",[\"cadence\"],\" at renewal\"],\"ipdYtj\":[[\"0\"],\" seat(s) paid for this period and unused. Invite someone to fill them at no charge until renewal.\"],\"q9vtxh\":[[\"0\"],\" seats\"],\"Oa8YFO\":[[\"0\"],\" seats included\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" views\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"WehR9U\":[\"2 months ago\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"0de1wk\":[\"a organisation admin\"],\"EfpBny\":[\"A organisation admin can request this upgrade. Ask someone with the admin role.\"],\"TKd+Fa\":[\"A project holds everything for one topic. Share its link with participants, gather voices, then let dembrane turn them into insights.\"],\"sG+9v8\":[\"A report is already being generated for this project. Please wait for it to complete.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"qLcf0w\":[\"Access ends on\"],\"18D/K9\":[\"Access granted for 24 hours.\"],\"HlgFV1\":[\"Access history\"],\"6NLtuJ\":[\"Access request approved\"],\"RpdQvB\":[\"Access request denied\"],\"FmhC27\":[\"Access request expired\"],\"pyPxxw\":[\"Access request withdrawn\"],\"ekMaJX\":[\"Access requests\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account & security\"],\"g9NChz\":[\"Account manager\"],\"/8wINa\":[\"Account manager assigned.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Account password\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"A7C5YV\":[\"Account set to managed.\"],\"0qqrUz\":[\"Accounts billed\"],\"L5gswt\":[\"Action By\"],\"7U5F+i\":[\"Action needed\"],\"UQXw0W\":[\"Action On\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Active filters\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Спочатку додайте розмови до свого проекту\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"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.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"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:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"3goDnD\":[\"Allow participants using the link to start new conversations\"],\"sV+uzv\":[\"Almost ready\"],\"bruUug\":[\"Almost there\"],\"gwPMvj\":[\"Already a member\"],\"H7cfSV\":[\"Already added to this chat\"],\"cFO+NU\":[\"Already have an account? Log in\"],\"xNyrs1\":[\"Already in context\"],\"lLTpsm\":[\"Already invited\"],\"3lBGEC\":[\"Already used in this chat\"],\"hehnjM\":[\"Amount\"],\"nIUIH3\":[\"Amounts default to the account's seats times the per-seat price. Override only when you need to.\"],\"2G0LKZ\":[\"An additional training is mandatory for teams using dembrane in situations classified as high risk under the EU AI Act.\"],\"jIoHDG\":[\"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.\"],\"zqhMd0\":[\"Сталася неочікувана помилка. Зазвичай допомагає перезавантаження сторінки або повернення на головну.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"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.\"],\"Dzr23X\":[\"Announcements\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"hC67sJ\":[\"Ask a organisation admin to request this upgrade.\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"FA2/EC\":[\"Attach verified artifacts\"],\"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.\"],\"/rTz0M\":[\"Audio\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"IOBCIN\":[\"Audio Tip\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"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\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"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.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Available on innovator and above. Upgrade to unlock.\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"+VoTOr\":[\"billed monthly\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"+bLYyF\":[\"Billed per seat across the organisation. Cancel anytime. Scholarships are available for eligible organisations: email <0>support@dembrane.com.\"],\"s44mh1\":[\"Billed per user. A seat is one member, counted automatically. Cancel anytime.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Billing period\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Забронюйте дзвiнок з нами\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"SkqeF+\":[\"Bring your own LLM via the MCP.\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"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\"],\"4MDqQJ\":[\"Cancel anytime. You keep access until the period ends.\"],\"KWnDn1\":[\"Cancel current run\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"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\"],\"OqbSPC\":[\"Chat | dembrane\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"okLwd9\":[\"Choose from your other projects\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"8Vsunl\":[\"Cloud Act safe. EU-sovereign stack for the strictest compliance.\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"participant.refine.cooling.down\":[\"Cooling down. Available in \",[\"0\"]],\"6V3Ea3\":[\"Copied\"],\"84o0nc\":[\"Copied from original conversation\"],\"PiH3UR\":[\"Copied!\"],\"iaPtht\":[\"copy\"],\"he3ygx\":[\"Copy\"],\"qQB+iu\":[\"Copy approved outcomes to the new conversation so they aren't lost when the original is deleted.\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"Could not save the host guide\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"Could not send the invite email. Check email configuration.\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Дата\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"tUWfga\":[\"Dedicated support\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"nzP4fT\":[\"dembrane events\"],\"bK6CFO\":[\"dembrane staff access ended automatically\"],\"NBxEip\":[\"dembrane staff extended their session\"],\"7VMnIt\":[\"dembrane staff joined for support\"],\"g0sCc9\":[\"dembrane staff left\"],\"PDkZlx\":[\"dembrane staff requested access\"],\"cFCKYZ\":[\"Deny\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"YrOV6x\":[\"Determines under which GDPR legal basis personal data is processed. This setting applies to all your projects and can be changed in your account settings.\"],\"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.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"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\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"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.\"],\"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\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"endDate\"]],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"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.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"daDOWB\":[\"EU-hosted analysis, audit logs, and white labeling.\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"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.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Не вдалося перепланувати. Будь ласка, оберiть час далi у майбутньому та спробуйте знову.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"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\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"cGeFup\":[\"Font Size\"],\"UfM4y6\":[\"For <0>\",[\"0\"],\"\"],\"Jj3pF8\":[\"For advanced users: A secret key to verify webhook authenticity. Only needed if your receiving service requires signature verification.\"],\"aW4yu6\":[\"For an external organisation\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"from\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"3/pp83\":[\"Generated from the transcript. You can edit it.\"],\"5z5bUs\":[\"Generating report...\"],\"kzY+nd\":[\"Generating the summary. Please wait...\"],\"hMOYzR\":[\"Generating your report...\"],\"DDcvSo\":[\"German\"],\"jpNBdT\":[\"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.\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"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\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Go to Settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"З керiвництвом\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"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\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"participant.button.i.understand\":[\"I understand\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"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.\"],\"QSzGDE\":[\"Idle\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"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.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"ne8SOf\":[\"Interested in innovator or guardian? Let us know via <0>forms.dembrane.com/contact\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"2AL6ct\":[\"Invite sent.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"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.\"],\"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.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"U0T6D0\":[\"Just talk or type naturally. Your input goes directly to our product team and genuinely helps us make dembrane better. We read everything.\"],\"hK3t2g\":[\"Just you — plus workspace admins.\"],\"rnwfSX\":[\"Just you, for now.\"],\"lgdsfK\":[\"Just you. Share with specific people →\"],\"OePlDL\":[\"Keep \",[\"tier\"],\" until a date\"],\"0ohX1R\":[\"Keep access secure with a one-time code from your authenticator app. Toggle two-factor authentication for this account.\"],\"4OjqAQ\":[\"Keep editing\"],\"RQElWR\":[\"Keep it\"],\"B3WAHx\":[\"Keep license\"],\"uHdpk+\":[\"Keep my plan\"],\"Qzyw+2\":[\"Keep pending\"],\"II//jO\":[\"Keep this canvas fresh\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Legal Basis\"],\"7kyKF5\":[\"Legal basis updated\"],\"nc/jNe\":[\"Legal entity name\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"LIj2/f\":[\"Link to your organisation's privacy policy that will be shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"1P8zM9\":[\"Living canvas\"],\"yQ2kGp\":[\"Load more\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"waFx9W\":[\"Managed\"],\"DlYfyz\":[\"Managed accounts pay by invoice, not by card. Setting an account managed keeps every feature on and turns off auto-charging, dunning, and expiry. Assign a dembrane account manager so the client knows who to contact.\"],\"bxxIPf\":[\"Managed billing\"],\"usR1Ju\":[\"Managed by dembrane\"],\"/FWPUc\":[\"Manages members, workspaces, and organisation settings.\"],\"onllUU\":[\"Mark all as read\"],\"JSxZVX\":[\"Mark all read\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Mark as read\"],\"5GPcf9\":[\"Mark as unread\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Mark invoice paid\"],\"AHBWqd\":[\"Mark training completed\"],\"Ofm5QB\":[\"Marks \",[\"orgName\"],\" as a partner. Its workspaces self-identify internal vs external client use on creation.\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"pTc/Cy\":[\"mo\"],\"zz/Wd/\":[\"Mode\"],\"Re8IqH\":[\"Mollie is not configured in this environment, so no live transactions are shown. The dashboard link still points to the right Mollie environment.\"],\"j0uaMA\":[\"Monitor\"],\"4kanfr\":[\"Monthly billing\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Має бути щонайменше через 10 хвилин\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"Новi розмови додано пiсля цього звiту\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"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.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"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.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Розмов ще немає. Ви можете запланувати звiт зараз, i розмови будуть включенi пiсля їх додавання.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"В організації поки нікого немає.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"klvSBe\":[\"No subscription\"],\"deovLP\":[\"No summary yet\"],\"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.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"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.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"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.\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"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.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"0OspM/\":[\"Optional. What this workspace is for.\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Або бажаєте поспiлкуватися напряму?\"],\"1h45Hu\":[\"Or write your own\"],\"v2MBz4\":[\"Org only\"],\"LB3Kje\":[\"Organisation\"],\"sezvMj\":[\"Organisation | dembrane\"],\"9L7xZr\":[\"Organisation account\"],\"fGRmCP\":[\"organisation admin\"],\"x/dDGk\":[\"Organisation member\"],\"Juy8tT\":[\"Organisation members appear here once they join a workspace.\"],\"UPvG74\":[\"Organisation members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"6lcDxb\":[\"Organiser's Privacy Policy URL\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Оберiть дату\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"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.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"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)\"],\"Lu1j4b\":[\"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).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"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.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"vXOtIa\":[\"Private workspaces\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"rmmNSG\":[\"Project defaults\"],\"aVOwd+\":[\"Project deleted\"],\"7TYa2T\":[\"Project goal\"],\"qW7NU2\":[\"Project is now visible to everyone in \",[\"workspaceName\"]],\"wNXqAE\":[\"Project is now visible to the workspace\"],\"QFx9kj\":[\"Project Library | dembrane\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"BYO86u\":[\"Recording limit reached\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"tF5Smn\":[\"Перезавантажити сторінку\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Перепланувати на\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Повернутися на головну\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rows per page\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Знайдіть і виберіть розмови для цього чату.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"9dDRnY\":[\"see earlier releases\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"select.all.modal.title.results\":[\"Select All Results\"],\"XSLOfq\":[\"Select all visible (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Select at least one event\"],\"d3O/ZP\":[\"Select at least one other topic before deleting this one\"],\"NK2YNj\":[\"Select Audio Files to Upload\"],\"OOZBXR\":[\"Select conversation\"],\"5z/6Uk\":[\"Select conversations\"],\"/3ntVG\":[\"Select conversations and find exact quotes\"],\"LyHz7Q\":[\"Select conversations from sidebar\"],\"1kovRK\":[\"Select project\"],\"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\"],\"Dh99yE\":[\"Оберiть до 2 напрямкiв для вашого звiту\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"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.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"8styFN\":[\"Share with someone\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Подiлiться своїм голосом, вiдсканувавши QR-код\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"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).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"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\"]],\"sBJ5MF\":[\"Sources\"],\"65A04M\":[\"Spanish\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"EDl9kS\":[\"Subscribe\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"kNzjto\":[\"Tags updated. You can fine-tune them anytime in the portal editor.\"],\"tFhVJf\":[\"Take me to \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"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.\"],\"fLzFsM\":[\"Talk to us about training\"],\"VC5y9X\":[\"Teams in the EU using dembrane in scenarios classified as high risk under the EU AI Act must complete a training before using their workspace.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"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.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"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.\"],\"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\"],\"x0q6pF\":[\"The free plan includes 1 chat per workspace. Ask a organisation admin to upgrade.\"],\"2VRtP/\":[\"The free plan includes 1 chat per workspace. Upgrade to start more chats.\"],\"3rUXa7\":[\"The free plan includes 1 workspace per organisation. Upgrade to create additional workspaces.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"oRhAnS\":[\"The invite was sent to \",[\"invitedEmail\"],\", but you're signed in as \",[\"myEmail\"],\". Log out and sign up with the right address, or ask the admin to re-invite \",[\"myEmail\"],\".\"],\"lrIONj\":[\"The link may be private, or it may have moved. Ask the person who shared it to check.\"],\"o5ki/a\":[\"The link may have been removed, or it was sent to a different email address. Ask the inviter to send a new one.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"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.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"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.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"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.\"],\"UCmdZb\":[\"These settings are read-only. Only organisation administrators can modify project defaults.\"],\"7Ye3FL\":[\"These tag changes are applied to your project.\"],\"81wkbM\":[\"These workspaces are billed separately. Each person you add takes a seat in \",[\"billingContextCount\"],\" billing contexts, each invoiced on its own.\"],\"0ZaC+v\":[\"These workspaces have their own plan, managed from each workspace. They aren't part of this organisation's plan.\"],\"8AOwf0\":[\"They'll be added as members. You can add more later.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"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.\"],\"+9D2sa\":[\"Ця частина сторінки не завантажилася. Зазвичай допомагає перезавантаження. Якщо це повторюється, поверніться на головну.\"],\"SWBo09\":[\"this person\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"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\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"fZZhNF\":[\"This workspace has used its included recording hours. Ask an organisation admin to upgrade.\"],\"nHYAFS\":[\"This workspace has used its included recording hours. Upgrade to keep using voice.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Час\"],\"cklVjM\":[\"Timeline\"],\"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.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainings\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"MzWrba\":[\"Transcription error\"],\"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.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"JVW+Ic\":[\"Unlimited hours\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"yM+69W\":[\"Upgrade to \",[\"displayTier\"]],\"Gw18pn\":[\"Upgrade to add this to the chat\"],\"0s5x5X\":[\"Upgrade to continue\"],\"3I+le5\":[\"Upgrade to generate a title for this conversation\"],\"GFLM5d\":[\"Upgrade to generate summaries for this conversation\"],\"TB+04S\":[\"Upgrade to unlock\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"xeIX9S\":[\"Upgrade your workspace to download audio for conversations recorded after the cap\"],\"24kHLh\":[\"Upgrade your workspace to view summaries for new conversations.\"],\"mahIMH\":[\"Upgrade your workspace to view this conversation\"],\"3symHf\":[\"Upgrade your workspace to view transcripts for new conversations.\"],\"ONWvwQ\":[\"Upload\"],\"V/OOEy\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide.\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"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://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"User settings\"],\"7sNhEz\":[\"Username\"],\"1Nt3Kg\":[\"Using default dembrane logo\"],\"R3ZvsJ\":[\"Using dembrane in health, education, recruitment, critical infrastructure, law enforcement, or justice? Those are high-risk contexts and need a mandatory training before live use.\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"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.\"],\"mW8QSA\":[\"Ми не знайшли сторінку, яку ви шукали. Можливо, її перемістили.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"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.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"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.\"],\"/621Bs\":[\"We'd love to hear from you. Whether you have an idea for something new, you've hit a bug, spotted a translation that feels off, or just want to share how things have been going.\"],\"participant.test.microphone.description\":[\"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.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"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.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Ласкаво просимо в режим Огляду! Я завантажив підсумки всіх ваших розмов. Запитуйте мене про закономірності, теми та висновки у ваших даних. Для точних цитат розпочніть нову бесіду в режимі Конкретного Контексту.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"W5R8OO\":[\"When a participant opens the portal, enters their details, and begins a conversation\"],\"myUTw1\":[\"When a report has been generated for the project\"],\"7t3vo1\":[\"When all audio has been converted to text and the full transcript is available\"],\"N0GETg\":[\"When are webhooks triggered?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"1hyEG5\":[\"Workspace data not loaded yet. Please try again.\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"wHWiPE\":[\"Workspace renamed\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"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.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"PBlwH8\":[\"You've reached the message limit on the free plan. Ask a organisation admin to upgrade.\"],\"YU91eY\":[\"You've reached the message limit on the free plan. Upgrade to keep chatting.\"],\"GP7h+t\":[\"You've reached your summary limit\"],\"WfEaJc\":[\"You've reached your transcript limit\"],\"o/5HQF\":[\"You've used all 10 hours of the pilot. Host-side tools (chat, reports, analysis, exports) are paused.\"],\"Eddneo\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"m4qbPC\":[\"Your brand on every participant screen.\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"wSfp0e\":[\"Your current plan\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"t4FxxP\":[\"Your email is already verified\"],\"CqsrQF\":[\"Your email is verified. Log in to continue.\"],\"GjqC/j\":[\"Your email is verified. Taking you to the login page.\"],\"SR/yCW\":[\"Your free plan includes one conversation. Upgrade to open the rest.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"LlzdZF\":[\"Your organisation is on the free plan by default. One plan covers every workspace, billed per seat once you upgrade.\"],\"HnzTai\":[\"Your organisation is waiting for you. Click continue to join.\"],\"jlKzXO\":[\"Your organisation or company\"],\"KoLVip\":[\"Your payment didn't go through. Update your payment method to continue.\"],\"INyMTs\":[\"Your payment hasn't been completed yet. Pick up where you left off to activate your plan. You won't be charged twice.\"],\"jqpO7d\":[\"Your payment is still processing. Refresh in a moment to check.\"],\"+3q2fE\":[\"Your payment method has been updated.\"],\"xoMBWJ\":[\"Your payment method update is still processing.\"],\"URFO7+\":[\"Your plan ends at the period end.\"],\"6ba1MP\":[\"Your plan ends on \",[\"endDate\"],\".\"],\"F4EQWQ\":[\"Your plan is active.\"],\"Zn38Tr\":[\"Your plan is back on. You keep your current period.\"],\"QIQh3n\":[\"Your plan is inactive. Reactivate it to add members.\"],\"PB21Rh\":[\"Your plan is managed by dembrane. Contact your account manager to make changes.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"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\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file From 40a7024667b1ce723351689a72851a427bbcdbaa Mon Sep 17 00:00:00 2001 From: spashii Date: Mon, 10 Aug 2026 20:20:15 +0200 Subject: [PATCH 2/3] fix(chat): drop the render-time legacy header stripper The regex that removed a model-written "Sources"/"Footnotes" heading from already-persisted messages was a shim: it compensated in render code, forever, for a few rows written in the hours between #981 and this fix, and it only knew the English words. The handful of affected rows get a one-off data cleanup instead; the renderer keeps owning the header for everything written from now on. --- .../components/chat/AgenticChatPanel.test.tsx | 40 ------- .../src/components/chat/AgenticChatPanel.tsx | 13 --- echo/frontend/src/locales/cs-CZ.po | 106 +++++++++--------- echo/frontend/src/locales/de-DE.po | 106 +++++++++--------- echo/frontend/src/locales/en-US.po | 106 +++++++++--------- echo/frontend/src/locales/es-ES.po | 106 +++++++++--------- echo/frontend/src/locales/fr-FR.po | 106 +++++++++--------- echo/frontend/src/locales/it-IT.po | 106 +++++++++--------- echo/frontend/src/locales/nl-NL.po | 106 +++++++++--------- echo/frontend/src/locales/uk-UA.po | 106 +++++++++--------- 10 files changed, 424 insertions(+), 477 deletions(-) diff --git a/echo/frontend/src/components/chat/AgenticChatPanel.test.tsx b/echo/frontend/src/components/chat/AgenticChatPanel.test.tsx index 49e5541cf..04f531e6c 100644 --- a/echo/frontend/src/components/chat/AgenticChatPanel.test.tsx +++ b/echo/frontend/src/components/chat/AgenticChatPanel.test.tsx @@ -672,44 +672,4 @@ describe("enrichAgenticContent, footnote citations", () => { expect(enriched).toContain("#chunk-chunk-9"); expect(enriched).not.toContain("conversation_id:"); }); - - // The markdown renderer moves footnote definitions into its own trailing - // section with its own localised header, so a model-written header would - // stay behind as an empty duplicate above it. "*Sources*" is verbatim what - // production stored (chat 57493241, 2026-08-10); the rest are the forms - // the prompt's wording could plausibly produce. - it.each([ - "*Sources*", - "## Sources", - "**Sources**", - "Sources:", - "### Footnotes", - ])( - "strips a redundant %s header above the footnote definitions", - (header) => { - const enriched = enrich( - `Parking came up often[^1].\n\n${header}\n\n[^1]: [conversation_id:${CONVERSATION_ID}]`, - ); - - expect(enriched).not.toMatch(/sources|footnotes/i); - // The definition keeps a blank line above it: a footnote definition - // cannot interrupt a paragraph, so gluing would demote it to text. - expect(enriched).toContain("\n\n[^1]: [Maria's conversation]("); - }, - ); - - it("strips the header even when the model skips the blank line under it", () => { - const enriched = enrich( - `Parking came up often[^1].\n## Sources\n[^1]: [conversation_id:${CONVERSATION_ID}]`, - ); - - expect(enriched).not.toContain("Sources"); - expect(enriched).toContain("\n\n[^1]: [Maria's conversation]("); - }); - - it("leaves a Sources heading alone when no footnote definitions follow", () => { - const content = "## Sources\n\nWe drew on three interviews."; - - expect(enrich(content)).toBe(content); - }); }); diff --git a/echo/frontend/src/components/chat/AgenticChatPanel.tsx b/echo/frontend/src/components/chat/AgenticChatPanel.tsx index 3f56abcf2..62c89593c 100644 --- a/echo/frontend/src/components/chat/AgenticChatPanel.tsx +++ b/echo/frontend/src/components/chat/AgenticChatPanel.tsx @@ -191,18 +191,6 @@ const AGENTIC_REFERENCE_LIST_PATTERN = /\[conversation_ids?:\s*([^\]]+)\]/g; const LOOKS_LIKE_ID_PATTERN = /^[0-9a-f][0-9a-f-]{7,}$/i; -// A "Sources"/"Footnotes" heading the model wrote above its footnote -// definitions. The markdown renderer moves the definitions into its own -// trailing section with its own heading, so the model's heading would remain -// behind as an empty duplicate. Matched only when footnote definitions follow, -// so an ordinary paragraph titled "Sources" is left alone. Messages persisted -// before the prompt stopped asking for this header still carry it. -// Replaced with "\n\n" so the definitions keep a blank line above them: a -// footnote definition cannot interrupt a paragraph, so gluing it to the -// previous line would demote it to literal text. -const REDUNDANT_FOOTNOTE_HEADER_PATTERN = - /(?:^|\n)[ \t]*(?:#{1,6}[ \t]+)?\*{0,2}(?:sources|footnotes)\*{0,2}:?[ \t]*\n(?:[ \t]*\n)*(?=[ \t]*\[\^[^\]]+\]:)/gi; - export const MAX_AGENTIC_MESSAGE_LENGTH = 32000; // A failed run tells us a code, never prose: the server deliberately withholds @@ -290,7 +278,6 @@ export const enrichAgenticContent = ({ }; return content - .replace(REDUNDANT_FOOTNOTE_HEADER_PATTERN, "\n\n") .replace( AGENTIC_REFERENCE_PATTERN, (_match, conversationIdRaw: string, chunkIdRaw?: string) => diff --git a/echo/frontend/src/locales/cs-CZ.po b/echo/frontend/src/locales/cs-CZ.po index 223c00f52..648c39536 100644 --- a/echo/frontend/src/locales/cs-CZ.po +++ b/echo/frontend/src/locales/cs-CZ.po @@ -213,7 +213,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "{0, plural, one {# workspace} other {# workspaces}}" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2114 +#: src/components/chat/AgenticChatPanel.tsx:2101 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -478,11 +478,11 @@ msgstr "{liveProjectCount, plural, one {Delete the # project in this workspace b msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:279 +#: src/components/chat/AgenticChatPanel.tsx:267 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:278 +#: src/components/chat/AgenticChatPanel.tsx:266 msgid "{name}'s transcript excerpt" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "Advanced (Tips and best practices)" msgid "Advanced Settings" msgstr "Advanced Settings" -#: src/components/chat/AgenticChatPanel.tsx:398 +#: src/components/chat/AgenticChatPanel.tsx:385 msgid "Agent run failed" msgstr "" @@ -1435,7 +1435,7 @@ msgid "Approaching a limit this month" msgstr "Approaching a limit this month" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2263 +#: src/components/chat/AgenticChatPanel.tsx:2250 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1529,7 +1529,7 @@ msgstr "Ask | dembrane" msgid "Ask a organisation admin to request this upgrade." msgstr "Ask a organisation admin to request this upgrade." -#: src/components/chat/AgenticChatPanel.tsx:1826 +#: src/components/chat/AgenticChatPanel.tsx:1813 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1546,7 +1546,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2244 +#: src/components/chat/AgenticChatPanel.tsx:2231 msgid "Ask about your conversations..." msgstr "" @@ -1989,8 +1989,8 @@ msgstr "can read" #: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:747 -#: src/components/chat/AgenticChatPanel.tsx:2152 +#: src/components/chat/AgenticChatPanel.tsx:734 +#: src/components/chat/AgenticChatPanel.tsx:2139 msgid "Cancel" msgstr "Cancel" @@ -2023,7 +2023,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:735 +#: src/components/chat/AgenticChatPanel.tsx:722 msgid "Cancel current run" msgstr "" @@ -2189,7 +2189,7 @@ msgstr "Changing language during an active chat may lead to unexpected results. #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1670 +#: src/components/chat/AgenticChatPanel.tsx:1657 msgid "Chat" msgstr "Chat" @@ -3268,7 +3268,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2281 +#: src/components/chat/AgenticChatPanel.tsx:2268 msgid "dembrane can make mistakes. Please double-check responses." msgstr "dembrane can make mistakes. Please double-check responses." @@ -3456,7 +3456,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:417 +#: src/components/chat/AgenticChatPanel.tsx:404 msgid "Done" msgstr "Done" @@ -3826,8 +3826,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:422 -#: src/components/chat/AgenticChatPanel.tsx:1772 +#: src/components/chat/AgenticChatPanel.tsx:409 +#: src/components/chat/AgenticChatPanel.tsx:1759 msgid "Error" msgstr "Error" @@ -4179,11 +4179,11 @@ msgstr "Failed to revise outcome. 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/chat/AgenticChatPanel.tsx:1663 +#: src/components/chat/AgenticChatPanel.tsx:1650 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1622 +#: src/components/chat/AgenticChatPanel.tsx:1609 msgid "Failed to submit agentic message" msgstr "" @@ -4344,13 +4344,13 @@ msgstr "" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2156 -#: src/components/chat/AgenticChatPanel.tsx:2157 -#: src/components/chat/AgenticChatPanel.tsx:2291 +#: src/components/chat/AgenticChatPanel.tsx:2143 +#: src/components/chat/AgenticChatPanel.tsx:2144 +#: src/components/chat/AgenticChatPanel.tsx:2278 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:252 +#: src/components/chat/AgenticChatPanel.tsx:240 msgid "Focusing on:" msgstr "" @@ -4717,7 +4717,7 @@ msgstr "Hide projects" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Hide steps" msgstr "" @@ -4781,11 +4781,11 @@ msgstr "" "* What is the north star goal or key metric\n" "* What does success look like" -#: src/components/chat/AgenticChatPanel.tsx:1940 +#: src/components/chat/AgenticChatPanel.tsx:1927 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1956 +#: src/components/chat/AgenticChatPanel.tsx:1943 msgid "I applied the goal." msgstr "" @@ -4839,7 +4839,7 @@ msgstr "If you're trying to join an existing organization, you should not create msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1850 +#: src/components/chat/AgenticChatPanel.tsx:1837 msgid "Improve my setup" msgstr "" @@ -5418,11 +5418,11 @@ msgstr "Link copied" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link to your organisation's privacy policy that will be shown to participants" -#: src/components/chat/AgenticChatPanel.tsx:1840 +#: src/components/chat/AgenticChatPanel.tsx:1827 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1841 +#: src/components/chat/AgenticChatPanel.tsx:1828 msgid "List the conversations in this project." msgstr "" @@ -5481,7 +5481,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1320 +#: src/components/chat/AgenticChatPanel.tsx:1307 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5535,7 +5535,7 @@ msgstr "Loading microphones..." msgid "Loading projects..." msgstr "Loading projects..." -#: src/components/chat/AgenticChatPanel.tsx:1783 +#: src/components/chat/AgenticChatPanel.tsx:1770 msgid "Loading this chat..." msgstr "" @@ -5791,7 +5791,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2259 +#: src/components/chat/AgenticChatPanel.tsx:2246 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -7727,7 +7727,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:600 +#: src/components/chat/AgenticChatPanel.tsx:587 msgid "Ran {0} steps at once" msgstr "" @@ -7852,7 +7852,7 @@ msgstr "" msgid "participant.button.record" msgstr "Record" -#: src/components/chat/AgenticChatPanel.tsx:2181 +#: src/components/chat/AgenticChatPanel.tsx:2168 msgid "Record a voice message" msgstr "" @@ -7888,7 +7888,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Recording Paused" -#: src/components/chat/AgenticChatPanel.tsx:872 +#: src/components/chat/AgenticChatPanel.tsx:859 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8094,7 +8094,7 @@ msgid "project.sidebar.chat.rename" msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1733 +#: src/components/chat/AgenticChatPanel.tsx:1720 msgid "Rename chat" msgstr "Rename chat" @@ -8412,7 +8412,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1851 +#: src/components/chat/AgenticChatPanel.tsx:1838 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8484,7 +8484,7 @@ msgstr "" msgid "Rows per page" msgstr "Rows per page" -#: src/components/chat/AgenticChatPanel.tsx:427 +#: src/components/chat/AgenticChatPanel.tsx:414 msgid "Running" msgstr "" @@ -8940,7 +8940,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2218 +#: src/components/chat/AgenticChatPanel.tsx:2205 msgid "Send" msgstr "Send" @@ -9204,7 +9204,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Show steps" msgstr "" @@ -9323,7 +9323,7 @@ msgstr "Something went wrong generating your latest report." msgid "Something went wrong generating your report." msgstr "Something went wrong generating your report." -#: src/components/chat/AgenticChatPanel.tsx:218 +#: src/components/chat/AgenticChatPanel.tsx:206 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9491,7 +9491,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "Still stuck? Email <0>support@dembrane.com." #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2176 +#: src/components/chat/AgenticChatPanel.tsx:2163 msgid "Stop" msgstr "Stop" @@ -9500,7 +9500,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2166 +#: src/components/chat/AgenticChatPanel.tsx:2153 msgid "Stop recording and turn it into text" msgstr "" @@ -10210,7 +10210,7 @@ msgstr "This report is not yet available. " msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" -#: src/components/chat/AgenticChatPanel.tsx:216 +#: src/components/chat/AgenticChatPanel.tsx:204 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10277,7 +10277,7 @@ msgstr "" msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2195 +#: src/components/chat/AgenticChatPanel.tsx:2182 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "" @@ -10396,7 +10396,7 @@ msgstr "Too large" msgid "Too long" msgstr "Too long" -#: src/components/chat/AgenticChatPanel.tsx:2130 +#: src/components/chat/AgenticChatPanel.tsx:2117 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10494,7 +10494,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:282 +#: src/components/chat/AgenticChatPanel.tsx:270 msgid "transcript" msgstr "" @@ -10510,7 +10510,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:281 +#: src/components/chat/AgenticChatPanel.tsx:269 msgid "transcript excerpt" msgstr "" @@ -11021,7 +11021,7 @@ msgstr "Usage this cycle" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2277 +#: src/components/chat/AgenticChatPanel.tsx:2264 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" @@ -11428,11 +11428,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "What should ECHO analyse or generate from the conversations?" -#: src/components/chat/AgenticChatPanel.tsx:1846 +#: src/components/chat/AgenticChatPanel.tsx:1833 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1845 +#: src/components/chat/AgenticChatPanel.tsx:1832 msgid "What themes came up?" msgstr "" @@ -11502,7 +11502,7 @@ msgid "Where would you like to go?" msgstr "Where would you like to go?" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1823 +#: src/components/chat/AgenticChatPanel.tsx:1810 msgid "Where would you like to start?" msgstr "" @@ -11545,11 +11545,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:601 +#: src/components/chat/AgenticChatPanel.tsx:588 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1695 +#: src/components/chat/AgenticChatPanel.tsx:1682 msgid "Working on your answer..." msgstr "" @@ -11813,7 +11813,7 @@ msgstr "You need an invitation from a colleague" msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" -#: src/components/chat/AgenticChatPanel.tsx:214 +#: src/components/chat/AgenticChatPanel.tsx:202 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/de-DE.po b/echo/frontend/src/locales/de-DE.po index eee48bd62..83562185e 100644 --- a/echo/frontend/src/locales/de-DE.po +++ b/echo/frontend/src/locales/de-DE.po @@ -214,7 +214,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2114 +#: src/components/chat/AgenticChatPanel.tsx:2101 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -479,11 +479,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:279 +#: src/components/chat/AgenticChatPanel.tsx:267 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:278 +#: src/components/chat/AgenticChatPanel.tsx:266 msgid "{name}'s transcript excerpt" msgstr "" @@ -1152,7 +1152,7 @@ msgstr "Erweitert (Tipps und best practices)" msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: src/components/chat/AgenticChatPanel.tsx:398 +#: src/components/chat/AgenticChatPanel.tsx:385 msgid "Agent run failed" msgstr "" @@ -1436,7 +1436,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2263 +#: src/components/chat/AgenticChatPanel.tsx:2250 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1530,7 +1530,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1826 +#: src/components/chat/AgenticChatPanel.tsx:1813 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1547,7 +1547,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2244 +#: src/components/chat/AgenticChatPanel.tsx:2231 msgid "Ask about your conversations..." msgstr "" @@ -1990,8 +1990,8 @@ msgstr "" #: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:747 -#: src/components/chat/AgenticChatPanel.tsx:2152 +#: src/components/chat/AgenticChatPanel.tsx:734 +#: src/components/chat/AgenticChatPanel.tsx:2139 msgid "Cancel" msgstr "Abbrechen" @@ -2024,7 +2024,7 @@ msgstr "Abbrechen" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:735 +#: src/components/chat/AgenticChatPanel.tsx:722 msgid "Cancel current run" msgstr "" @@ -2190,7 +2190,7 @@ msgstr "Das Ändern der Sprache während eines aktiven Chats kann unerwartete Er #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1670 +#: src/components/chat/AgenticChatPanel.tsx:1657 msgid "Chat" msgstr "Chat" @@ -3269,7 +3269,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2281 +#: src/components/chat/AgenticChatPanel.tsx:2268 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3457,7 +3457,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:417 +#: src/components/chat/AgenticChatPanel.tsx:404 msgid "Done" msgstr "" @@ -3827,8 +3827,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:422 -#: src/components/chat/AgenticChatPanel.tsx:1772 +#: src/components/chat/AgenticChatPanel.tsx:409 +#: src/components/chat/AgenticChatPanel.tsx:1759 msgid "Error" msgstr "Fehler" @@ -4180,11 +4180,11 @@ msgstr "Ergebnis 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/chat/AgenticChatPanel.tsx:1663 +#: src/components/chat/AgenticChatPanel.tsx:1650 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1622 +#: src/components/chat/AgenticChatPanel.tsx:1609 msgid "Failed to submit agentic message" msgstr "" @@ -4345,13 +4345,13 @@ msgstr "" msgid "Focus" msgstr "Fokus" -#: src/components/chat/AgenticChatPanel.tsx:2156 -#: src/components/chat/AgenticChatPanel.tsx:2157 -#: src/components/chat/AgenticChatPanel.tsx:2291 +#: src/components/chat/AgenticChatPanel.tsx:2143 +#: src/components/chat/AgenticChatPanel.tsx:2144 +#: src/components/chat/AgenticChatPanel.tsx:2278 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:252 +#: src/components/chat/AgenticChatPanel.tsx:240 msgid "Focusing on:" msgstr "" @@ -4718,7 +4718,7 @@ msgstr "" msgid "Hide revision data" msgstr "Revisionsdaten verbergen" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Hide steps" msgstr "" @@ -4782,11 +4782,11 @@ msgstr "" "* Was ist das übergeordnete Ziel oder die wichtigste Kennzahl\n" "* Wie sieht Erfolg aus" -#: src/components/chat/AgenticChatPanel.tsx:1940 +#: src/components/chat/AgenticChatPanel.tsx:1927 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1956 +#: src/components/chat/AgenticChatPanel.tsx:1943 msgid "I applied the goal." msgstr "" @@ -4840,7 +4840,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1850 +#: src/components/chat/AgenticChatPanel.tsx:1837 msgid "Improve my setup" msgstr "" @@ -5419,11 +5419,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link zur Datenschutzerklärung Ihrer Organisation, die angezeigt wird" -#: src/components/chat/AgenticChatPanel.tsx:1840 +#: src/components/chat/AgenticChatPanel.tsx:1827 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1841 +#: src/components/chat/AgenticChatPanel.tsx:1828 msgid "List the conversations in this project." msgstr "" @@ -5482,7 +5482,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1320 +#: src/components/chat/AgenticChatPanel.tsx:1307 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5536,7 +5536,7 @@ msgstr "Mikrofone werden geladen..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1783 +#: src/components/chat/AgenticChatPanel.tsx:1770 msgid "Loading this chat..." msgstr "" @@ -5792,7 +5792,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2259 +#: src/components/chat/AgenticChatPanel.tsx:2246 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -7728,7 +7728,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:600 +#: src/components/chat/AgenticChatPanel.tsx:587 msgid "Ran {0} steps at once" msgstr "" @@ -7853,7 +7853,7 @@ msgstr "" msgid "participant.button.record" msgstr "Aufnehmen" -#: src/components/chat/AgenticChatPanel.tsx:2181 +#: src/components/chat/AgenticChatPanel.tsx:2168 msgid "Record a voice message" msgstr "" @@ -7889,7 +7889,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Aufnahme pausiert" -#: src/components/chat/AgenticChatPanel.tsx:872 +#: src/components/chat/AgenticChatPanel.tsx:859 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8095,7 +8095,7 @@ msgid "project.sidebar.chat.rename" msgstr "Umbenennen" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1733 +#: src/components/chat/AgenticChatPanel.tsx:1720 msgid "Rename chat" msgstr "Chat umbenennen" @@ -8413,7 +8413,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Dateien vor dem Hochladen überprüfen" -#: src/components/chat/AgenticChatPanel.tsx:1851 +#: src/components/chat/AgenticChatPanel.tsx:1838 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8485,7 +8485,7 @@ msgstr "" msgid "Rows per page" msgstr "Zeilen pro Seite" -#: src/components/chat/AgenticChatPanel.tsx:427 +#: src/components/chat/AgenticChatPanel.tsx:414 msgid "Running" msgstr "" @@ -8941,7 +8941,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2218 +#: src/components/chat/AgenticChatPanel.tsx:2205 msgid "Send" msgstr "Senden" @@ -9205,7 +9205,7 @@ msgstr "Referenzen anzeigen" msgid "Show revision data" msgstr "Revisionsdaten anzeigen" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Show steps" msgstr "" @@ -9324,7 +9324,7 @@ msgstr "Beim Erstellen Ihres letzten Berichts ist etwas schiefgelaufen." msgid "Something went wrong generating your report." msgstr "Beim Erstellen Ihres Berichts ist etwas schiefgelaufen." -#: src/components/chat/AgenticChatPanel.tsx:218 +#: src/components/chat/AgenticChatPanel.tsx:206 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9492,7 +9492,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2176 +#: src/components/chat/AgenticChatPanel.tsx:2163 msgid "Stop" msgstr "Stopp" @@ -9501,7 +9501,7 @@ msgstr "Stopp" msgid "participant.button.stop" msgstr "Beenden" -#: src/components/chat/AgenticChatPanel.tsx:2166 +#: src/components/chat/AgenticChatPanel.tsx:2153 msgid "Stop recording and turn it into text" msgstr "" @@ -10211,7 +10211,7 @@ msgstr "Dieser Bericht ist derzeit nicht verfügbar. " msgid "This report was opened by {0} people" msgstr "Dieser Bericht wurde von {0} Personen geöffnet" -#: src/components/chat/AgenticChatPanel.tsx:216 +#: src/components/chat/AgenticChatPanel.tsx:204 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10278,7 +10278,7 @@ msgstr "Dieser Arbeitsbereich hat die enthaltenen Aufnahmestunden verbraucht. Bi msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "Dieser Arbeitsbereich hat die enthaltenen Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen." -#: src/components/chat/AgenticChatPanel.tsx:2195 +#: src/components/chat/AgenticChatPanel.tsx:2182 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "Dieser Arbeitsbereich hat seine Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen." @@ -10397,7 +10397,7 @@ msgstr "Zu groß" msgid "Too long" msgstr "Zu lang" -#: src/components/chat/AgenticChatPanel.tsx:2130 +#: src/components/chat/AgenticChatPanel.tsx:2117 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10495,7 +10495,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribieren..." -#: src/components/chat/AgenticChatPanel.tsx:282 +#: src/components/chat/AgenticChatPanel.tsx:270 msgid "transcript" msgstr "" @@ -10511,7 +10511,7 @@ msgstr "Transkript" msgid "Transcript copied to clipboard" msgstr "Transkript in die Zwischenablage kopiert" -#: src/components/chat/AgenticChatPanel.tsx:281 +#: src/components/chat/AgenticChatPanel.tsx:269 msgid "transcript excerpt" msgstr "" @@ -11020,7 +11020,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2277 +#: src/components/chat/AgenticChatPanel.tsx:2264 msgid "Use Shift + Enter to add a new line" msgstr "Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen" @@ -11427,11 +11427,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "Was soll ECHO aus den Gesprächen analysieren oder generieren?" -#: src/components/chat/AgenticChatPanel.tsx:1846 +#: src/components/chat/AgenticChatPanel.tsx:1833 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1845 +#: src/components/chat/AgenticChatPanel.tsx:1832 msgid "What themes came up?" msgstr "" @@ -11501,7 +11501,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1823 +#: src/components/chat/AgenticChatPanel.tsx:1810 msgid "Where would you like to start?" msgstr "" @@ -11544,11 +11544,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:601 +#: src/components/chat/AgenticChatPanel.tsx:588 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1695 +#: src/components/chat/AgenticChatPanel.tsx:1682 msgid "Working on your answer..." msgstr "" @@ -11812,7 +11812,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung" -#: src/components/chat/AgenticChatPanel.tsx:214 +#: src/components/chat/AgenticChatPanel.tsx:202 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/en-US.po b/echo/frontend/src/locales/en-US.po index 123357717..a41a8345c 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -213,7 +213,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "{0, plural, one {# workspace} other {# workspaces}}" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2114 +#: src/components/chat/AgenticChatPanel.tsx:2101 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" @@ -478,11 +478,11 @@ msgstr "{liveProjectCount, plural, one {Delete the # project in this workspace b msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "{MONTHLY_BILLING_PREMIUM_PCT}% off" -#: src/components/chat/AgenticChatPanel.tsx:279 +#: src/components/chat/AgenticChatPanel.tsx:267 msgid "{name}'s conversation" msgstr "{name}'s conversation" -#: src/components/chat/AgenticChatPanel.tsx:278 +#: src/components/chat/AgenticChatPanel.tsx:266 msgid "{name}'s transcript excerpt" msgstr "{name}'s transcript excerpt" @@ -1151,7 +1151,7 @@ msgstr "Advanced (Tips and best practices)" msgid "Advanced Settings" msgstr "Advanced Settings" -#: src/components/chat/AgenticChatPanel.tsx:398 +#: src/components/chat/AgenticChatPanel.tsx:385 msgid "Agent run failed" msgstr "Agent run failed" @@ -1435,7 +1435,7 @@ msgid "Approaching a limit this month" msgstr "Approaching a limit this month" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2263 +#: src/components/chat/AgenticChatPanel.tsx:2250 msgid "Approaching limit: {0} / 32,000 characters" msgstr "Approaching limit: {0} / 32,000 characters" @@ -1529,7 +1529,7 @@ msgstr "Ask | dembrane" msgid "Ask a organisation admin to request this upgrade." msgstr "Ask a organisation admin to request this upgrade." -#: src/components/chat/AgenticChatPanel.tsx:1826 +#: src/components/chat/AgenticChatPanel.tsx:1813 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." @@ -1546,7 +1546,7 @@ msgid "Ask about these" msgstr "Ask about these" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2244 +#: src/components/chat/AgenticChatPanel.tsx:2231 msgid "Ask about your conversations..." msgstr "Ask about your conversations..." @@ -1989,8 +1989,8 @@ msgstr "can read" #: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:747 -#: src/components/chat/AgenticChatPanel.tsx:2152 +#: src/components/chat/AgenticChatPanel.tsx:734 +#: src/components/chat/AgenticChatPanel.tsx:2139 msgid "Cancel" msgstr "Cancel" @@ -2023,7 +2023,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "Cancel anytime. You keep access until the period ends." -#: src/components/chat/AgenticChatPanel.tsx:735 +#: src/components/chat/AgenticChatPanel.tsx:722 msgid "Cancel current run" msgstr "Cancel current run" @@ -2189,7 +2189,7 @@ msgstr "Changing language during an active chat may lead to unexpected results. #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1670 +#: src/components/chat/AgenticChatPanel.tsx:1657 msgid "Chat" msgstr "Chat" @@ -3268,7 +3268,7 @@ msgstr "dembrane B.V. {0}, all rights reserved." #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2281 +#: src/components/chat/AgenticChatPanel.tsx:2268 msgid "dembrane can make mistakes. Please double-check responses." msgstr "dembrane can make mistakes. Please double-check responses." @@ -3456,7 +3456,7 @@ msgstr "Does not update on its own. Updated {updatedAgo}." #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:417 +#: src/components/chat/AgenticChatPanel.tsx:404 msgid "Done" msgstr "Done" @@ -3826,8 +3826,8 @@ msgstr "Entered details" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:422 -#: src/components/chat/AgenticChatPanel.tsx:1772 +#: src/components/chat/AgenticChatPanel.tsx:409 +#: src/components/chat/AgenticChatPanel.tsx:1759 msgid "Error" msgstr "Error" @@ -4179,11 +4179,11 @@ msgstr "Failed to revise outcome. 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/chat/AgenticChatPanel.tsx:1663 +#: src/components/chat/AgenticChatPanel.tsx:1650 msgid "Failed to stop run" msgstr "Failed to stop run" -#: src/components/chat/AgenticChatPanel.tsx:1622 +#: src/components/chat/AgenticChatPanel.tsx:1609 msgid "Failed to submit agentic message" msgstr "Failed to submit agentic message" @@ -4344,13 +4344,13 @@ msgstr "Fixture" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2156 -#: src/components/chat/AgenticChatPanel.tsx:2157 -#: src/components/chat/AgenticChatPanel.tsx:2291 +#: src/components/chat/AgenticChatPanel.tsx:2143 +#: src/components/chat/AgenticChatPanel.tsx:2144 +#: src/components/chat/AgenticChatPanel.tsx:2278 msgid "Focus on conversations" msgstr "Focus on conversations" -#: src/components/chat/AgenticChatPanel.tsx:252 +#: src/components/chat/AgenticChatPanel.tsx:240 msgid "Focusing on:" msgstr "Focusing on:" @@ -4717,7 +4717,7 @@ msgstr "Hide projects" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Hide steps" msgstr "Hide steps" @@ -4781,11 +4781,11 @@ msgstr "" "* What is the north star goal or key metric\n" "* What does success look like" -#: src/components/chat/AgenticChatPanel.tsx:1940 +#: src/components/chat/AgenticChatPanel.tsx:1927 msgid "I applied the canvas." msgstr "I applied the canvas." -#: src/components/chat/AgenticChatPanel.tsx:1956 +#: src/components/chat/AgenticChatPanel.tsx:1943 msgid "I applied the goal." msgstr "I applied the goal." @@ -4839,7 +4839,7 @@ msgstr "If you're trying to join an existing organization, you should not create msgid "Image style" msgstr "Image style" -#: src/components/chat/AgenticChatPanel.tsx:1850 +#: src/components/chat/AgenticChatPanel.tsx:1837 msgid "Improve my setup" msgstr "Improve my setup" @@ -5418,11 +5418,11 @@ msgstr "Link copied" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link to your organisation's privacy policy that will be shown to participants" -#: src/components/chat/AgenticChatPanel.tsx:1840 +#: src/components/chat/AgenticChatPanel.tsx:1827 msgid "List my conversations" msgstr "List my conversations" -#: src/components/chat/AgenticChatPanel.tsx:1841 +#: src/components/chat/AgenticChatPanel.tsx:1828 msgid "List the conversations in this project." msgstr "List the conversations in this project." @@ -5481,7 +5481,7 @@ msgstr "Live recordings, transcription progress, and errors show up here as part msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "Live stream disconnected. Updating on a slower poll until it reconnects." -#: src/components/chat/AgenticChatPanel.tsx:1320 +#: src/components/chat/AgenticChatPanel.tsx:1307 msgid "Live stream interrupted. Falling back to polling." msgstr "Live stream interrupted. Falling back to polling." @@ -5535,7 +5535,7 @@ msgstr "Loading microphones..." msgid "Loading projects..." msgstr "Loading projects..." -#: src/components/chat/AgenticChatPanel.tsx:1783 +#: src/components/chat/AgenticChatPanel.tsx:1770 msgid "Loading this chat..." msgstr "Loading this chat..." @@ -5791,7 +5791,7 @@ msgstr "Memory removed" msgid "Message from the dembrane team" msgstr "Message from the dembrane team" -#: src/components/chat/AgenticChatPanel.tsx:2259 +#: src/components/chat/AgenticChatPanel.tsx:2246 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." @@ -7727,7 +7727,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "Questions about how dembrane works, not only about your data." #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:600 +#: src/components/chat/AgenticChatPanel.tsx:587 msgid "Ran {0} steps at once" msgstr "Ran {0} steps at once" @@ -7852,7 +7852,7 @@ msgstr "Reconnecting" msgid "participant.button.record" msgstr "Record" -#: src/components/chat/AgenticChatPanel.tsx:2181 +#: src/components/chat/AgenticChatPanel.tsx:2168 msgid "Record a voice message" msgstr "Record a voice message" @@ -7888,7 +7888,7 @@ msgstr "Recording page" msgid "participant.modal.pause.title" msgstr "Recording Paused" -#: src/components/chat/AgenticChatPanel.tsx:872 +#: src/components/chat/AgenticChatPanel.tsx:859 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "Recording stopped at the five minute limit. Turning what you recorded into text." @@ -8094,7 +8094,7 @@ msgid "project.sidebar.chat.rename" msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1733 +#: src/components/chat/AgenticChatPanel.tsx:1720 msgid "Rename chat" msgstr "Rename chat" @@ -8412,7 +8412,7 @@ msgstr "Review before creating." msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1851 +#: src/components/chat/AgenticChatPanel.tsx:1838 msgid "Review my project settings and suggest improvements." msgstr "Review my project settings and suggest improvements." @@ -8484,7 +8484,7 @@ msgstr "Rough estimate to finish transcribing the backlog" msgid "Rows per page" msgstr "Rows per page" -#: src/components/chat/AgenticChatPanel.tsx:427 +#: src/components/chat/AgenticChatPanel.tsx:414 msgid "Running" msgstr "Running" @@ -8940,7 +8940,7 @@ msgstr "Self-serve" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2218 +#: src/components/chat/AgenticChatPanel.tsx:2205 msgid "Send" msgstr "Send" @@ -9204,7 +9204,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Show steps" msgstr "Show steps" @@ -9323,7 +9323,7 @@ msgstr "Something went wrong generating your latest report." msgid "Something went wrong generating your report." msgstr "Something went wrong generating your report." -#: src/components/chat/AgenticChatPanel.tsx:218 +#: src/components/chat/AgenticChatPanel.tsx:206 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "Something went wrong on my side. Send your message again and I'll retry." @@ -9491,7 +9491,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "Still stuck? Email <0>support@dembrane.com." #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2176 +#: src/components/chat/AgenticChatPanel.tsx:2163 msgid "Stop" msgstr "Stop" @@ -9500,7 +9500,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2166 +#: src/components/chat/AgenticChatPanel.tsx:2153 msgid "Stop recording and turn it into text" msgstr "Stop recording and turn it into text" @@ -10210,7 +10210,7 @@ msgstr "This report is not yet available. " msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" -#: src/components/chat/AgenticChatPanel.tsx:216 +#: src/components/chat/AgenticChatPanel.tsx:204 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "This request took too long, so I stopped it. Send it again and I'll retry." @@ -10277,7 +10277,7 @@ msgstr "This workspace has used its included recording hours. Ask an organisatio msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "This workspace has used its included recording hours. Upgrade to keep using voice." -#: src/components/chat/AgenticChatPanel.tsx:2195 +#: src/components/chat/AgenticChatPanel.tsx:2182 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "This workspace has used its recording hours. Upgrade to keep using voice." @@ -10396,7 +10396,7 @@ msgstr "Too large" msgid "Too long" msgstr "Too long" -#: src/components/chat/AgenticChatPanel.tsx:2130 +#: src/components/chat/AgenticChatPanel.tsx:2117 msgid "Too many to list here. The assistant reads through them in batches." msgstr "Too many to list here. The assistant reads through them in batches." @@ -10494,7 +10494,7 @@ msgstr "Trainings" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:282 +#: src/components/chat/AgenticChatPanel.tsx:270 msgid "transcript" msgstr "transcript" @@ -10510,7 +10510,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:281 +#: src/components/chat/AgenticChatPanel.tsx:269 msgid "transcript excerpt" msgstr "transcript excerpt" @@ -11021,7 +11021,7 @@ msgstr "Usage this cycle" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2277 +#: src/components/chat/AgenticChatPanel.tsx:2264 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" @@ -11428,11 +11428,11 @@ msgstr "What should be different about this?" msgid "What should ECHO analyse or generate from the conversations?" msgstr "What should ECHO analyse or generate from the conversations?" -#: src/components/chat/AgenticChatPanel.tsx:1846 +#: src/components/chat/AgenticChatPanel.tsx:1833 msgid "What themes came up across the conversations in this project?" msgstr "What themes came up across the conversations in this project?" -#: src/components/chat/AgenticChatPanel.tsx:1845 +#: src/components/chat/AgenticChatPanel.tsx:1832 msgid "What themes came up?" msgstr "What themes came up?" @@ -11502,7 +11502,7 @@ msgid "Where would you like to go?" msgstr "Where would you like to go?" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1823 +#: src/components/chat/AgenticChatPanel.tsx:1810 msgid "Where would you like to start?" msgstr "Where would you like to start?" @@ -11545,11 +11545,11 @@ msgid "Within my organisation" msgstr "Within my organisation" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:601 +#: src/components/chat/AgenticChatPanel.tsx:588 msgid "Worked through {0} steps" msgstr "Worked through {0} steps" -#: src/components/chat/AgenticChatPanel.tsx:1695 +#: src/components/chat/AgenticChatPanel.tsx:1682 msgid "Working on your answer..." msgstr "Working on your answer..." @@ -11813,7 +11813,7 @@ msgstr "You need an invitation from a colleague" msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" -#: src/components/chat/AgenticChatPanel.tsx:214 +#: src/components/chat/AgenticChatPanel.tsx:202 msgid "You stopped this run." msgstr "You stopped this run." diff --git a/echo/frontend/src/locales/es-ES.po b/echo/frontend/src/locales/es-ES.po index df01fa43f..0d0c012f8 100644 --- a/echo/frontend/src/locales/es-ES.po +++ b/echo/frontend/src/locales/es-ES.po @@ -214,7 +214,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2114 +#: src/components/chat/AgenticChatPanel.tsx:2101 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -479,11 +479,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:279 +#: src/components/chat/AgenticChatPanel.tsx:267 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:278 +#: src/components/chat/AgenticChatPanel.tsx:266 msgid "{name}'s transcript excerpt" msgstr "" @@ -1152,7 +1152,7 @@ msgstr "Avanzado (Consejos y best practices)" msgid "Advanced Settings" msgstr "Configuración Avanzada" -#: src/components/chat/AgenticChatPanel.tsx:398 +#: src/components/chat/AgenticChatPanel.tsx:385 msgid "Agent run failed" msgstr "" @@ -1436,7 +1436,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2263 +#: src/components/chat/AgenticChatPanel.tsx:2250 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1530,7 +1530,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1826 +#: src/components/chat/AgenticChatPanel.tsx:1813 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1547,7 +1547,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2244 +#: src/components/chat/AgenticChatPanel.tsx:2231 msgid "Ask about your conversations..." msgstr "" @@ -1990,8 +1990,8 @@ msgstr "" #: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:747 -#: src/components/chat/AgenticChatPanel.tsx:2152 +#: src/components/chat/AgenticChatPanel.tsx:734 +#: src/components/chat/AgenticChatPanel.tsx:2139 msgid "Cancel" msgstr "Cancelar" @@ -2024,7 +2024,7 @@ msgstr "Cancelar" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:735 +#: src/components/chat/AgenticChatPanel.tsx:722 msgid "Cancel current run" msgstr "" @@ -2190,7 +2190,7 @@ msgstr "Cambiar el idioma durante una conversación activa puede provocar result #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1670 +#: src/components/chat/AgenticChatPanel.tsx:1657 msgid "Chat" msgstr "Chat" @@ -3269,7 +3269,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2281 +#: src/components/chat/AgenticChatPanel.tsx:2268 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3457,7 +3457,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:417 +#: src/components/chat/AgenticChatPanel.tsx:404 msgid "Done" msgstr "" @@ -3827,8 +3827,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:422 -#: src/components/chat/AgenticChatPanel.tsx:1772 +#: src/components/chat/AgenticChatPanel.tsx:409 +#: src/components/chat/AgenticChatPanel.tsx:1759 msgid "Error" msgstr "Error" @@ -4180,11 +4180,11 @@ msgstr "Error al revisar el resultado. 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/chat/AgenticChatPanel.tsx:1663 +#: src/components/chat/AgenticChatPanel.tsx:1650 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1622 +#: src/components/chat/AgenticChatPanel.tsx:1609 msgid "Failed to submit agentic message" msgstr "" @@ -4345,13 +4345,13 @@ msgstr "" msgid "Focus" msgstr "Enfoque" -#: src/components/chat/AgenticChatPanel.tsx:2156 -#: src/components/chat/AgenticChatPanel.tsx:2157 -#: src/components/chat/AgenticChatPanel.tsx:2291 +#: src/components/chat/AgenticChatPanel.tsx:2143 +#: src/components/chat/AgenticChatPanel.tsx:2144 +#: src/components/chat/AgenticChatPanel.tsx:2278 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:252 +#: src/components/chat/AgenticChatPanel.tsx:240 msgid "Focusing on:" msgstr "" @@ -4718,7 +4718,7 @@ msgstr "" msgid "Hide revision data" msgstr "Ocultar datos de revisión" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Hide steps" msgstr "" @@ -4782,11 +4782,11 @@ msgstr "" "* ¿Cuál es el objetivo principal o métrica clave?\n" "* ¿Cómo se ve el éxito?" -#: src/components/chat/AgenticChatPanel.tsx:1940 +#: src/components/chat/AgenticChatPanel.tsx:1927 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1956 +#: src/components/chat/AgenticChatPanel.tsx:1943 msgid "I applied the goal." msgstr "" @@ -4840,7 +4840,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1850 +#: src/components/chat/AgenticChatPanel.tsx:1837 msgid "Improve my setup" msgstr "" @@ -5419,11 +5419,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Enlace a la política de privacidad de tu organización que se mostrará a los participantes" -#: src/components/chat/AgenticChatPanel.tsx:1840 +#: src/components/chat/AgenticChatPanel.tsx:1827 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1841 +#: src/components/chat/AgenticChatPanel.tsx:1828 msgid "List the conversations in this project." msgstr "" @@ -5482,7 +5482,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1320 +#: src/components/chat/AgenticChatPanel.tsx:1307 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5536,7 +5536,7 @@ msgstr "Cargando micrófonos..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1783 +#: src/components/chat/AgenticChatPanel.tsx:1770 msgid "Loading this chat..." msgstr "" @@ -5792,7 +5792,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2259 +#: src/components/chat/AgenticChatPanel.tsx:2246 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -7728,7 +7728,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:600 +#: src/components/chat/AgenticChatPanel.tsx:587 msgid "Ran {0} steps at once" msgstr "" @@ -7853,7 +7853,7 @@ msgstr "" msgid "participant.button.record" msgstr "Grabar" -#: src/components/chat/AgenticChatPanel.tsx:2181 +#: src/components/chat/AgenticChatPanel.tsx:2168 msgid "Record a voice message" msgstr "" @@ -7889,7 +7889,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Grabación pausada" -#: src/components/chat/AgenticChatPanel.tsx:872 +#: src/components/chat/AgenticChatPanel.tsx:859 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8095,7 +8095,7 @@ msgid "project.sidebar.chat.rename" msgstr "Renombrar" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1733 +#: src/components/chat/AgenticChatPanel.tsx:1720 msgid "Rename chat" msgstr "Renombrar chat" @@ -8413,7 +8413,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Revisar archivos antes de subir" -#: src/components/chat/AgenticChatPanel.tsx:1851 +#: src/components/chat/AgenticChatPanel.tsx:1838 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8485,7 +8485,7 @@ msgstr "" msgid "Rows per page" msgstr "Filas por página" -#: src/components/chat/AgenticChatPanel.tsx:427 +#: src/components/chat/AgenticChatPanel.tsx:414 msgid "Running" msgstr "" @@ -8941,7 +8941,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2218 +#: src/components/chat/AgenticChatPanel.tsx:2205 msgid "Send" msgstr "Enviar" @@ -9205,7 +9205,7 @@ msgstr "Mostrar referencias" msgid "Show revision data" msgstr "Mostrar datos de revisión" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Show steps" msgstr "" @@ -9324,7 +9324,7 @@ msgstr "Algo salió mal al generar su último informe." msgid "Something went wrong generating your report." msgstr "Algo salió mal al generar su informe." -#: src/components/chat/AgenticChatPanel.tsx:218 +#: src/components/chat/AgenticChatPanel.tsx:206 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9492,7 +9492,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2176 +#: src/components/chat/AgenticChatPanel.tsx:2163 msgid "Stop" msgstr "Detener" @@ -9501,7 +9501,7 @@ msgstr "Detener" msgid "participant.button.stop" msgstr "Detener" -#: src/components/chat/AgenticChatPanel.tsx:2166 +#: src/components/chat/AgenticChatPanel.tsx:2153 msgid "Stop recording and turn it into text" msgstr "" @@ -10211,7 +10211,7 @@ msgstr "Este informe no está disponible. " msgid "This report was opened by {0} people" msgstr "Este informe fue abierto por {0} personas" -#: src/components/chat/AgenticChatPanel.tsx:216 +#: src/components/chat/AgenticChatPanel.tsx:204 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10278,7 +10278,7 @@ msgstr "Este espacio de trabajo ha agotado las horas de grabación incluidas. Pi msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "Este espacio de trabajo ha agotado las horas de grabación incluidas. Mejora tu plan para seguir usando la voz." -#: src/components/chat/AgenticChatPanel.tsx:2195 +#: src/components/chat/AgenticChatPanel.tsx:2182 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "Este espacio de trabajo ha agotado sus horas de grabación. Mejora tu plan para seguir usando la voz." @@ -10397,7 +10397,7 @@ msgstr "Demasiado grande" msgid "Too long" msgstr "Demasiado largo" -#: src/components/chat/AgenticChatPanel.tsx:2130 +#: src/components/chat/AgenticChatPanel.tsx:2117 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10495,7 +10495,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribiendo..." -#: src/components/chat/AgenticChatPanel.tsx:282 +#: src/components/chat/AgenticChatPanel.tsx:270 msgid "transcript" msgstr "" @@ -10511,7 +10511,7 @@ msgstr "Transcripción" msgid "Transcript copied to clipboard" msgstr "Transcripción copiada al portapapeles" -#: src/components/chat/AgenticChatPanel.tsx:281 +#: src/components/chat/AgenticChatPanel.tsx:269 msgid "transcript excerpt" msgstr "" @@ -11022,7 +11022,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2277 +#: src/components/chat/AgenticChatPanel.tsx:2264 msgid "Use Shift + Enter to add a new line" msgstr "Usa Shift + Enter para agregar una nueva línea" @@ -11429,11 +11429,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "¿Qué debe ECHO analizar o generar a partir de las conversaciones?" -#: src/components/chat/AgenticChatPanel.tsx:1846 +#: src/components/chat/AgenticChatPanel.tsx:1833 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1845 +#: src/components/chat/AgenticChatPanel.tsx:1832 msgid "What themes came up?" msgstr "" @@ -11503,7 +11503,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1823 +#: src/components/chat/AgenticChatPanel.tsx:1810 msgid "Where would you like to start?" msgstr "" @@ -11546,11 +11546,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:601 +#: src/components/chat/AgenticChatPanel.tsx:588 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1695 +#: src/components/chat/AgenticChatPanel.tsx:1682 msgid "Working on your answer..." msgstr "" @@ -11814,7 +11814,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "Pareces estar desconectado, por favor verifica tu conexión a internet" -#: src/components/chat/AgenticChatPanel.tsx:214 +#: src/components/chat/AgenticChatPanel.tsx:202 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/fr-FR.po b/echo/frontend/src/locales/fr-FR.po index 188fc5be1..b7fe37129 100644 --- a/echo/frontend/src/locales/fr-FR.po +++ b/echo/frontend/src/locales/fr-FR.po @@ -214,7 +214,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2114 +#: src/components/chat/AgenticChatPanel.tsx:2101 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -479,11 +479,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:279 +#: src/components/chat/AgenticChatPanel.tsx:267 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:278 +#: src/components/chat/AgenticChatPanel.tsx:266 msgid "{name}'s transcript excerpt" msgstr "" @@ -1152,7 +1152,7 @@ msgstr "Avancé (Astuces et conseils)" msgid "Advanced Settings" msgstr "Paramètres avancés" -#: src/components/chat/AgenticChatPanel.tsx:398 +#: src/components/chat/AgenticChatPanel.tsx:385 msgid "Agent run failed" msgstr "" @@ -1436,7 +1436,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2263 +#: src/components/chat/AgenticChatPanel.tsx:2250 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1530,7 +1530,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1826 +#: src/components/chat/AgenticChatPanel.tsx:1813 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1547,7 +1547,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2244 +#: src/components/chat/AgenticChatPanel.tsx:2231 msgid "Ask about your conversations..." msgstr "" @@ -1990,8 +1990,8 @@ msgstr "" #: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:747 -#: src/components/chat/AgenticChatPanel.tsx:2152 +#: src/components/chat/AgenticChatPanel.tsx:734 +#: src/components/chat/AgenticChatPanel.tsx:2139 msgid "Cancel" msgstr "Annuler" @@ -2024,7 +2024,7 @@ msgstr "Annuler" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:735 +#: src/components/chat/AgenticChatPanel.tsx:722 msgid "Cancel current run" msgstr "" @@ -2190,7 +2190,7 @@ msgstr "Changer de langue pendant une conversation active peut provoquer des ré #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1670 +#: src/components/chat/AgenticChatPanel.tsx:1657 msgid "Chat" msgstr "Discussion" @@ -3269,7 +3269,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2281 +#: src/components/chat/AgenticChatPanel.tsx:2268 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3457,7 +3457,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:417 +#: src/components/chat/AgenticChatPanel.tsx:404 msgid "Done" msgstr "" @@ -3827,8 +3827,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:422 -#: src/components/chat/AgenticChatPanel.tsx:1772 +#: src/components/chat/AgenticChatPanel.tsx:409 +#: src/components/chat/AgenticChatPanel.tsx:1759 msgid "Error" msgstr "Erreur" @@ -4180,11 +4180,11 @@ msgstr "Échec de la révision du résultat. 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/chat/AgenticChatPanel.tsx:1663 +#: src/components/chat/AgenticChatPanel.tsx:1650 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1622 +#: src/components/chat/AgenticChatPanel.tsx:1609 msgid "Failed to submit agentic message" msgstr "" @@ -4345,13 +4345,13 @@ msgstr "" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2156 -#: src/components/chat/AgenticChatPanel.tsx:2157 -#: src/components/chat/AgenticChatPanel.tsx:2291 +#: src/components/chat/AgenticChatPanel.tsx:2143 +#: src/components/chat/AgenticChatPanel.tsx:2144 +#: src/components/chat/AgenticChatPanel.tsx:2278 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:252 +#: src/components/chat/AgenticChatPanel.tsx:240 msgid "Focusing on:" msgstr "" @@ -4718,7 +4718,7 @@ msgstr "" msgid "Hide revision data" msgstr "Masquer les données de révision" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Hide steps" msgstr "" @@ -4782,11 +4782,11 @@ msgstr "" "* Quel est l'objectif principal ou la métrique clé\n" "* À quoi ressemble le succès" -#: src/components/chat/AgenticChatPanel.tsx:1940 +#: src/components/chat/AgenticChatPanel.tsx:1927 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1956 +#: src/components/chat/AgenticChatPanel.tsx:1943 msgid "I applied the goal." msgstr "" @@ -4840,7 +4840,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1850 +#: src/components/chat/AgenticChatPanel.tsx:1837 msgid "Improve my setup" msgstr "" @@ -5419,11 +5419,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Lien vers la politique de confidentialité de votre organisation qui sera affichée aux participants" -#: src/components/chat/AgenticChatPanel.tsx:1840 +#: src/components/chat/AgenticChatPanel.tsx:1827 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1841 +#: src/components/chat/AgenticChatPanel.tsx:1828 msgid "List the conversations in this project." msgstr "" @@ -5482,7 +5482,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1320 +#: src/components/chat/AgenticChatPanel.tsx:1307 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5536,7 +5536,7 @@ msgstr "Chargement des microphones..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1783 +#: src/components/chat/AgenticChatPanel.tsx:1770 msgid "Loading this chat..." msgstr "" @@ -5792,7 +5792,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2259 +#: src/components/chat/AgenticChatPanel.tsx:2246 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -7728,7 +7728,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:600 +#: src/components/chat/AgenticChatPanel.tsx:587 msgid "Ran {0} steps at once" msgstr "" @@ -7853,7 +7853,7 @@ msgstr "" msgid "participant.button.record" msgstr "Enregistrer" -#: src/components/chat/AgenticChatPanel.tsx:2181 +#: src/components/chat/AgenticChatPanel.tsx:2168 msgid "Record a voice message" msgstr "" @@ -7889,7 +7889,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Enregistrement en pause" -#: src/components/chat/AgenticChatPanel.tsx:872 +#: src/components/chat/AgenticChatPanel.tsx:859 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8095,7 +8095,7 @@ msgid "project.sidebar.chat.rename" msgstr "Renommer" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1733 +#: src/components/chat/AgenticChatPanel.tsx:1720 msgid "Rename chat" msgstr "Renommer le chat" @@ -8413,7 +8413,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Examiner les fichiers avant le téléchargement" -#: src/components/chat/AgenticChatPanel.tsx:1851 +#: src/components/chat/AgenticChatPanel.tsx:1838 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8485,7 +8485,7 @@ msgstr "" msgid "Rows per page" msgstr "Lignes par page" -#: src/components/chat/AgenticChatPanel.tsx:427 +#: src/components/chat/AgenticChatPanel.tsx:414 msgid "Running" msgstr "" @@ -8941,7 +8941,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2218 +#: src/components/chat/AgenticChatPanel.tsx:2205 msgid "Send" msgstr "Envoyer" @@ -9205,7 +9205,7 @@ msgstr "Afficher les références" msgid "Show revision data" msgstr "Afficher les données de révision" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Show steps" msgstr "" @@ -9324,7 +9324,7 @@ msgstr "Un problème est survenu lors de la génération de votre dernier rappor msgid "Something went wrong generating your report." msgstr "Un problème est survenu lors de la génération de votre rapport." -#: src/components/chat/AgenticChatPanel.tsx:218 +#: src/components/chat/AgenticChatPanel.tsx:206 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9492,7 +9492,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2176 +#: src/components/chat/AgenticChatPanel.tsx:2163 msgid "Stop" msgstr "Arrêter" @@ -9501,7 +9501,7 @@ msgstr "Arrêter" msgid "participant.button.stop" msgstr "Arrêter" -#: src/components/chat/AgenticChatPanel.tsx:2166 +#: src/components/chat/AgenticChatPanel.tsx:2153 msgid "Stop recording and turn it into text" msgstr "" @@ -10211,7 +10211,7 @@ msgstr "Ce rapport n'est pas encore disponible. " msgid "This report was opened by {0} people" msgstr "Ce rapport a été ouvert par {0} personnes" -#: src/components/chat/AgenticChatPanel.tsx:216 +#: src/components/chat/AgenticChatPanel.tsx:204 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10278,7 +10278,7 @@ msgstr "Cet espace de travail a utilisé les heures d'enregistrement incluses. D msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "Cet espace de travail a utilisé les heures d'enregistrement incluses. Passez à une offre supérieure pour continuer à utiliser la voix." -#: src/components/chat/AgenticChatPanel.tsx:2195 +#: src/components/chat/AgenticChatPanel.tsx:2182 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "Cet espace de travail a utilisé ses heures d'enregistrement. Passez à une offre supérieure pour continuer à utiliser la voix." @@ -10397,7 +10397,7 @@ msgstr "Trop grande" msgid "Too long" msgstr "Trop long" -#: src/components/chat/AgenticChatPanel.tsx:2130 +#: src/components/chat/AgenticChatPanel.tsx:2117 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10495,7 +10495,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcription en cours..." -#: src/components/chat/AgenticChatPanel.tsx:282 +#: src/components/chat/AgenticChatPanel.tsx:270 msgid "transcript" msgstr "" @@ -10511,7 +10511,7 @@ msgstr "Transcription" msgid "Transcript copied to clipboard" msgstr "Transcription copiée dans le presse-papiers" -#: src/components/chat/AgenticChatPanel.tsx:281 +#: src/components/chat/AgenticChatPanel.tsx:269 msgid "transcript excerpt" msgstr "" @@ -11019,7 +11019,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2277 +#: src/components/chat/AgenticChatPanel.tsx:2264 msgid "Use Shift + Enter to add a new line" msgstr "Utilisez Shift + Entrée pour ajouter une nouvelle ligne" @@ -11426,11 +11426,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "Que doit ECHO analyser ou générer à partir des conversations ?" -#: src/components/chat/AgenticChatPanel.tsx:1846 +#: src/components/chat/AgenticChatPanel.tsx:1833 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1845 +#: src/components/chat/AgenticChatPanel.tsx:1832 msgid "What themes came up?" msgstr "" @@ -11500,7 +11500,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1823 +#: src/components/chat/AgenticChatPanel.tsx:1810 msgid "Where would you like to start?" msgstr "" @@ -11543,11 +11543,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:601 +#: src/components/chat/AgenticChatPanel.tsx:588 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1695 +#: src/components/chat/AgenticChatPanel.tsx:1682 msgid "Working on your answer..." msgstr "" @@ -11811,7 +11811,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "Vous semblez être hors ligne, veuillez vérifier votre connexion internet" -#: src/components/chat/AgenticChatPanel.tsx:214 +#: src/components/chat/AgenticChatPanel.tsx:202 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/it-IT.po b/echo/frontend/src/locales/it-IT.po index 58c2be932..d4724603d 100644 --- a/echo/frontend/src/locales/it-IT.po +++ b/echo/frontend/src/locales/it-IT.po @@ -213,7 +213,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2114 +#: src/components/chat/AgenticChatPanel.tsx:2101 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -478,11 +478,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:279 +#: src/components/chat/AgenticChatPanel.tsx:267 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:278 +#: src/components/chat/AgenticChatPanel.tsx:266 msgid "{name}'s transcript excerpt" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "Advanced (Tips and best practices)" msgid "Advanced Settings" msgstr "Advanced Settings" -#: src/components/chat/AgenticChatPanel.tsx:398 +#: src/components/chat/AgenticChatPanel.tsx:385 msgid "Agent run failed" msgstr "" @@ -1435,7 +1435,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2263 +#: src/components/chat/AgenticChatPanel.tsx:2250 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1529,7 +1529,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1826 +#: src/components/chat/AgenticChatPanel.tsx:1813 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1546,7 +1546,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2244 +#: src/components/chat/AgenticChatPanel.tsx:2231 msgid "Ask about your conversations..." msgstr "" @@ -1989,8 +1989,8 @@ msgstr "" #: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:747 -#: src/components/chat/AgenticChatPanel.tsx:2152 +#: src/components/chat/AgenticChatPanel.tsx:734 +#: src/components/chat/AgenticChatPanel.tsx:2139 msgid "Cancel" msgstr "Cancel" @@ -2023,7 +2023,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:735 +#: src/components/chat/AgenticChatPanel.tsx:722 msgid "Cancel current run" msgstr "" @@ -2189,7 +2189,7 @@ msgstr "Changing language during an active chat may lead to unexpected results. #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1670 +#: src/components/chat/AgenticChatPanel.tsx:1657 msgid "Chat" msgstr "Chat" @@ -3268,7 +3268,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2281 +#: src/components/chat/AgenticChatPanel.tsx:2268 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3456,7 +3456,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:417 +#: src/components/chat/AgenticChatPanel.tsx:404 msgid "Done" msgstr "" @@ -3826,8 +3826,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:422 -#: src/components/chat/AgenticChatPanel.tsx:1772 +#: src/components/chat/AgenticChatPanel.tsx:409 +#: src/components/chat/AgenticChatPanel.tsx:1759 msgid "Error" msgstr "Error" @@ -4179,11 +4179,11 @@ msgstr "Failed to revise outcome. 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/chat/AgenticChatPanel.tsx:1663 +#: src/components/chat/AgenticChatPanel.tsx:1650 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1622 +#: src/components/chat/AgenticChatPanel.tsx:1609 msgid "Failed to submit agentic message" msgstr "" @@ -4344,13 +4344,13 @@ msgstr "" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2156 -#: src/components/chat/AgenticChatPanel.tsx:2157 -#: src/components/chat/AgenticChatPanel.tsx:2291 +#: src/components/chat/AgenticChatPanel.tsx:2143 +#: src/components/chat/AgenticChatPanel.tsx:2144 +#: src/components/chat/AgenticChatPanel.tsx:2278 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:252 +#: src/components/chat/AgenticChatPanel.tsx:240 msgid "Focusing on:" msgstr "" @@ -4717,7 +4717,7 @@ msgstr "" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Hide steps" msgstr "" @@ -4781,11 +4781,11 @@ msgstr "" "* What is the north star goal or key metric\n" "* What does success look like" -#: src/components/chat/AgenticChatPanel.tsx:1940 +#: src/components/chat/AgenticChatPanel.tsx:1927 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1956 +#: src/components/chat/AgenticChatPanel.tsx:1943 msgid "I applied the goal." msgstr "" @@ -4839,7 +4839,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1850 +#: src/components/chat/AgenticChatPanel.tsx:1837 msgid "Improve my setup" msgstr "" @@ -5418,11 +5418,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link to your organisation's privacy policy that will be shown to participants" -#: src/components/chat/AgenticChatPanel.tsx:1840 +#: src/components/chat/AgenticChatPanel.tsx:1827 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1841 +#: src/components/chat/AgenticChatPanel.tsx:1828 msgid "List the conversations in this project." msgstr "" @@ -5481,7 +5481,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1320 +#: src/components/chat/AgenticChatPanel.tsx:1307 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5535,7 +5535,7 @@ msgstr "Loading microphones..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1783 +#: src/components/chat/AgenticChatPanel.tsx:1770 msgid "Loading this chat..." msgstr "" @@ -5791,7 +5791,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2259 +#: src/components/chat/AgenticChatPanel.tsx:2246 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -7727,7 +7727,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:600 +#: src/components/chat/AgenticChatPanel.tsx:587 msgid "Ran {0} steps at once" msgstr "" @@ -7852,7 +7852,7 @@ msgstr "" msgid "participant.button.record" msgstr "Record" -#: src/components/chat/AgenticChatPanel.tsx:2181 +#: src/components/chat/AgenticChatPanel.tsx:2168 msgid "Record a voice message" msgstr "" @@ -7888,7 +7888,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Recording Paused" -#: src/components/chat/AgenticChatPanel.tsx:872 +#: src/components/chat/AgenticChatPanel.tsx:859 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8094,7 +8094,7 @@ msgid "project.sidebar.chat.rename" msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1733 +#: src/components/chat/AgenticChatPanel.tsx:1720 msgid "Rename chat" msgstr "Rename chat" @@ -8412,7 +8412,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1851 +#: src/components/chat/AgenticChatPanel.tsx:1838 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8484,7 +8484,7 @@ msgstr "" msgid "Rows per page" msgstr "Rows per page" -#: src/components/chat/AgenticChatPanel.tsx:427 +#: src/components/chat/AgenticChatPanel.tsx:414 msgid "Running" msgstr "" @@ -8940,7 +8940,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2218 +#: src/components/chat/AgenticChatPanel.tsx:2205 msgid "Send" msgstr "Send" @@ -9204,7 +9204,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Show steps" msgstr "" @@ -9323,7 +9323,7 @@ msgstr "Something went wrong generating your latest report." msgid "Something went wrong generating your report." msgstr "Something went wrong generating your report." -#: src/components/chat/AgenticChatPanel.tsx:218 +#: src/components/chat/AgenticChatPanel.tsx:206 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9491,7 +9491,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2176 +#: src/components/chat/AgenticChatPanel.tsx:2163 msgid "Stop" msgstr "Stop" @@ -9500,7 +9500,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2166 +#: src/components/chat/AgenticChatPanel.tsx:2153 msgid "Stop recording and turn it into text" msgstr "" @@ -10210,7 +10210,7 @@ msgstr "This report is not yet available. " msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" -#: src/components/chat/AgenticChatPanel.tsx:216 +#: src/components/chat/AgenticChatPanel.tsx:204 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10277,7 +10277,7 @@ msgstr "" msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2195 +#: src/components/chat/AgenticChatPanel.tsx:2182 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "" @@ -10396,7 +10396,7 @@ msgstr "Too large" msgid "Too long" msgstr "Too long" -#: src/components/chat/AgenticChatPanel.tsx:2130 +#: src/components/chat/AgenticChatPanel.tsx:2117 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10494,7 +10494,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:282 +#: src/components/chat/AgenticChatPanel.tsx:270 msgid "transcript" msgstr "" @@ -10510,7 +10510,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:281 +#: src/components/chat/AgenticChatPanel.tsx:269 msgid "transcript excerpt" msgstr "" @@ -11021,7 +11021,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2277 +#: src/components/chat/AgenticChatPanel.tsx:2264 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" @@ -11428,11 +11428,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "What should ECHO analyse or generate from the conversations?" -#: src/components/chat/AgenticChatPanel.tsx:1846 +#: src/components/chat/AgenticChatPanel.tsx:1833 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1845 +#: src/components/chat/AgenticChatPanel.tsx:1832 msgid "What themes came up?" msgstr "" @@ -11502,7 +11502,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1823 +#: src/components/chat/AgenticChatPanel.tsx:1810 msgid "Where would you like to start?" msgstr "" @@ -11545,11 +11545,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:601 +#: src/components/chat/AgenticChatPanel.tsx:588 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1695 +#: src/components/chat/AgenticChatPanel.tsx:1682 msgid "Working on your answer..." msgstr "" @@ -11813,7 +11813,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" -#: src/components/chat/AgenticChatPanel.tsx:214 +#: src/components/chat/AgenticChatPanel.tsx:202 msgid "You stopped this run." msgstr "" diff --git a/echo/frontend/src/locales/nl-NL.po b/echo/frontend/src/locales/nl-NL.po index 88fee5f1e..5696bfb46 100644 --- a/echo/frontend/src/locales/nl-NL.po +++ b/echo/frontend/src/locales/nl-NL.po @@ -214,7 +214,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "{0, plural, one {# werkruimte} other {# werkruimtes}}" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2114 +#: src/components/chat/AgenticChatPanel.tsx:2101 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "{0, plural, one {Focus op # gesprek:} other {Focus op # gesprekken:}}" @@ -479,11 +479,11 @@ msgstr "{liveProjectCount, plural, one {Verwijder het # project in deze werkruim msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "{MONTHLY_BILLING_PREMIUM_PCT}% korting" -#: src/components/chat/AgenticChatPanel.tsx:279 +#: src/components/chat/AgenticChatPanel.tsx:267 msgid "{name}'s conversation" msgstr "Gesprek van {name}" -#: src/components/chat/AgenticChatPanel.tsx:278 +#: src/components/chat/AgenticChatPanel.tsx:266 msgid "{name}'s transcript excerpt" msgstr "Transcriptfragment van {name}" @@ -1152,7 +1152,7 @@ msgstr "Geavanceerd (Tips en best practices)" msgid "Advanced Settings" msgstr "Geavanceerde instellingen" -#: src/components/chat/AgenticChatPanel.tsx:398 +#: src/components/chat/AgenticChatPanel.tsx:385 msgid "Agent run failed" msgstr "Agent-run mislukt" @@ -1433,7 +1433,7 @@ msgid "Approaching a limit this month" msgstr "Bijna een limiet bereikt deze maand" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2263 +#: src/components/chat/AgenticChatPanel.tsx:2250 msgid "Approaching limit: {0} / 32,000 characters" msgstr "Bijna aan de limiet: {0} / 32.000 tekens" @@ -1527,7 +1527,7 @@ msgstr "Vragen | dembrane" msgid "Ask a organisation admin to request this upgrade." msgstr "Vraag een organisatie-admin om deze upgrade aan te vragen." -#: src/components/chat/AgenticChatPanel.tsx:1826 +#: src/components/chat/AgenticChatPanel.tsx:1813 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "Stel een vraag over de gesprekken in dit project, of vraag hulp bij het opzetten ervan. Elke wijziging wordt eerst ter beoordeling voorgesteld en er wordt niets opgeslagen totdat je het goedkeurt." @@ -1544,7 +1544,7 @@ msgid "Ask about these" msgstr "Hierover vragen" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2244 +#: src/components/chat/AgenticChatPanel.tsx:2231 msgid "Ask about your conversations..." msgstr "Vraag iets over je gesprekken..." @@ -1987,8 +1987,8 @@ msgstr "kan lezen" #: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:747 -#: src/components/chat/AgenticChatPanel.tsx:2152 +#: src/components/chat/AgenticChatPanel.tsx:734 +#: src/components/chat/AgenticChatPanel.tsx:2139 msgid "Cancel" msgstr "Annuleren" @@ -2021,7 +2021,7 @@ msgstr "Annuleren" msgid "Cancel anytime. You keep access until the period ends." msgstr "Annuleer wanneer je wilt. Je houdt toegang tot het einde van de periode." -#: src/components/chat/AgenticChatPanel.tsx:735 +#: src/components/chat/AgenticChatPanel.tsx:722 msgid "Cancel current run" msgstr "Huidige run stoppen" @@ -2187,7 +2187,7 @@ msgstr "Wijziging van de taal tijdens een actief gesprek kan onverwachte resulta #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1670 +#: src/components/chat/AgenticChatPanel.tsx:1657 msgid "Chat" msgstr "Chat" @@ -3266,7 +3266,7 @@ msgstr "dembrane B.V. {0}, alle rechten voorbehouden." #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2281 +#: src/components/chat/AgenticChatPanel.tsx:2268 msgid "dembrane can make mistakes. Please double-check responses." msgstr "dembrane kan fouten maken. Controleer antwoorden altijd even." @@ -3454,7 +3454,7 @@ msgstr "Wordt niet vanzelf bijgewerkt. Bijgewerkt {updatedAgo}." #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:417 +#: src/components/chat/AgenticChatPanel.tsx:404 msgid "Done" msgstr "Klaar" @@ -3824,8 +3824,8 @@ msgstr "Gegevens ingevuld" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:422 -#: src/components/chat/AgenticChatPanel.tsx:1772 +#: src/components/chat/AgenticChatPanel.tsx:409 +#: src/components/chat/AgenticChatPanel.tsx:1759 msgid "Error" msgstr "Fout" @@ -4177,11 +4177,11 @@ msgstr "Fout bij het herzien van het resultaat. 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/chat/AgenticChatPanel.tsx:1663 +#: src/components/chat/AgenticChatPanel.tsx:1650 msgid "Failed to stop run" msgstr "De run stoppen is mislukt" -#: src/components/chat/AgenticChatPanel.tsx:1622 +#: src/components/chat/AgenticChatPanel.tsx:1609 msgid "Failed to submit agentic message" msgstr "Bericht versturen is mislukt" @@ -4342,13 +4342,13 @@ msgstr "Fixture" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2156 -#: src/components/chat/AgenticChatPanel.tsx:2157 -#: src/components/chat/AgenticChatPanel.tsx:2291 +#: src/components/chat/AgenticChatPanel.tsx:2143 +#: src/components/chat/AgenticChatPanel.tsx:2144 +#: src/components/chat/AgenticChatPanel.tsx:2278 msgid "Focus on conversations" msgstr "Focus op gesprekken" -#: src/components/chat/AgenticChatPanel.tsx:252 +#: src/components/chat/AgenticChatPanel.tsx:240 msgid "Focusing on:" msgstr "Gericht op:" @@ -4715,7 +4715,7 @@ msgstr "Projecten verbergen" msgid "Hide revision data" msgstr "Revisiegegevens verbergen" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Hide steps" msgstr "Stappen verbergen" @@ -4779,11 +4779,11 @@ msgstr "" "* Wat is het doel of belangrijkste maatstaf\n" "* Hoe ziet succes eruit" -#: src/components/chat/AgenticChatPanel.tsx:1940 +#: src/components/chat/AgenticChatPanel.tsx:1927 msgid "I applied the canvas." msgstr "Ik heb het canvas toegepast." -#: src/components/chat/AgenticChatPanel.tsx:1956 +#: src/components/chat/AgenticChatPanel.tsx:1943 msgid "I applied the goal." msgstr "Ik heb het doel toegepast." @@ -4837,7 +4837,7 @@ msgstr "Als je je bij een bestaande organisatie wilt aansluiten, maak dan geen n msgid "Image style" msgstr "Beeldstijl" -#: src/components/chat/AgenticChatPanel.tsx:1850 +#: src/components/chat/AgenticChatPanel.tsx:1837 msgid "Improve my setup" msgstr "Verbeter mijn instellingen" @@ -5416,11 +5416,11 @@ msgstr "Link gekopieerd" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link naar de privacyverklaring van uw organisatie die aan deelnemers wordt getoond" -#: src/components/chat/AgenticChatPanel.tsx:1840 +#: src/components/chat/AgenticChatPanel.tsx:1827 msgid "List my conversations" msgstr "Toon mijn gesprekken" -#: src/components/chat/AgenticChatPanel.tsx:1841 +#: src/components/chat/AgenticChatPanel.tsx:1828 msgid "List the conversations in this project." msgstr "Toon de gesprekken in dit project." @@ -5479,7 +5479,7 @@ msgstr "Live opnames, voortgang van transcriptie en fouten verschijnen hier zodr msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "Live verbinding verbroken. We werken minder vaak bij tot de verbinding terug is." -#: src/components/chat/AgenticChatPanel.tsx:1320 +#: src/components/chat/AgenticChatPanel.tsx:1307 msgid "Live stream interrupted. Falling back to polling." msgstr "Live verbinding onderbroken. We halen updates nu periodiek op." @@ -5533,7 +5533,7 @@ msgstr "Microfoons laden..." msgid "Loading projects..." msgstr "Projecten laden..." -#: src/components/chat/AgenticChatPanel.tsx:1783 +#: src/components/chat/AgenticChatPanel.tsx:1770 msgid "Loading this chat..." msgstr "Deze chat laden..." @@ -5789,7 +5789,7 @@ msgstr "Herinnering verwijderd" msgid "Message from the dembrane team" msgstr "Bericht van het dembrane team" -#: src/components/chat/AgenticChatPanel.tsx:2259 +#: src/components/chat/AgenticChatPanel.tsx:2246 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "Bericht is te lang (maximaal 32.000 tekens). Voeg gesprekken toe of maak je bericht korter." @@ -7725,7 +7725,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "Vragen over hoe dembrane werkt, niet alleen over je data." #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:600 +#: src/components/chat/AgenticChatPanel.tsx:587 msgid "Ran {0} steps at once" msgstr "{0} stappen tegelijk uitgevoerd" @@ -7850,7 +7850,7 @@ msgstr "Opnieuw verbinden" msgid "participant.button.record" msgstr "Opname starten" -#: src/components/chat/AgenticChatPanel.tsx:2181 +#: src/components/chat/AgenticChatPanel.tsx:2168 msgid "Record a voice message" msgstr "Spraakbericht opnemen" @@ -7886,7 +7886,7 @@ msgstr "Opnamepagina" msgid "participant.modal.pause.title" msgstr "Opname gepauzeerd" -#: src/components/chat/AgenticChatPanel.tsx:872 +#: src/components/chat/AgenticChatPanel.tsx:859 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "De opname is gestopt bij de limiet van vijf minuten. Je opname wordt omgezet naar tekst." @@ -8092,7 +8092,7 @@ msgid "project.sidebar.chat.rename" msgstr "Naam wijzigen" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1733 +#: src/components/chat/AgenticChatPanel.tsx:1720 msgid "Rename chat" msgstr "Chat hernoemen" @@ -8410,7 +8410,7 @@ msgstr "Controleer voordat je aanmaakt." msgid "Review files before uploading" msgstr "Bestanden bekijken voordat u uploadt" -#: src/components/chat/AgenticChatPanel.tsx:1851 +#: src/components/chat/AgenticChatPanel.tsx:1838 msgid "Review my project settings and suggest improvements." msgstr "Bekijk mijn projectinstellingen en stel verbeteringen voor." @@ -8482,7 +8482,7 @@ msgstr "Ruwe schatting om de achterstand aan transcripties weg te werken" msgid "Rows per page" msgstr "Rijen per pagina" -#: src/components/chat/AgenticChatPanel.tsx:427 +#: src/components/chat/AgenticChatPanel.tsx:414 msgid "Running" msgstr "Bezig" @@ -8938,7 +8938,7 @@ msgstr "Self-serve" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2218 +#: src/components/chat/AgenticChatPanel.tsx:2205 msgid "Send" msgstr "Verzenden" @@ -9202,7 +9202,7 @@ msgstr "Toon referenties" msgid "Show revision data" msgstr "Revisiegegevens tonen" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Show steps" msgstr "Stappen tonen" @@ -9321,7 +9321,7 @@ msgstr "Er is iets misgegaan bij het genereren van uw laatste rapport." msgid "Something went wrong generating your report." msgstr "Er is iets misgegaan bij het genereren van uw rapport." -#: src/components/chat/AgenticChatPanel.tsx:218 +#: src/components/chat/AgenticChatPanel.tsx:206 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "Er ging iets mis aan mijn kant. Stuur je bericht opnieuw, dan probeer ik het nog een keer." @@ -9489,7 +9489,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "Kom je er nog niet uit? Mail <0>support@dembrane.com." #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2176 +#: src/components/chat/AgenticChatPanel.tsx:2163 msgid "Stop" msgstr "Stop" @@ -9498,7 +9498,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2166 +#: src/components/chat/AgenticChatPanel.tsx:2153 msgid "Stop recording and turn it into text" msgstr "Opname stoppen en omzetten naar tekst" @@ -10208,7 +10208,7 @@ msgstr "Dit rapport is nog niet beschikbaar. " msgid "This report was opened by {0} people" msgstr "Dit rapport werd geopend door {0} mensen" -#: src/components/chat/AgenticChatPanel.tsx:216 +#: src/components/chat/AgenticChatPanel.tsx:204 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "Dit verzoek duurde te lang, dus ik heb het gestopt. Stuur het opnieuw, dan probeer ik het nog een keer." @@ -10275,7 +10275,7 @@ msgstr "Deze werkruimte heeft de inbegrepen opname-uren gebruikt. Vraag een behe msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "Deze werkruimte heeft de inbegrepen opname-uren gebruikt. Upgrade om spraak te blijven gebruiken." -#: src/components/chat/AgenticChatPanel.tsx:2195 +#: src/components/chat/AgenticChatPanel.tsx:2182 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "Deze werkruimte heeft zijn opname-uren gebruikt. Upgrade om spraak te blijven gebruiken." @@ -10394,7 +10394,7 @@ msgstr "Te groot" msgid "Too long" msgstr "Te lang" -#: src/components/chat/AgenticChatPanel.tsx:2130 +#: src/components/chat/AgenticChatPanel.tsx:2117 msgid "Too many to list here. The assistant reads through them in batches." msgstr "Te veel om hier te tonen. De assistent leest ze in delen door." @@ -10492,7 +10492,7 @@ msgstr "Trainingen" msgid "Transcribing..." msgstr "Transcriptie wordt uitgevoerd..." -#: src/components/chat/AgenticChatPanel.tsx:282 +#: src/components/chat/AgenticChatPanel.tsx:270 msgid "transcript" msgstr "transcript" @@ -10508,7 +10508,7 @@ msgstr "Transcriptie" msgid "Transcript copied to clipboard" msgstr "Transcript gekopieerd naar klembord" -#: src/components/chat/AgenticChatPanel.tsx:281 +#: src/components/chat/AgenticChatPanel.tsx:269 msgid "transcript excerpt" msgstr "transcriptfragment" @@ -11017,7 +11017,7 @@ msgstr "Gebruik deze cyclus" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2277 +#: src/components/chat/AgenticChatPanel.tsx:2264 msgid "Use Shift + Enter to add a new line" msgstr "Gebruik Shift + Enter om een nieuwe regel toe te voegen" @@ -11424,11 +11424,11 @@ msgstr "Wat zou hieraan anders moeten zijn?" msgid "What should ECHO analyse or generate from the conversations?" msgstr "Wat moet ECHO analyseren of genereren uit de gesprekken?" -#: src/components/chat/AgenticChatPanel.tsx:1846 +#: src/components/chat/AgenticChatPanel.tsx:1833 msgid "What themes came up across the conversations in this project?" msgstr "Welke thema's kwamen naar voren in de gesprekken in dit project?" -#: src/components/chat/AgenticChatPanel.tsx:1845 +#: src/components/chat/AgenticChatPanel.tsx:1832 msgid "What themes came up?" msgstr "Welke thema's kwamen naar voren?" @@ -11498,7 +11498,7 @@ msgid "Where would you like to go?" msgstr "Waar wil je naartoe?" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1823 +#: src/components/chat/AgenticChatPanel.tsx:1810 msgid "Where would you like to start?" msgstr "Waar wil je beginnen?" @@ -11541,11 +11541,11 @@ msgid "Within my organisation" msgstr "Binnen mijn organisatie" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:601 +#: src/components/chat/AgenticChatPanel.tsx:588 msgid "Worked through {0} steps" msgstr "{0} stappen doorlopen" -#: src/components/chat/AgenticChatPanel.tsx:1695 +#: src/components/chat/AgenticChatPanel.tsx:1682 msgid "Working on your answer..." msgstr "Bezig met je antwoord..." @@ -11809,7 +11809,7 @@ msgstr "Je hebt een uitnodiging van een collega nodig" msgid "You seem to be offline, please check your internet connection" msgstr "Je lijkt offline te zijn, controleer je internetverbinding" -#: src/components/chat/AgenticChatPanel.tsx:214 +#: src/components/chat/AgenticChatPanel.tsx:202 msgid "You stopped this run." msgstr "Je hebt deze run gestopt." diff --git a/echo/frontend/src/locales/uk-UA.po b/echo/frontend/src/locales/uk-UA.po index 02492b0ae..ea526323e 100644 --- a/echo/frontend/src/locales/uk-UA.po +++ b/echo/frontend/src/locales/uk-UA.po @@ -213,7 +213,7 @@ msgid "{0, plural, one {# workspace} other {# workspaces}}" msgstr "" #. placeholder {0}: focusedContextConversations.length -#: src/components/chat/AgenticChatPanel.tsx:2114 +#: src/components/chat/AgenticChatPanel.tsx:2101 msgid "{0, plural, one {Focusing on # conversation:} other {Focusing on # conversations:}}" msgstr "" @@ -478,11 +478,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:279 +#: src/components/chat/AgenticChatPanel.tsx:267 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:278 +#: src/components/chat/AgenticChatPanel.tsx:266 msgid "{name}'s transcript excerpt" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "Advanced (Tips and best practices)" msgid "Advanced Settings" msgstr "Advanced Settings" -#: src/components/chat/AgenticChatPanel.tsx:398 +#: src/components/chat/AgenticChatPanel.tsx:385 msgid "Agent run failed" msgstr "" @@ -1435,7 +1435,7 @@ msgid "Approaching a limit this month" msgstr "" #. placeholder {0}: input.length.toLocaleString() -#: src/components/chat/AgenticChatPanel.tsx:2263 +#: src/components/chat/AgenticChatPanel.tsx:2250 msgid "Approaching limit: {0} / 32,000 characters" msgstr "" @@ -1529,7 +1529,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1826 +#: src/components/chat/AgenticChatPanel.tsx:1813 msgid "Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved." msgstr "" @@ -1546,7 +1546,7 @@ msgid "Ask about these" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:648 -#: src/components/chat/AgenticChatPanel.tsx:2244 +#: src/components/chat/AgenticChatPanel.tsx:2231 msgid "Ask about your conversations..." msgstr "" @@ -1989,8 +1989,8 @@ msgstr "" #: src/components/common/FeedbackPortalModal.tsx:141 #: src/components/common/ConfirmModal.tsx:44 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:722 -#: src/components/chat/AgenticChatPanel.tsx:747 -#: src/components/chat/AgenticChatPanel.tsx:2152 +#: src/components/chat/AgenticChatPanel.tsx:734 +#: src/components/chat/AgenticChatPanel.tsx:2139 msgid "Cancel" msgstr "Cancel" @@ -2023,7 +2023,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:735 +#: src/components/chat/AgenticChatPanel.tsx:722 msgid "Cancel current run" msgstr "" @@ -2189,7 +2189,7 @@ msgstr "Changing language during an active chat may lead to unexpected results. #: src/features/sidebar/hooks/useSearchHits.ts:256 #: src/features/sidebar/hooks/useSearchHits.ts:257 #: src/features/sidebar/hooks/useSearchHits.ts:262 -#: src/components/chat/AgenticChatPanel.tsx:1670 +#: src/components/chat/AgenticChatPanel.tsx:1657 msgid "Chat" msgstr "Chat" @@ -3268,7 +3268,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:982 #: src/routes/project/chat/ProjectChatRoute.tsx:992 -#: src/components/chat/AgenticChatPanel.tsx:2281 +#: src/components/chat/AgenticChatPanel.tsx:2268 msgid "dembrane can make mistakes. Please double-check responses." msgstr "" @@ -3456,7 +3456,7 @@ msgstr "" #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:645 -#: src/components/chat/AgenticChatPanel.tsx:417 +#: src/components/chat/AgenticChatPanel.tsx:404 msgid "Done" msgstr "" @@ -3826,8 +3826,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:269 -#: src/components/chat/AgenticChatPanel.tsx:422 -#: src/components/chat/AgenticChatPanel.tsx:1772 +#: src/components/chat/AgenticChatPanel.tsx:409 +#: src/components/chat/AgenticChatPanel.tsx:1759 msgid "Error" msgstr "Error" @@ -4179,11 +4179,11 @@ msgstr "Failed to revise outcome. 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/chat/AgenticChatPanel.tsx:1663 +#: src/components/chat/AgenticChatPanel.tsx:1650 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1622 +#: src/components/chat/AgenticChatPanel.tsx:1609 msgid "Failed to submit agentic message" msgstr "" @@ -4344,13 +4344,13 @@ msgstr "" msgid "Focus" msgstr "Focus" -#: src/components/chat/AgenticChatPanel.tsx:2156 -#: src/components/chat/AgenticChatPanel.tsx:2157 -#: src/components/chat/AgenticChatPanel.tsx:2291 +#: src/components/chat/AgenticChatPanel.tsx:2143 +#: src/components/chat/AgenticChatPanel.tsx:2144 +#: src/components/chat/AgenticChatPanel.tsx:2278 msgid "Focus on conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:252 +#: src/components/chat/AgenticChatPanel.tsx:240 msgid "Focusing on:" msgstr "" @@ -4717,7 +4717,7 @@ msgstr "" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Hide steps" msgstr "" @@ -4781,11 +4781,11 @@ msgstr "" "* What is the north star goal or key metric\n" "* What does success look like" -#: src/components/chat/AgenticChatPanel.tsx:1940 +#: src/components/chat/AgenticChatPanel.tsx:1927 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1956 +#: src/components/chat/AgenticChatPanel.tsx:1943 msgid "I applied the goal." msgstr "" @@ -4839,7 +4839,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1850 +#: src/components/chat/AgenticChatPanel.tsx:1837 msgid "Improve my setup" msgstr "" @@ -5418,11 +5418,11 @@ msgstr "" msgid "Link to your organisation's privacy policy that will be shown to participants" msgstr "Link to your organisation's privacy policy that will be shown to participants" -#: src/components/chat/AgenticChatPanel.tsx:1840 +#: src/components/chat/AgenticChatPanel.tsx:1827 msgid "List my conversations" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1841 +#: src/components/chat/AgenticChatPanel.tsx:1828 msgid "List the conversations in this project." msgstr "" @@ -5481,7 +5481,7 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1320 +#: src/components/chat/AgenticChatPanel.tsx:1307 msgid "Live stream interrupted. Falling back to polling." msgstr "" @@ -5535,7 +5535,7 @@ msgstr "Loading microphones..." msgid "Loading projects..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1783 +#: src/components/chat/AgenticChatPanel.tsx:1770 msgid "Loading this chat..." msgstr "" @@ -5791,7 +5791,7 @@ msgstr "" msgid "Message from the dembrane team" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2259 +#: src/components/chat/AgenticChatPanel.tsx:2246 msgid "Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message." msgstr "" @@ -7727,7 +7727,7 @@ msgid "Questions about how dembrane works, not only about your data." msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:600 +#: src/components/chat/AgenticChatPanel.tsx:587 msgid "Ran {0} steps at once" msgstr "" @@ -7852,7 +7852,7 @@ msgstr "" msgid "participant.button.record" msgstr "Record" -#: src/components/chat/AgenticChatPanel.tsx:2181 +#: src/components/chat/AgenticChatPanel.tsx:2168 msgid "Record a voice message" msgstr "" @@ -7888,7 +7888,7 @@ msgstr "" msgid "participant.modal.pause.title" msgstr "Recording Paused" -#: src/components/chat/AgenticChatPanel.tsx:872 +#: src/components/chat/AgenticChatPanel.tsx:859 msgid "Recording stopped at the five minute limit. Turning what you recorded into text." msgstr "" @@ -8094,7 +8094,7 @@ msgid "project.sidebar.chat.rename" msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:153 -#: src/components/chat/AgenticChatPanel.tsx:1733 +#: src/components/chat/AgenticChatPanel.tsx:1720 msgid "Rename chat" msgstr "Rename chat" @@ -8412,7 +8412,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1851 +#: src/components/chat/AgenticChatPanel.tsx:1838 msgid "Review my project settings and suggest improvements." msgstr "" @@ -8484,7 +8484,7 @@ msgstr "" msgid "Rows per page" msgstr "Rows per page" -#: src/components/chat/AgenticChatPanel.tsx:427 +#: src/components/chat/AgenticChatPanel.tsx:414 msgid "Running" msgstr "" @@ -8940,7 +8940,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:942 #: src/routes/project/chat/NewChatRoute.tsx:627 -#: src/components/chat/AgenticChatPanel.tsx:2218 +#: src/components/chat/AgenticChatPanel.tsx:2205 msgid "Send" msgstr "Send" @@ -9204,7 +9204,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:630 +#: src/components/chat/AgenticChatPanel.tsx:617 msgid "Show steps" msgstr "" @@ -9323,7 +9323,7 @@ msgstr "Something went wrong generating your latest report." msgid "Something went wrong generating your report." msgstr "Something went wrong generating your report." -#: src/components/chat/AgenticChatPanel.tsx:218 +#: src/components/chat/AgenticChatPanel.tsx:206 msgid "Something went wrong on my side. Send your message again and I'll retry." msgstr "" @@ -9491,7 +9491,7 @@ msgid "Still stuck? Email <0>support@dembrane.com." msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:756 -#: src/components/chat/AgenticChatPanel.tsx:2176 +#: src/components/chat/AgenticChatPanel.tsx:2163 msgid "Stop" msgstr "Stop" @@ -9500,7 +9500,7 @@ msgstr "Stop" msgid "participant.button.stop" msgstr "Stop" -#: src/components/chat/AgenticChatPanel.tsx:2166 +#: src/components/chat/AgenticChatPanel.tsx:2153 msgid "Stop recording and turn it into text" msgstr "" @@ -10210,7 +10210,7 @@ msgstr "This report is not yet available. " msgid "This report was opened by {0} people" msgstr "This report was opened by {0} people" -#: src/components/chat/AgenticChatPanel.tsx:216 +#: src/components/chat/AgenticChatPanel.tsx:204 msgid "This request took too long, so I stopped it. Send it again and I'll retry." msgstr "" @@ -10277,7 +10277,7 @@ msgstr "" msgid "This workspace has used its included recording hours. Upgrade to keep using voice." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:2195 +#: src/components/chat/AgenticChatPanel.tsx:2182 msgid "This workspace has used its recording hours. Upgrade to keep using voice." msgstr "" @@ -10396,7 +10396,7 @@ msgstr "Too large" msgid "Too long" msgstr "Too long" -#: src/components/chat/AgenticChatPanel.tsx:2130 +#: src/components/chat/AgenticChatPanel.tsx:2117 msgid "Too many to list here. The assistant reads through them in batches." msgstr "" @@ -10494,7 +10494,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:282 +#: src/components/chat/AgenticChatPanel.tsx:270 msgid "transcript" msgstr "" @@ -10510,7 +10510,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:281 +#: src/components/chat/AgenticChatPanel.tsx:269 msgid "transcript excerpt" msgstr "" @@ -11021,7 +11021,7 @@ msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:979 #: src/routes/project/chat/ProjectChatRoute.tsx:989 -#: src/components/chat/AgenticChatPanel.tsx:2277 +#: src/components/chat/AgenticChatPanel.tsx:2264 msgid "Use Shift + Enter to add a new line" msgstr "Use Shift + Enter to add a new line" @@ -11428,11 +11428,11 @@ msgstr "" msgid "What should ECHO analyse or generate from the conversations?" msgstr "What should ECHO analyse or generate from the conversations?" -#: src/components/chat/AgenticChatPanel.tsx:1846 +#: src/components/chat/AgenticChatPanel.tsx:1833 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1845 +#: src/components/chat/AgenticChatPanel.tsx:1832 msgid "What themes came up?" msgstr "" @@ -11502,7 +11502,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:563 -#: src/components/chat/AgenticChatPanel.tsx:1823 +#: src/components/chat/AgenticChatPanel.tsx:1810 msgid "Where would you like to start?" msgstr "" @@ -11545,11 +11545,11 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:601 +#: src/components/chat/AgenticChatPanel.tsx:588 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1695 +#: src/components/chat/AgenticChatPanel.tsx:1682 msgid "Working on your answer..." msgstr "" @@ -11813,7 +11813,7 @@ msgstr "" msgid "You seem to be offline, please check your internet connection" msgstr "You seem to be offline, please check your internet connection" -#: src/components/chat/AgenticChatPanel.tsx:214 +#: src/components/chat/AgenticChatPanel.tsx:202 msgid "You stopped this run." msgstr "" From be1b01da044585a193d5daebf1291ec808fec65b Mon Sep 17 00:00:00 2001 From: spashii Date: Mon, 10 Aug 2026 20:32:21 +0200 Subject: [PATCH 3/3] feat(chat): footnote hops flash their target; hide default footnote heading app-wide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three refinements on the footnote citations: - A superscript click now scrolls to the source line and flashes it with the same cyan highlight the transcript page gives a deep-linked chunk, so the hop gives feedback even when the target was already on screen. - The ↩ back-reference links under each source are dropped in agentic chat: they stacked a second, third, Nth arrow icon on every source line, and after an in-place highlight scroll the superscript that brought the reader down is still visible anyway. One icon per source. - Markdown surfaces that do not name a footnote label now hide the renderer's default "Footnotes" heading behind `dembrane-sr-only`, our own visually-hidden class in index.css. Tailwind owns `sr-only` and only generates classes it sees in source, so runtime-injected markup needs a class we define unconditionally. --- .../components/chat/ChatHistoryMessage.tsx | 46 +++++++++++++++---- .../src/components/common/Markdown.tsx | 28 ++++++----- echo/frontend/src/index.css | 16 +++++++ echo/frontend/src/locales/cs-CZ.po | 20 ++++---- echo/frontend/src/locales/de-DE.po | 20 ++++---- echo/frontend/src/locales/en-US.po | 20 ++++---- echo/frontend/src/locales/es-ES.po | 20 ++++---- echo/frontend/src/locales/fr-FR.po | 20 ++++---- echo/frontend/src/locales/it-IT.po | 20 ++++---- echo/frontend/src/locales/nl-NL.po | 20 ++++---- echo/frontend/src/locales/uk-UA.po | 20 ++++---- 11 files changed, 147 insertions(+), 103 deletions(-) diff --git a/echo/frontend/src/components/chat/ChatHistoryMessage.tsx b/echo/frontend/src/components/chat/ChatHistoryMessage.tsx index 0c5d026fa..bb2107b39 100644 --- a/echo/frontend/src/components/chat/ChatHistoryMessage.tsx +++ b/echo/frontend/src/components/chat/ChatHistoryMessage.tsx @@ -76,6 +76,26 @@ const getLinkLabel = (children: React.ReactNode) => { const AGENTIC_LINK_CLASSES = "not-prose inline-flex items-baseline gap-0.5 text-[var(--mantine-color-anchor)] underline underline-offset-2 transition-colors hover:text-[var(--mantine-color-blue-7)]"; +// The same flash the transcript page gives a deep-linked chunk +// (ConversationChunkAudioTranscript), so a footnote hop reads as the one +// highlight language the product has. Class names must match ones already in +// source, or the Tailwind build will not carry them. +const FOOTNOTE_HIGHLIGHT_CLASSES = [ + "!bg-cyan-50", + "ring-2", + "ring-cyan-300", + "rounded-sm", +]; +const FOOTNOTE_HIGHLIGHT_MS = 5000; + +const flashFootnoteTarget = (target: HTMLElement) => { + target.scrollIntoView({ behavior: "smooth", block: "center" }); + target.classList.add(...FOOTNOTE_HIGHLIGHT_CLASSES); + window.setTimeout(() => { + target.classList.remove(...FOOTNOTE_HIGHLIGHT_CLASSES); + }, FOOTNOTE_HIGHLIGHT_MS); +}; + const URL_PATTERN = /https?:\/\/[^\s<>)\]]+/g; function ownPortalStartLink(content: string, projectId?: string): string | null { @@ -216,11 +236,20 @@ export const ChatHistoryMessage = ({ return { a({ children, className, href, ...props }) { - // Footnote hops (superscript -> definition and the ↩ back-ref) stay - // inside this message. Fragment navigation is the wrong tool for - // them in an SPA: it rewrites the URL, stacks history entries, and - // a repeated click on the same fragment does not scroll again. So - // scroll directly and leave the URL alone. + // The ↩ back-references under each footnote add a second (or Nth) + // arrow icon per source line without earning it: the superscript + // that brought the reader down is still on screen after the + // highlight scroll. One icon per source, so these go. + if (className?.includes("data-footnote-backref")) { + return null; + } + + // Footnote hops (superscript -> definition) stay inside this + // message. Fragment navigation is the wrong tool for them in an + // SPA: it rewrites the URL, stacks history entries, a repeated + // click on the same fragment does not scroll again, and a target + // already on screen gives no feedback at all. So scroll and flash + // the target directly and leave the URL alone. if (href?.startsWith("#")) { return ( { event.preventDefault(); - document - .getElementById(decodeURIComponent(href.slice(1))) - ?.scrollIntoView({ behavior: "smooth", block: "center" }); + const target = document.getElementById( + decodeURIComponent(href.slice(1)), + ); + if (target) flashFootnoteTarget(target); }} > {children} diff --git a/echo/frontend/src/components/common/Markdown.tsx b/echo/frontend/src/components/common/Markdown.tsx index b2fff588e..66b4199bc 100644 --- a/echo/frontend/src/components/common/Markdown.tsx +++ b/echo/frontend/src/components/common/Markdown.tsx @@ -20,8 +20,8 @@ export const Markdown = ({ className?: string; components?: Components; /** Visible, localised heading for the GFM footnote list. Without it the - * renderer emits its default English "Footnotes" heading, which our CSS - * never hides (we ship no `sr-only` class). */ + * renderer's default English "Footnotes" heading is kept but visually + * hidden (screen readers still announce it). */ footnoteLabel?: string; /** Prefix for footnote ids and hrefs. Every message rendered on a page * otherwise mints the same `#user-content-fn-1` ids, so the browser @@ -67,21 +67,19 @@ export const Markdown = ({ [customComponents], ); - const remarkRehypeOptions = useMemo(() => { - if (!footnoteLabel && !footnoteIdPrefix) return undefined; - return { + const remarkRehypeOptions = useMemo( + () => ({ ...(footnoteIdPrefix ? { clobberPrefix: footnoteIdPrefix } : {}), + // A caller who names the label wants it visible; without one, the + // renderer's default English "Footnotes" heading stays, hidden with + // our own class. The library's default is `sr-only`, which our + // Tailwind build never generates (no source file uses it). ...(footnoteLabel - ? { - footnoteLabel, - // The default properties hide the label behind `sr-only`, - // which our Tailwind build does not generate. A caller who - // names the label wants it visible. - footnoteLabelProperties: {}, - } - : {}), - }; - }, [footnoteLabel, footnoteIdPrefix]); + ? { footnoteLabel, footnoteLabelProperties: {} } + : { footnoteLabelProperties: { className: "dembrane-sr-only" } }), + }), + [footnoteLabel, footnoteIdPrefix], + ); return (