diff --git a/.github/workflows/prod-deploy-docs.yml b/.github/workflows/prod-deploy-docs.yml new file mode 100644 index 000000000..306fffa41 --- /dev/null +++ b/.github/workflows/prod-deploy-docs.yml @@ -0,0 +1,58 @@ +# Publishes the user documentation site (docs/) to docs.dembrane.com when a +# release tag is cut — the same gitops rhythm as the product: push to main +# deploys docs.echo-next.dembrane.com (dev-deploy-docs.yml), a v*.*.* tag +# deploys production. +# +# Built with the separately-tracked folder2website tool (same build as the +# echo-next docs, different base URL). Deploys the static output to the +# Vercel project that owns docs.dembrane.com via the Build Output API, so +# no framework/build settings on the project can interfere. +# +# Required secrets: VERCEL_TOKEN, VERCEL_ORG_ID, VERCEL_PROJECT_ID_DOCS. +name: prod-deploy-docs + +env: + VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} + VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_DOCS }} + +on: + workflow_dispatch: + push: + tags: [ "v*.*.*" ] + +concurrency: + group: prod-deploy-docs-${{ github.ref }} + cancel-in-progress: true + +jobs: + prod-deploy-docs: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + # folder2website reads git history for page metadata + fetch-depth: 0 + + - name: Setup Bun + uses: oven-sh/setup-bun@v2 + + - name: Build docs site + run: bunx github:spashii/folder2website#main docs --out _docs-site --base-url https://docs.dembrane.com + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + + - name: Install Vercel CLI + run: npm install --global vercel@latest + + - name: Stage prebuilt static output + run: | + mkdir -p .vercel/output/static + cp -R _docs-site/. .vercel/output/static/ + echo '{"version": 3}' > .vercel/output/config.json + + - name: Deploy to Vercel (docs.dembrane.com) + run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} diff --git a/docs/_authoring/FACTS.md b/docs/_authoring/FACTS.md index 49e0d4020..fceb151ad 100644 --- a/docs/_authoring/FACTS.md +++ b/docs/_authoring/FACTS.md @@ -244,9 +244,11 @@ Auth: `/login /register /check-your-email /verify-email /password-reset /request conversations; auto-select vs manual context; sources; templates (built-in + user templates); standard mode + *agentic mode* (tool use, separate agent service). Free-tier chat gate. `ENABLE_AGENTIC_CHAT = byEnv({production:false}, true)` - agentic OFF in production. Where - it's on, `/chats/new` is the *Ask home*: chat list + a question bar that filters chats and - creates one on Enter, a `Templates` insert menu, starter chips, and a - "Prefer the old chat? Start a Specific Details chat" escape hatch. Agentic runs show live + it's on, `/chats/new` is the *Ask home*: chat list + one question bar (headed "Where would + you like to start?") that filters chats and creates one on Enter, a `Templates` insert menu, + and a "Prefer the old chat? Start a Specific Details chat" escape hatch. The old Overview + mode is retired - unreachable in the new experience; Specific Details remains as the + classic fallback. Agentic runs show live progress, a Send↔Stop morph, named citation links ("{name}'s conversation" → `#chunk-` deep links), and documentation citations via a chooser modal ("Open documentation" / "Open chat documentation"). Agent tools (echo/agent, 20): inventory/ diff --git a/docs/building/index.md b/docs/building/index.md index 314405fc2..92691491a 100644 --- a/docs/building/index.md +++ b/docs/building/index.md @@ -6,9 +6,10 @@ audience: all # Building now -These pages describe features that are *being built* - they are not available yet, not even -on [dembrane next](../features/dembrane-next.md). Each one is written as a user story before -the first line of code, and the build isn't done until the story works end to end. +These pages describe features that are *being built* - most are not available yet, not even +on [dembrane next](../features/dembrane-next.md); where an early piece has reached beta, the +page says so. Each one is written as a user story before the first line of code, and the +build isn't done until the story works end to end. Why publish them? Three reasons: @@ -21,8 +22,11 @@ Why publish them? Three reasons: ## In progress -- [The SMART loop](./smart-loop.md) - a dynamic canvas the assistant regenerates through - your session: live frames and answers on a rhythm, versions kept, improved by chat. +- [The SMART loop](./smart-loop.md) - a living canvas the assistant regenerates through + your session: live frames and answers on a rhythm, versions kept, improved by chat. The + canvas is now in *beta* on dembrane next - off by default, and a host opts a project in + with the *Living canvas* switch under *Experimental* in project settings. Not in + production yet. ## Related diff --git a/docs/building/smart-loop.md b/docs/building/smart-loop.md index d26f3cee6..9224e0ebf 100644 --- a/docs/building/smart-loop.md +++ b/docs/building/smart-loop.md @@ -1,15 +1,20 @@ --- title: The SMART loop (building now) -description: A user story for the dynamic canvas - a live, versioned page the assistant regenerates every few minutes during a session, improved by chat. +description: A user story for the living canvas - a live, versioned page the assistant regenerates every few minutes during a session, improved by chat. The canvas is now in beta on dembrane next. audience: all --- # The SMART loop > [!IMPORTANT] -> This feature is *being built*. Nothing on this page is available yet - not even on -> [dembrane next](../features/dembrane-next.md). It's published so you can see what's -> coming and tell us early if the story misses your reality. +> The living canvas at the heart of this story is now in *beta* on +> [dembrane next](../features/dembrane-next.md). It's off by default for every project: a +> host opts a project in with the *Living canvas* switch (marked *Beta*) under +> *Experimental* on the General page of project settings. With the switch off there are no +> canvas pages, no canvas abilities in chat, and no background regeneration. The canvas is +> not in production yet; making it production-ready is a separate, upcoming effort. The +> rest of this story is still being built. It's published so you can see what's coming and +> tell us early if it misses your reality. The idea in one line: your sessions produce living artifacts, and those artifacts feed back into the session while it's still running. The story below is the acceptance test - the @@ -184,4 +189,4 @@ moves. Her next wall starts from everything everyone learned. - [Building now](./index.md) - everything else in progress. - [Chat & Ask](../features/chat-and-ask.md) - the assistant this builds on. - [Reports](../features/reports.md) - the shape artifacts borrow. -- [dembrane next](../features/dembrane-next.md) - where this lands first when it ships. +- [dembrane next](../features/dembrane-next.md) - where the canvas beta is live today. diff --git a/docs/features/account-and-security.md b/docs/features/account-and-security.md index 89a6f1568..4a4a56351 100644 --- a/docs/features/account-and-security.md +++ b/docs/features/account-and-security.md @@ -70,12 +70,12 @@ The wider picture of who owns the data is in ## What the assistant remembers about you -*[dembrane next only](./dembrane-next.md).* If you use [Ask's agentic mode](./chat-and-ask.md), +*[dembrane next only](./dembrane-next.md).* If you use [Ask](./chat-and-ask.md), the assistant can save notes about how you like to work - saved during your chats, read back at the start of the next one. *Settings → Assistant* shows every note it keeps about you; only you see these, and *Remove* makes it forget one for every future chat. The assistant writes the notes; you can't edit them, only remove them. (Project and workspace notes have their own -surfaces - see [chat & Ask](./chat-and-ask.md#agentic-mode-in-more-detail).) +surfaces - see [chat & Ask](./chat-and-ask.md#more-than-analysis).) ## Your access at a glance diff --git a/docs/features/chat-and-ask.md b/docs/features/chat-and-ask.md index 375211a4d..77372561e 100644 --- a/docs/features/chat-and-ask.md +++ b/docs/features/chat-and-ask.md @@ -1,6 +1,6 @@ --- title: Chat & Ask -description: Ask questions across your conversations and get answers with cited sources, using built-in or your own language model. +description: Ask questions across your conversations and get answers with cited sources - one assistant that searches, reads, and shows its work. audience: host --- @@ -18,37 +18,40 @@ Treat it as a deep-dive, not a one-shot search: It's best for comparing viewpoints, finding quotes, and testing a hunch. -## Modes +## One question bar -Click *Ask question* in a project, then choose a *mode* - it sets how dembrane reads your -conversations: +> [!NOTE] +> The new Ask experience is live on *[dembrane next](./dembrane-next.md)* and reaches +> production with the next release. -- *Overview* (beta) - reads across all conversations in the project for themes and patterns. - Best for open-ended exploration; it paraphrases rather than quoting. -- *Specific Details* - you pick the conversations (or select all), optionally filtering by - [tag](./conversations-and-transcripts.md#tags), and answers come back with exact quotes and - citations. Best when you want precision: one session, one cohort, exact wording. If you're - already viewing one conversation when you start, it's selected for you. -- *Agentic* (*[dembrane next only](./dembrane-next.md)*) - an assistant that works in steps: - it searches conversations, reads transcripts, and chains what it finds to answer harder - questions. A preview feature, not in production yet - see below for what it adds. +Click *Ask question* in a project and Ask opens as a home for all your chats, with one +input: *Where would you like to start?* Press Enter and your question becomes a new chat; +typing in the same bar also filters your earlier chats, so it finds an old thread as easily +as it starts a new one. A *Templates* menu inserts a saved prompt. -Specific Details is the usual move once a project gets large and you want precision over breadth. +The assistant works in steps: it searches conversations, reads +[transcripts](./conversations-and-transcripts.md), and chains what it finds to answer harder +questions (*"find every conversation where someone disagreed with the proposal and tell me +why"*). While it works you see its progress step by step, and a *Stop* control replaces +*Send* so you can halt a run that's going the wrong way. Answers cite their sources by name - +*"Maria's conversation"*, *"Maria's transcript excerpt"* - and each link jumps to the exact +place in the transcript. -## Agentic mode, in more detail +## The classic chat: Specific Details -*[dembrane next only](./dembrane-next.md).* On dembrane next, *Ask* opens as a home for all -your chats: your chat list with a question bar on top. Typing filters your earlier chats; -pressing Enter asks the question as a new chat. A *Templates* menu inserts a saved prompt, and -if you'd rather pick conversations yourself there's a one-click way to start a classic -*Specific Details* chat instead. +Prefer to pick the conversations yourself? One click on *Prefer the old chat? Start a +Specific Details chat* starts a classic chat: you choose the conversations (or select all), +optionally filtering by [tag](./conversations-and-transcripts.md#tags), and answers come +back in one pass with exact quotes and citations. Best when every answer should come from +the same fixed set: one session, one cohort, exact wording. If you're already viewing one +conversation when you start, it's selected for you. -While the assistant works you see its progress step by step, and a *Stop* control replaces -*Send* so you can halt a run that's going the wrong way. Answers cite their sources by name - -*"Maria's conversation"*, *"Maria's transcript excerpt"* - and each link jumps to the exact -place in the [transcript](./conversations-and-transcripts.md). +The old *Overview* mode has been retired: its job - themes and patterns across all +conversations - is covered by simply asking the assistant. + +## More than analysis -Beyond answering questions, it can: +Beyond answering questions, the assistant can: - *Check what's live* - ask *"is anyone recording right now?"* and it reads the same live status as the [monitor](./recording.md#watch-it-live-the-monitor). @@ -126,5 +129,6 @@ Most teams use all three: explore with Ask, see the landscape in the library, pu - [Tiers & billing](./tiers-and-billing.md) - Free limits, Innovator BYO, Changemaker+ built-in analysis. - [MCP & bring-your-own-LLM](./mcp-and-bring-your-own-llm.md) - connect your own model on Innovator (coming soon). -- [dembrane next](./dembrane-next.md) - preview features like agentic mode, not in production yet. +- [dembrane next](./dembrane-next.md) - preview features like the new Ask experience, not in + production yet. - For a host's walkthrough, see [chat & Ask for hosts](../users/host/chat-and-ask.md). diff --git a/docs/features/dembrane-next.md b/docs/features/dembrane-next.md index fb3e3b7d6..31908ca18 100644 --- a/docs/features/dembrane-next.md +++ b/docs/features/dembrane-next.md @@ -23,9 +23,10 @@ now, so you always know whether something you read about is actually available t | Feature | What it is | Where | |---|---|---| -| *Agentic mode* (in Ask) | An assistant that works in steps - searching, reading transcripts, checking live status, answering from the docs, and proposing settings changes for your review. Ask opens as a home for your chats, with named citations and a Stop control. | [Chat & Ask → Agentic mode](./chat-and-ask.md#agentic-mode-in-more-detail) | +| *The new Ask experience* | Ask opens as a home for your chats with one question bar, and the assistant works in steps - searching, reading transcripts, checking live status, answering from the docs, and proposing settings changes for your review - with named citations and a Stop control. The classic Specific Details chat stays one click away. | [Chat & Ask](./chat-and-ask.md#one-question-bar) | | *Assistant memory & context* | The assistant saves notes (you view and remove them in user, project, and workspace settings) and takes standing guidance from a workspace-wide *assistant context*. | [Account & security](./account-and-security.md#what-the-assistant-remembers-about-you), [managing your workspace](../users/host/managing-your-workspace.md#give-the-assistant-standing-context) | | *The Monitor* | A live view of a session: the participant flow from QR scan to recording, live recordings with audio warnings, and transcription progress. | [Recording → Watch it live](./recording.md#watch-it-live-the-monitor) | +| *The living canvas* (beta) | A live page the assistant builds and regenerates during a session. Off by default for every project: a host opts a project in with the *Living canvas* switch under *Experimental* in project settings. | [The SMART loop](../building/smart-loop.md) | If the table is short, that's a good sign: most of dembrane is the same on next and production. Only genuinely in-progress features live here. diff --git a/docs/users/host/account-and-settings.md b/docs/users/host/account-and-settings.md index c95da6a75..b045445b3 100644 --- a/docs/users/host/account-and-settings.md +++ b/docs/users/host/account-and-settings.md @@ -54,7 +54,7 @@ save repeating yourself and keep projects consistent for compliance. See ## Assistant *[dembrane next only](../../features/dembrane-next.md).* If you use -[Ask's agentic mode](./chat-and-ask.md#agentic-mode), the assistant can save notes about how +[Ask](./chat-and-ask.md#more-than-analysis), the assistant can save notes about how you like to work. The *Assistant* section shows everything it remembers about you - only you see these notes - and *Remove* makes it forget one for good. It writes the notes during your chats; you can't edit them here, only remove them. diff --git a/docs/users/host/chat-and-ask.md b/docs/users/host/chat-and-ask.md index d550ae039..8b742ed23 100644 --- a/docs/users/host/chat-and-ask.md +++ b/docs/users/host/chat-and-ask.md @@ -1,6 +1,6 @@ --- title: Chat & Ask - for hosts -description: As a host, ask questions of your conversations and get cited answers - choosing a mode (Overview or Specific Details), using templates, and what the preview agentic mode adds. +description: As a host, ask questions of your conversations and get cited answers - one assistant that searches and shows its work, with the classic Specific Details chat one click away. audience: host --- @@ -27,24 +27,39 @@ Each chat is a thread - read the answer, then follow up: *"say more about the se *"who said that?"*, *"now just the under-30s"*. Old chats stay in your history. This is the right tool for comparing viewpoints, finding quotes, or testing a hunch. -## Choose a mode +## One place to ask -When you start an Ask you pick a *mode*, and the mode decides how dembrane reads your -conversations. - -- *Overview* (beta) - reads across all the conversations in your project for themes and - patterns. Fast, and the right default for "what are the broad themes". It paraphrases, so it - isn't where you go for an exact quote. -- *Specific Details* - you choose the conversations (one, a few, or all of them) and dembrane - finds exact quotes with citations from the full - [transcripts](../../features/conversations-and-transcripts.md). Reach for this when wording - matters, or when every answer should come from the same set (say, while drafting a report). - If you're already viewing one conversation when you start, it's selected for you. +> [!NOTE] +> The new Ask experience is live on *[dembrane next](../../features/dembrane-next.md)* and +> reaches production with the next release. + +Ask opens as a home for your chats, with one input: *Where would you like to start?* Type +your question and press Enter, and the assistant gets to work in steps - searching your +conversations, reading [transcripts](../../features/conversations-and-transcripts.md), and +chaining what it finds to answer harder questions (*"find every conversation where someone +disagreed with the proposal and tell me why"*). Typing in the same bar also filters your +earlier chats, so it's how you find last week's thread too. A *Templates* menu inserts a +saved prompt. + +You watch the assistant's progress as it works, and *Stop* replaces *Send* so you can halt a +run mid-way. Answers cite sources by name - *"Maria's conversation"* - and each link jumps to +the exact spot in the transcript. + +## The classic chat: Specific Details + +Prefer to pick the conversations yourself? One click on *Prefer the old chat? Start a +Specific Details chat* starts a classic chat: you choose the conversations (one, a few, or +all of them) and dembrane answers in one pass with exact quotes and citations from the full +transcripts. Reach for this when every answer should come from the same fixed set - say, +while drafting a report. If you're already viewing one conversation when you start, it's +selected for you. > [!TIP] -> Map the territory in *Overview*, then switch to *Specific Details* (and narrow to the right -> conversations) once you know which thread to pull. For a verbatim quote, always use *Specific -> Details* - Overview paraphrases. +> Map the territory by asking the assistant first, then start a *Specific Details* chat +> narrowed to the right conversations once you know which thread to pull. + +The old *Overview* mode has been retired: its job - themes and patterns across all your +conversations - is now just a question you ask the assistant. ## Check the sources @@ -70,26 +85,9 @@ starting point, not a cage. so honest, specific context sharpens every answer. - Check the sources before you act on an answer. -## Agentic mode - -> [!NOTE] -> Agentic mode is *[dembrane next only](../../features/dembrane-next.md)* - it's a preview -> feature, not in production yet. On production, Ask offers *Overview* and *Specific Details*. - -On dembrane next, *Ask* opens as a home for your chats. Type in the bar to filter earlier -chats, or press Enter to ask your question as a new chat. Not sure where to start? Three -starter chips get you going: *List my conversations*, *What themes came up?*, and *Improve my -setup*. A *Templates* menu inserts a saved prompt, and one click starts a classic *Specific -Details* chat instead if you'd rather pick the conversations yourself. - -Where *Overview* and *Specific Details* answer in one pass from the conversations you chose, -agentic mode works in steps - searching, reading transcripts, and chaining what it finds to -answer a harder question (*"find every conversation where someone disagreed with the proposal -and tell me why"*). You watch its progress as it works, and *Stop* replaces *Send* so you can -halt a run mid-way. Answers cite sources by name - *"Maria's conversation"* - and each link -jumps to the exact spot in the transcript. +## More than analysis -It's also more than analysis: +The assistant does more than answer questions about your data: - Ask *"is anyone recording right now?"* and it checks the same live status as the [Monitor page](./collecting-conversations.md#watch-the-room-the-monitor-page). @@ -128,5 +126,5 @@ If you hit a wall, that's a tier limit, not a bug. See - [Tiers, billing & usage](./tiers-billing-and-usage.md) - what each plan unlocks. - [MCP & bring-your-own-LLM](../../features/mcp-and-bring-your-own-llm.md) - connect your own model on Innovator (*coming soon*). -- [dembrane next](../../features/dembrane-next.md) - preview features (like agentic mode) that - aren't in production yet. +- [dembrane next](../../features/dembrane-next.md) - preview features (like the new Ask + experience) that aren't in production yet. diff --git a/docs/users/host/managing-your-workspace.md b/docs/users/host/managing-your-workspace.md index f481ea8d3..a8905a570 100644 --- a/docs/users/host/managing-your-workspace.md +++ b/docs/users/host/managing-your-workspace.md @@ -72,7 +72,7 @@ for outside clients. For an ordinary team workspace, leave it internal. ## Give the assistant standing context *[dembrane next only](../../features/dembrane-next.md).* If your team uses -[Ask's agentic mode](./chat-and-ask.md#agentic-mode), the workspace *General* settings carry +[Ask](./chat-and-ask.md#more-than-analysis), the workspace *General* settings carry two things for it: - *Assistant context* - guidance you write once that reaches every project chat in the diff --git a/echo-user-docs/pages/en-US/echo/first-aid.mdx b/echo-user-docs/pages/en-US/echo/first-aid.mdx index fdd5de526..82d6d4da1 100644 --- a/echo-user-docs/pages/en-US/echo/first-aid.mdx +++ b/echo-user-docs/pages/en-US/echo/first-aid.mdx @@ -38,6 +38,16 @@ Found what you were looking for? Great 👏
Didn't find what you were looking for?
     Send us your question. This can be done via this [form](https://tally.so/r/woz64x). Or via the 'Report an issue' button in the dashboard. +## Asking the assistant for help + +If you're using the chat assistant and something isn't working — or you have a question it can't answer — you can simply tell the assistant. When it can't solve your problem itself, it will offer to log a support request with the Dembrane team, straight from the conversation. + +**What happens with your request?** Every request goes directly to our engineering team. They review it, investigate with the technical context of your project at hand, and pick it up from there. If we have an answer or need more information, we'll reach out through your usual Dembrane contact. + +**What do we share with the team?** Your message to the assistant, where in the app you were, and a reference to your project — so we can look in the right place. Your conversation recordings and transcripts are **not** part of a support request. + +The 'Report an issue' button in the dashboard (under the gear icon) always remains the direct route, and works even when the assistant isn't available. + ## Help Questions ### Help, my transcription contains strange repetitions diff --git a/echo-user-docs/pages/nl-NL/echo/first-aid.mdx b/echo-user-docs/pages/nl-NL/echo/first-aid.mdx index 7d5f5a490..471d9626e 100644 --- a/echo-user-docs/pages/nl-NL/echo/first-aid.mdx +++ b/echo-user-docs/pages/nl-NL/echo/first-aid.mdx @@ -37,6 +37,16 @@ Heb je gevonden wat je zocht? Super 👏
Niet gevonden wat je zocht?
     Stuur ons jouw hulpvraag. Dit kan via dit [formulier](https://tally.so/r/woz64x). Of via de knop 'Meld een Probleem' in het dashboard. +## De assistent om hulp vragen + +Gebruik je de chat-assistent en werkt er iets niet — of heb je een vraag die de assistent niet kan beantwoorden? Zeg het gewoon tegen de assistent. Als die je probleem zelf niet kan oplossen, biedt de assistent aan om direct vanuit het gesprek een supportverzoek bij het Dembrane-team te loggen. + +**Wat gebeurt er met je verzoek?** Elk verzoek gaat rechtstreeks naar ons engineering-team. Zij bekijken het, onderzoeken het met de technische context van jouw project bij de hand, en pakken het van daaruit op. Hebben we een antwoord of meer informatie nodig, dan nemen we contact op via je vaste Dembrane-contactpersoon. + +**Wat delen we met het team?** Je bericht aan de assistent, waar in de app je was, en een verwijzing naar je project — zodat we op de juiste plek kunnen kijken. Je gespreksopnames en transcripties maken **geen** deel uit van een supportverzoek. + +De knop 'Meld een Probleem' in het dashboard (onder het tandwieltje) blijft altijd de directe route, en werkt ook als de assistent niet beschikbaar is. + ## Hulpvragen ### Help in mijn transcriptie komen vreemde herhalingen voor diff --git a/echo/agent/README.md b/echo/agent/README.md index ba865d242..ab9b8cec7 100644 --- a/echo/agent/README.md +++ b/echo/agent/README.md @@ -37,8 +37,8 @@ Tools defined in `agent.py` fall into three buckets: - **UI tools** render a card in the chat timeline. The `UI_TOOLS` frozenset in `agent.py` is the source of truth: `navigateTo`, `proposeCanvas`, - `proposeGoal`, `proposeProjectUpdate`, `noteInsight`, `editInsight`, - `retractInsight`, `sendProgressUpdate`. Each of these also carries a "renders a + `proposeGoal`, `proposeProjectUpdate`, `proposeTagsUpdate`, `noteInsight`, + `editInsight`, `retractInsight`, `sendProgressUpdate`. Each of these also carries a "renders a card in the chat UI" docstring line. `editInsight` and `retractInsight` re-render the insight card by id: an amended note gains an "updated" chip, a retracted one mutes with a "retracted" chip and the reason. @@ -49,7 +49,7 @@ Tools defined in `agent.py` fall into three buckets: `getPortalLink`, `listDocs`, `readDoc`, `grepDocs`, `readSkill`, `listProjectChats`, `readChat`, `getLiveConversationStatus`, `readMemory`, `readGoal`, `listMethodologies`, `listCanvases`, `get_project_scope`. -- **Write tools** change durable state: `editProjectTags`, `editCanvas`, +- **Write tools** change durable state: `editCanvas`, `addToCanvas`, `removeFromCanvas`, `pauseCanvasLoop`, `resumeCanvasLoop`, `stopCanvasLoop`, `remember`, `amendMemory`, `forgetMemory`, `reachOutToDembraneSupport`, `noteInsight`, `editInsight`, `retractInsight` diff --git a/echo/agent/agent.py b/echo/agent/agent.py index 2807e1db9..e9c5f20bd 100644 --- a/echo/agent/agent.py +++ b/echo/agent/agent.py @@ -48,7 +48,7 @@ # listDocs, readDoc, grepDocs, readSkill, listProjectChats, readChat, # getLiveConversationStatus, readMemory, readGoal, listMethodologies, # listCanvases, get_project_scope). -# - Write tools change durable state (editProjectTags, editCanvas, addToCanvas, +# - Write tools change durable state (editCanvas, addToCanvas, # removeFromCanvas, pauseCanvasLoop, resumeCanvasLoop, stopCanvasLoop, # remember, amendMemory, forgetMemory, reachOutToDembraneSupport, noteInsight, # editInsight, retractInsight). noteInsight, editInsight, and retractInsight @@ -63,6 +63,7 @@ "proposeCanvas", "proposeGoal", "proposeProjectUpdate", + "proposeTagsUpdate", "noteInsight", "editInsight", "retractInsight", @@ -70,6 +71,22 @@ } ) +# Unregistered (with their prompt section stripped) when the chat's project has +# canvas off (the per-project beta toggle, project.is_canvas_enabled). +CANVAS_TOOL_NAMES = frozenset( + { + "proposeCanvas", + "listCanvases", + "readCanvasHistory", + "editCanvas", + "addToCanvas", + "removeFromCanvas", + "pauseCanvasLoop", + "resumeCanvasLoop", + "stopCanvasLoop", + } +) + # Tools were renamed in wave 32 for host-visible clarity. Persisted run # histories still carry the OLD names, and Vertex 400s if a replayed tool call # or tool result names a function that is no longer registered. This map @@ -104,7 +121,7 @@ def _rename_tool_name(name: str) -> str: # Note: the citation tag format below ([conversation_id:;chunk_id:]) is # parsed by the frontend (AgenticChatPanel.tsx). Do not change it without # updating that regex. -SYSTEM_PROMPT = """You are the dembrane assistant. You help hosts explore and understand the +SYSTEM_PROMPT_HEAD = """You are the dembrane assistant. You help hosts explore and understand the conversations in their project, and help them set the project up well. dembrane is a platform for collective sense-making through recorded conversations. @@ -296,9 +313,11 @@ def _rename_tool_name(name: str) -> str: The setting can draft short titles and attach existing project tags after summarization, but tags remain draft organization for the host to review. - Tags are the host-visible portal vocabulary. When the host asks to add or - remove tags, read getProjectTags first, then use editProjectTags(add, remove) - and confirm in one sentence what changed. Only remove a tag the host names - explicitly; never clear tags participants may already be using on their own. + remove tags, read getProjectTags first, then use proposeTagsUpdate(add, + remove, summary). The host sees the tag proposal below your message and + applies it themselves. Say "I've suggested tag changes", never "I've updated + your tags". Only propose removing a tag the host names explicitly; never + clear tags participants may already be using on their own. - Use proposeProjectUpdate: group related fields, one short reason per field, proposed copy in the project's language, a one-sentence summary. - The host sees a diff and applies or rejects it themselves. You never apply @@ -312,8 +331,11 @@ def _rename_tool_name(name: str) -> str: instruction to run, in the project's language. Mention that verification has to be enabled for it to run, and offer a proposeProjectUpdate to switch is_verify_enabled on if getProjectSettings shows it off. +""" -## Canvases +# Appended to the system prompt only when the chat's project has canvas enabled +# (the per-project beta toggle, project.is_canvas_enabled). +CANVAS_PROMPT_SECTION = """## Canvases A canvas is a living page in the project Library. It regenerates on a loop until its expiry. Propose one when the host asks for a recurring or live artifact, such as a wall, pulse, dashboard, or page that keeps itself fresh. Always say the @@ -386,8 +408,9 @@ def _rename_tool_name(name: str) -> str: can already do; never ask more than one question; never ask when there is no fork, silence is correct then. Ground any question in the injected run details only. Never invent canvas activity. +""" -## Project setup +SYSTEM_PROMPT_TAIL = """## Project setup When the first message signals setup, or when readGoal shows this project has no goal, help with one lightweight question at a time. Read interviewing.md first and use that shape: no "interview" wording, no announced question count, @@ -458,6 +481,32 @@ def _rename_tool_name(name: str) -> str: are applied by the host from goal proposals. """ +# Reconstructed so canvas-enabled chats see the exact prompt as before. +SYSTEM_PROMPT = SYSTEM_PROMPT_HEAD + "\n" + CANVAS_PROMPT_SECTION + "\n" + SYSTEM_PROMPT_TAIL + +# Stripped alongside the canvas section when canvas is off for the project. +CANVAS_INSIGHT_EXAMPLE = """- If the host says a canvas is hard to read and asks why you cannot change the + styling yourself, use kind capability_gap with content "The host needs generated + canvas styling to be easier to adjust from chat." and suggested_capability + "A canvas styling control or direct canvas-style proposal that can adjust + readability, contrast, and color." +""" + +CANVAS_LIBRARY_LINE = "- Library: conversations, canvases, reports, and analysis materials." +NO_CANVAS_LIBRARY_LINE = "- Library: conversations, reports, and analysis materials." + + +def system_prompt_for(canvas_enabled: bool) -> str: + """The system prompt, with all canvas guidance stripped when the project's + canvas beta toggle is off so the model never learns canvas exists.""" + if canvas_enabled: + return SYSTEM_PROMPT + prompt = SYSTEM_PROMPT_HEAD + "\n" + SYSTEM_PROMPT_TAIL + if CANVAS_INSIGHT_EXAMPLE not in prompt or CANVAS_LIBRARY_LINE not in prompt: + raise RuntimeError("Canvas prompt markers drifted; update system_prompt_for()") + prompt = prompt.replace(CANVAS_INSIGHT_EXAMPLE, "") + return prompt.replace(CANVAS_LIBRARY_LINE, NO_CANVAS_LIBRARY_LINE) + def _memory_sort_key(memory: dict[str, Any]) -> str: return str(memory.get("updated_at") or "") @@ -755,6 +804,7 @@ def create_agent_graph( chat_id: str = "", app_user_id: str = "", message_id: str = "", + canvas_enabled: bool = True, ): if not bearer_token: raise ValueError("bearer_token is required") @@ -1269,31 +1319,70 @@ async def getProjectTags() -> dict[str, Any]: } @tool - async def editProjectTags( + async def proposeTagsUpdate( add: list[str] | None = None, remove: list[str] | None = None, + summary: str = "", ) -> dict[str, Any]: - """Edit the project's host-visible tag vocabulary and return the updated - list. `add` creates tags that do not already exist; `remove` deletes - tags by exact text (case-insensitive). Read getProjectTags first, then - confirm in one sentence what changed. Tags are the portal vocabulary - hosts and participants see, so only remove a tag when the host asks for - that tag by name.""" - add_list = [t.strip() for t in (add or []) if isinstance(t, str) and t.strip()] - remove_list = [t.strip() for t in (remove or []) if isinstance(t, str) and t.strip()] + """Propose tag vocabulary changes for the host to approve. Renders a + card in the chat UI. + + `add` lists new tags to create; `remove` lists existing tags to delete + by exact text (case-insensitive). `summary` is one short sentence on + why. Read getProjectTags first. Tags are the portal vocabulary hosts + and participants see, so only propose removing a tag the host names + explicitly. The host sees the proposal in the chat and applies or + dismisses it; this tool never changes anything itself. + """ + def _normalize(entries: list[str] | None) -> list[str]: + normalized: list[str] = [] + seen: set[str] = set() + for entry in entries or []: + if not isinstance(entry, str): + continue + text = entry.strip() + if not text or text.lower() in seen: + continue + seen.add(text.lower()) + normalized.append(text) + return normalized + + add_list = _normalize(add) + remove_list = _normalize(remove) if not add_list and not remove_list: raise ValueError("Provide at least one tag to add or remove.") client = _create_echo_client() try: - result = await client.edit_project_tags( - project_id, - add=add_list, - remove=remove_list, - ) + current = await client.list_project_tags(project_id) finally: await client.close() - return result + + current_texts = [ + str(tag.get("text", "")).strip() + for tag in current + if isinstance(tag, dict) and str(tag.get("text", "")).strip() + ] + current_lookup = {text.lower() for text in current_texts} + + accepted_removals = [t for t in remove_list if t.lower() in current_lookup] + rejected_removals = [t for t in remove_list if t.lower() not in current_lookup] + if not add_list and not accepted_removals: + raise ValueError( + "None of the tags to remove exist in this project. " + f"Current tags: {sorted(current_texts)}" + ) + + return { + "kind": "tags_update_suggestion", + "project_id": project_id, + "summary": summary.strip(), + "add": add_list, + "remove": accepted_removals, + "current_tags": current_texts, + "rejected_removals": rejected_removals, + "visible_to_user": True, + } @tool async def getPortalLink() -> dict[str, Any]: @@ -2109,10 +2198,10 @@ async def forgetMemory(memory_id: str, reason: str) -> dict[str, Any]: readSkill, getProjectSettings, getProjectTags, - editProjectTags, getPortalLink, navigateTo, proposeProjectUpdate, + proposeTagsUpdate, proposeCustomVerificationTopic, proposeCanvas, sendProgressUpdate, @@ -2139,7 +2228,11 @@ async def forgetMemory(memory_id: str, reason: str) -> dict[str, Any]: amendMemory, forgetMemory, ] - system_prompt = SYSTEM_PROMPT + knowledge.prompt_section(docs_base_url=docs_base_url) + if not canvas_enabled: + tools = [tool for tool in tools if tool.name not in CANVAS_TOOL_NAMES] + system_prompt = system_prompt_for(canvas_enabled) + knowledge.prompt_section( + docs_base_url=docs_base_url + ) configured_llm = llm or _build_llm() llm_with_tools = configured_llm.bind_tools(tools) tool_names = {tool.name for tool in tools} @@ -2170,7 +2263,7 @@ async def _load_ambient_memory_section() -> str: return ambient_memory_section async def _load_canvas_activity_section() -> str: - if not chat_id: + if not canvas_enabled or not chat_id: return "" client = _create_echo_client() diff --git a/echo/agent/main.py b/echo/agent/main.py index e3331ab28..645054b4a 100644 --- a/echo/agent/main.py +++ b/echo/agent/main.py @@ -64,6 +64,9 @@ async def copilotkit_endpoint(request: Request, project_id: str, path: Optional[ chat_id = request.headers.get("x-dembrane-chat-id", "") app_user_id = request.headers.get("x-dembrane-app-user-id", "") message_id = request.headers.get("x-dembrane-message-id", "") + # The server resolves the project's canvas beta toggle and forwards the + # verdict; absent header means canvas stays off for this chat. + canvas_enabled = request.headers.get("x-dembrane-canvas-enabled", "").strip() == "1" agent = LangGraphAgent( name="default", @@ -75,6 +78,7 @@ async def copilotkit_endpoint(request: Request, project_id: str, path: Optional[ chat_id=chat_id, app_user_id=app_user_id, message_id=message_id, + canvas_enabled=canvas_enabled, ), ) # CopilotKit currently rejects LangGraphAgent only for literal list inputs. diff --git a/echo/agent/tests/test_agent_graph.py b/echo/agent/tests/test_agent_graph.py index bfe61c678..c50bc9527 100644 --- a/echo/agent/tests/test_agent_graph.py +++ b/echo/agent/tests/test_agent_graph.py @@ -256,6 +256,22 @@ def test_create_agent_graph_binds_edit_canvas_tool(): assert "removeFromCanvas" in tool_map +def test_create_agent_graph_canvas_disabled_strips_tools_and_prompt(): + llm = SequenceLLM(responses=[AIMessage(content="done")]) + create_agent_graph( + project_id="project-1", + bearer_token="token-1", + llm=llm, + canvas_enabled=False, + ) + tool_names = {tool.name for tool in llm.bound_tools} + + assert not (agent.CANVAS_TOOL_NAMES & tool_names) + prompt = agent.system_prompt_for(False) + assert "canvas" not in prompt.lower() + assert agent.system_prompt_for(True) == SYSTEM_PROMPT + + @pytest.mark.asyncio async def test_create_agent_graph_nudge_flow_can_continue_via_progress_tool_call(): llm = SequenceLLM( diff --git a/echo/agent/tests/test_agent_tools.py b/echo/agent/tests/test_agent_tools.py index a1aa219a2..6d23fe14a 100644 --- a/echo/agent/tests/test_agent_tools.py +++ b/echo/agent/tests/test_agent_tools.py @@ -1,7 +1,7 @@ import pytest from langchain_core.messages import AIMessage -from agent import SYSTEM_PROMPT, create_agent_graph +from agent import SYSTEM_PROMPT, UI_TOOLS, create_agent_graph class _CaptureLLM: @@ -1765,12 +1765,12 @@ def test_edit_and_retract_by_id_prompt_rules_present(): assert "forgetmemory" in prompt -@pytest.mark.asyncio -async def test_edit_project_tags_adds_and_removes_then_returns_updated_list(): +def _propose_tags_tools(project_tags_payload: list[dict] | None = None): llm = _CaptureLLM() factory = _FakeEchoClientFactory( search_payload={"conversations": []}, transcripts={}, + project_tags_payload=project_tags_payload, ) create_agent_graph( @@ -1779,39 +1779,96 @@ async def test_edit_project_tags_adds_and_removes_then_returns_updated_list(): llm=llm, echo_client_factory=factory, ) - tools = _tool_map(llm.bound_tools) + return _tool_map(llm.bound_tools), factory - result = await tools["editProjectTags"].ainvoke( - {"add": ["climate", " "], "remove": ["old-tag"]} + +@pytest.mark.asyncio +async def test_propose_tags_update_returns_proposal_without_writing(): + tools, factory = _propose_tags_tools( + project_tags_payload=[ + {"id": "tag-1", "text": "climate"}, + {"id": "tag-2", "text": "old-tag"}, + ] ) - assert result["count"] == 1 - assert result["tags"] == [{"id": "tag-1", "text": "climate"}] - # Blank entries are dropped before the call reaches the server. - assert factory.instances[0].edit_project_tags_calls == [ - {"project_id": "project-1", "add": ["climate"], "remove": ["old-tag"]} - ] + result = await tools["proposeTagsUpdate"].ainvoke( + { + # Blank and duplicate entries are dropped during normalization. + "add": ["housing", " ", "housing"], + "remove": ["old-tag"], + "summary": "Add housing and drop the retired tag.", + } + ) + + assert result["kind"] == "tags_update_suggestion" + assert result["project_id"] == "project-1" + assert result["add"] == ["housing"] + assert result["remove"] == ["old-tag"] + assert result["current_tags"] == ["climate", "old-tag"] + assert result["summary"] == "Add housing and drop the retired tag." + assert result["rejected_removals"] == [] + assert result["visible_to_user"] is True + # The proposal only reads the current tags; the agent never writes them. + assert factory.instances[0].list_project_tags_calls == ["project-1"] + assert factory.instances[0].edit_project_tags_calls == [] assert factory.instances[0].closed is True @pytest.mark.asyncio -async def test_edit_project_tags_requires_at_least_one_change(): - llm = _CaptureLLM() - factory = _FakeEchoClientFactory( - search_payload={"conversations": []}, - transcripts={}, +async def test_propose_tags_update_rejects_removals_of_unknown_tags(): + tools, factory = _propose_tags_tools( + project_tags_payload=[{"id": "tag-1", "text": "climate"}] + ) + + result = await tools["proposeTagsUpdate"].ainvoke( + {"add": ["housing"], "remove": ["missing-tag"]} + ) + + # The unknown removal is reported back to the model, not silently dropped. + assert result["remove"] == [] + assert result["rejected_removals"] == ["missing-tag"] + assert result["add"] == ["housing"] + assert factory.instances[0].edit_project_tags_calls == [] + + +@pytest.mark.asyncio +async def test_propose_tags_update_raises_when_nothing_valid_remains(): + tools, factory = _propose_tags_tools( + project_tags_payload=[{"id": "tag-1", "text": "climate"}] ) + with pytest.raises(ValueError): + await tools["proposeTagsUpdate"].ainvoke( + {"add": [], "remove": ["missing-tag"]} + ) + assert factory.instances[0].edit_project_tags_calls == [] + + +@pytest.mark.asyncio +async def test_propose_tags_update_requires_at_least_one_change(): + tools, _factory = _propose_tags_tools() + + with pytest.raises(ValueError): + await tools["proposeTagsUpdate"].ainvoke({"add": [], "remove": []}) + + +def test_propose_tags_update_is_a_registered_ui_tool(): + assert "proposeTagsUpdate" in UI_TOOLS + + llm = _CaptureLLM() create_agent_graph( project_id="project-1", bearer_token="token-1", llm=llm, - echo_client_factory=factory, + echo_client_factory=_FakeEchoClientFactory( + search_payload={"conversations": []}, + transcripts={}, + ), ) - tools = _tool_map(llm.bound_tools) - - with pytest.raises(ValueError): - await tools["editProjectTags"].ainvoke({"add": [], "remove": []}) + tool_names = {tool.name for tool in llm.bound_tools} + assert "proposeTagsUpdate" in tool_names + # The direct-write tags tool is gone; the agent can only propose. + assert "editProjectTags" not in tool_names @pytest.mark.asyncio diff --git a/echo/directus/migrations/add_project_canvas_flag.py b/echo/directus/migrations/add_project_canvas_flag.py new file mode 100644 index 000000000..619c8e1ed --- /dev/null +++ b/echo/directus/migrations/add_project_canvas_flag.py @@ -0,0 +1,137 @@ +#!/usr/bin/env python3 +"""Idempotent migration: add is_canvas_enabled boolean to the project collection. + +Per-project opt-in for the living canvas beta. Default false: canvas stays off +for every project until a host flips the experimental toggle in project +settings. The server enforces this flag on top of the global ENABLE_CANVAS +feature flag. + +Usage: + python3 add_project_canvas_flag.py \ + -u http://directus:8055 -e admin@dembrane.com -p admin +""" + +from __future__ import annotations + +import sys +import json +import argparse +import urllib.error +import urllib.request + + +class Directus: + def __init__(self, base_url: str, token: str, dry_run: bool = False): + self.base = base_url.rstrip("/") + self.token = token + self.dry_run = dry_run + + def _request(self, method: str, path: str, body: dict | None = None) -> dict: + url = f"{self.base}{path}" + data = json.dumps(body).encode() if body is not None else None + req = urllib.request.Request(url, data=data, method=method) + req.add_header("Authorization", f"Bearer {self.token}") + if data is not None: + req.add_header("Content-Type", "application/json") + try: + with urllib.request.urlopen(req) as resp: + raw = resp.read().decode() + return json.loads(raw) if raw else {} + except urllib.error.HTTPError as e: + detail = e.read().decode() + raise RuntimeError(f"{method} {path} -> {e.code}: {detail}") from None + + def get(self, path: str) -> dict: + return self._request("GET", path) + + def post(self, path: str, body: dict) -> dict: + if self.dry_run: + print(f" [dry-run] POST {path}") + return {} + return self._request("POST", path, body) + + def field_exists(self, collection: str, field: str) -> bool: + try: + self.get(f"/fields/{collection}/{field}") + return True + except RuntimeError: + return False + + +def login(base_url: str, email: str, password: str) -> str: + url = f"{base_url.rstrip('/')}/auth/login" + body = json.dumps({"email": email, "password": password}).encode() + req = urllib.request.Request(url, data=body, method="POST") + req.add_header("Content-Type", "application/json") + with urllib.request.urlopen(req) as resp: + return json.loads(resp.read().decode())["data"]["access_token"] + + +def canvas_flag_field() -> dict: + # Mirrors project.is_verify_enabled so the snapshot pull stays consistent. + return { + "collection": "project", + "field": "is_canvas_enabled", + "type": "boolean", + "meta": { + "collection": "project", + "field": "is_canvas_enabled", + "hidden": False, + "interface": "boolean", + "note": "Experimental: opt this project into the living canvas beta.", + "readonly": False, + "required": False, + "searchable": True, + "special": ["cast-boolean"], + "width": "full", + }, + "schema": { + "name": "is_canvas_enabled", + "table": "project", + "data_type": "boolean", + "default_value": False, + "max_length": None, + "numeric_precision": None, + "numeric_scale": None, + "is_nullable": True, + "is_unique": False, + "is_indexed": False, + "is_primary_key": False, + "is_generated": False, + "generation_expression": None, + "has_auto_increment": False, + "foreign_key_table": None, + "foreign_key_column": None, + }, + } + + +def main() -> int: + ap = argparse.ArgumentParser(description=__doc__) + ap.add_argument("-u", "--url", required=True) + ap.add_argument("-e", "--email", required=True) + ap.add_argument("-p", "--password", required=True) + ap.add_argument("--dry-run", action="store_true") + args = ap.parse_args() + + try: + print(f"Logging in to {args.url} as {args.email}...") + tok = login(args.url, args.email, args.password) + dx = Directus(args.url, tok, dry_run=args.dry_run) + + print("Checking if is_canvas_enabled field exists on project...") + if dx.field_exists("project", "is_canvas_enabled"): + print(" field project.is_canvas_enabled: exists, skipping") + else: + print(" field project.is_canvas_enabled: creating") + dx.post("/fields/project", canvas_flag_field()) + + print("Migration complete!") + return 0 + except Exception as e: + print(f"Error: {e}", file=sys.stderr) + return 1 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/echo/directus/migrations/add_support_request_forwarded_at.py b/echo/directus/migrations/add_support_request_forwarded_at.py new file mode 100644 index 000000000..b39c22d32 --- /dev/null +++ b/echo/directus/migrations/add_support_request_forwarded_at.py @@ -0,0 +1,145 @@ +#!/usr/bin/env python3 +"""Idempotent migration: support_request.forwarded_at (ISSUE-034). + +Nullable timestamptz stamped by the outbox forwarder +(`dembrane.tasks:task_forward_support_requests`) when a row has been +delivered to sam's support webhook with a 2xx. NULL means "not yet +forwarded"; the forwarder's filter is `status=new AND forwarded_at IS NULL`, +so at-least-once delivery falls out of the stamp being the last step. + +Run against each environment's Directus, then pull the snapshot: + + python3 add_support_request_forwarded_at.py \ + -u http://localhost:8055 -e admin@dembrane.com -p admin + cd echo/directus && bash sync.sh -u http://localhost:8055 \ + -e admin@dembrane.com -p admin pull +""" + +from __future__ import annotations + +import argparse +import json +import sys +import urllib.error +import urllib.parse +import urllib.request +from typing import Any + + +class Directus: + def __init__(self, base_url: str, token: str, dry_run: bool = False) -> None: + self.base_url = base_url.rstrip("/") + self.token = token + self.dry_run = dry_run + + def _request(self, method: str, path: str, body: dict[str, Any] | None = None) -> dict: + url = f"{self.base_url}{path}" + data = json.dumps(body).encode("utf-8") if body is not None else None + request = urllib.request.Request(url, data=data, method=method) + request.add_header("Authorization", f"Bearer {self.token}") + if data is not None: + request.add_header("Content-Type", "application/json") + try: + with urllib.request.urlopen(request) as response: + raw = response.read().decode("utf-8") + return json.loads(raw) if raw else {} + except urllib.error.HTTPError as exc: + detail = exc.read().decode("utf-8") + raise RuntimeError(f"{method} {path} -> {exc.code}: {detail}") from None + + def get(self, path: str) -> dict: + return self._request("GET", path) + + def post(self, path: str, body: dict[str, Any]) -> dict: + if self.dry_run: + print(f" [dry-run] POST {path}") + return {} + return self._request("POST", path, body) + + def field_exists(self, collection: str, field: str) -> bool: + try: + self.get( + f"/fields/{urllib.parse.quote(collection)}/{urllib.parse.quote(field)}" + ) + return True + except RuntimeError: + return False + + +def login(base_url: str, email: str, password: str) -> str: + body = json.dumps({"email": email, "password": password}).encode("utf-8") + request = urllib.request.Request( + f"{base_url.rstrip('/')}/auth/login", data=body, method="POST" + ) + request.add_header("Content-Type", "application/json") + with urllib.request.urlopen(request) as response: + payload = json.loads(response.read().decode("utf-8")) + return payload["data"]["access_token"] + + +# Same shape as `timestamp_field(...)` in add_smart_loop_phase0_schema.py — +# sort=30 lands after the reach-back columns (chat_id/app_user_id/message_id +# sit at 20-22). +FORWARDED_AT_FIELD: dict[str, Any] = { + "collection": "support_request", + "field": "forwarded_at", + "type": "timestamp", + "meta": { + "collection": "support_request", + "field": "forwarded_at", + "hidden": False, + "interface": "datetime", + "readonly": False, + "required": False, + "searchable": True, + "sort": 30, + "special": None, + "options": None, + "display": "datetime", + "display_options": {"relative": True}, + "width": "half", + }, + "schema": { + "name": "forwarded_at", + "table": "support_request", + "data_type": "timestamp with time zone", + "default_value": None, + "max_length": None, + "is_nullable": True, + }, +} + + +def main() -> int: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("-u", "--url", required=True) + parser.add_argument("-e", "--email") + parser.add_argument("-p", "--password") + parser.add_argument( + "-t", + "--token", + help="static admin token — alternative to email/password " + "(deployed envs expose DIRECTUS_ADMIN_TOKEN, not a login)", + ) + parser.add_argument("--dry-run", action="store_true") + args = parser.parse_args() + + if args.token: + token = args.token + elif args.email and args.password: + token = login(args.url, args.email, args.password) + else: + parser.error("need either --token or --email + --password") + dx = Directus(args.url, token, dry_run=args.dry_run) + + if dx.field_exists("support_request", "forwarded_at"): + print(" field support_request.forwarded_at: exists, skipping") + else: + print(" field support_request.forwarded_at: creating") + dx.post("/fields/support_request", FORWARDED_AT_FIELD) + print("done") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/echo/directus/sync/snapshot/fields/support_request/forwarded_at.json b/echo/directus/sync/snapshot/fields/support_request/forwarded_at.json new file mode 100644 index 000000000..248d18e25 --- /dev/null +++ b/echo/directus/sync/snapshot/fields/support_request/forwarded_at.json @@ -0,0 +1,46 @@ +{ + "collection": "support_request", + "field": "forwarded_at", + "type": "timestamp", + "meta": { + "collection": "support_request", + "conditions": null, + "display": "datetime", + "display_options": { + "relative": true + }, + "field": "forwarded_at", + "group": null, + "hidden": false, + "interface": "datetime", + "note": null, + "options": null, + "readonly": false, + "required": false, + "searchable": true, + "sort": 30, + "special": null, + "translations": null, + "validation": null, + "validation_message": null, + "width": "half" + }, + "schema": { + "name": "forwarded_at", + "table": "support_request", + "data_type": "timestamp with time zone", + "default_value": null, + "max_length": null, + "numeric_precision": null, + "numeric_scale": null, + "is_nullable": true, + "is_unique": false, + "is_indexed": false, + "is_primary_key": false, + "is_generated": false, + "generation_expression": null, + "has_auto_increment": false, + "foreign_key_table": null, + "foreign_key_column": null + } +} diff --git a/echo/docs/support_request_pipeline.md b/echo/docs/support_request_pipeline.md new file mode 100644 index 000000000..98c028b94 --- /dev/null +++ b/echo/docs/support_request_pipeline.md @@ -0,0 +1,119 @@ +# Support request pipeline (assistant → sam → #gen-engineering) + +How a host's support request travels from the agentic chat to a triaged +thread in Slack, and what each side guarantees. Built 2026-07-24 +(ISSUE-034, founder direction in the release-k-01-02 chat-trim thread). +The user-facing description lives in the docs site +(`echo-user-docs/pages/*/echo/first-aid.mdx`, "Asking the assistant for +help"). + +Not to be confused with the staff workspace-access feature +(`staff_support_access.md`, ECHO-863) — that also reads `support_request` +rows, but for consented staff access, not this outbox. + +## The pipeline + +``` +host ──chat──▶ assistant ──reachOutToDembraneSupport──▶ support_request row + (status=new, outbox) + task_forward_support_requests (worker, */2 cron) + filter: status=new AND forwarded_at IS NULL + │ POST (X-Echo-Support-Token) + ▼ + sam's public edge fn ──IAM──▶ sam's private /echo/support-webhook + │ validate token, dedupe by id + ▼ + deterministic post in #gen-engineering ←── happens in the HTTP + │ handler, before any + ▼ model session + sam triage session in the thread (read-only DB access, + answer / Linear ticket / proposed data fix) +``` + +## Delivery semantics (why hosts can be told "logged for the team") + +- **At-least-once**: the forwarder stamps `forwarded_at` only after a 2xx. + Crash, restart, or non-2xx → the row re-forwards next run. Sam dedupes + by `support_request.id`, so redelivery never double-posts. +- **Deterministic delivery**: the #gen-engineering post happens in sam's + HTTP handler itself — model judgment is never between a request and the + team seeing it. +- **Response codes** (forwarder behaviour): `2xx` delivered or duplicate → + stamp; `4xx` payload/config bug → log loudly, leave unstamped, continue + with the next row; `5xx`/network → receiver down, stop the batch, next + cron run retries. +- **No transcript content** ever leaves echo in a support request — the + payload carries the host's message, page context, and opaque ids only. + +## Payload contract + +Mirrored in `Dembrane/sam` `src/recipes/product-support/recipe.md` — keep +both ends in sync. Every field optional except `id`, `environment`, +`message`: + +```json +{ + "id": "…", "environment": "production | echo-next", "message": "…", + "origin_link": "…", "page_context": "…", "created_at": "…", + "chat_id": "…", "project_id": "…", "workspace_id": "…", "org_id": "…", + "app_user_id": "…", "directus_user_id": "…" +} +``` + +`environment` and `origin_link` derive from `ADMIN_BASE_URL`'s host in +code — no per-env env var. `org_id` is a workspace→org hop at forward +time (support_request has no org column). + +## Code map (this repo) + +| Piece | Where | +|---|---| +| Tool + outbox write | `server/dembrane/api/agentic.py::create_support_request` | +| Forwarder actor | `server/dembrane/tasks.py::task_forward_support_requests` | +| Schedule (*/2) | `server/dembrane/scheduler.py` | +| Config | `server/dembrane/settings.py::SupportSettings` | +| Column migration | `directus/migrations/add_support_request_forwarded_at.py` | +| Tests | `server/tests/test_support_request_forwarder.py` | + +Receiving side: `Dembrane/sam` — `src/runtime/echo_support.py` (pure +primitives), `daemon._handle_echo_support_webhook` (route), +`functions/echo-support-webhook-proxy/` (public edge), +`src/recipes/product-support/` (triage procedure). + +## Configuration & enablement (per environment) + +The forwarder no-ops unless BOTH are set (local default = off): + +- `SUPPORT_WEBHOOK_URL` — sam's edge function + (`https://europe-west1-dembrane-sameer-cli.cloudfunctions.net/echo-support-webhook-proxy`, + same URL for every environment; the payload's `environment` field + distinguishes senders). Plain config: `common.env` in the env's helm + values in echo-gitops + the `commonEnvVars` render block. +- `ECHO_SUPPORT_WEBHOOK_TOKEN` — shared static token, sent in the + `X-Echo-Support-Token` header (NOT `Authorization`; sam's ingress uses + that for its GCP IAM layer). Sealed secret (`echo-backend-secrets`, + `optional: true` — pods start fine without it). The same value lives in + sam's GCP Secret Manager; rotate both together + (`gcloud secrets versions access latest --secret=ECHO_SUPPORT_WEBHOOK_TOKEN` + in sam's project, then reseal here). + +**Enablement order for a new environment** (echo-next done 2026-07-24; +production pending): + +1. Run `directus/migrations/add_support_request_forwarded_at.py` against + the env's Directus (idempotent; `--token` works with the env's + `DIRECTUS_ADMIN_TOKEN`). Setting the env vars first would crash the + forwarder every run on the missing column. +2. Seal the token into the env's `echo-backend-secrets` (already done for + BOTH dev and prod). +3. Set `SUPPORT_WEBHOOK_URL` in the env's helm values (done for + echo-next; **this is the one remaining step for production**, after + its migration). +4. Deploy a server image that contains the forwarder. + +## Out of scope (deliberate) + +- Two-way sync: sam does not update `support_request.status` from Slack. +- Auto-resolution without a human in #gen-engineering. +- The `agent_insight` stream is NOT carried by this webhook — sam digests + it read-only from the DB directly (09:00 daily). diff --git a/echo/frontend/src/components/chat/AgenticChatPanel.tsx b/echo/frontend/src/components/chat/AgenticChatPanel.tsx index 68109f223..627cb3042 100644 --- a/echo/frontend/src/components/chat/AgenticChatPanel.tsx +++ b/echo/frontend/src/components/chat/AgenticChatPanel.tsx @@ -78,6 +78,7 @@ import { parseInsightNote, parseNavigationSuggestion, parseProjectUpdateSuggestion, + parseTagsUpdateSuggestion, type ToolActivity, } from "./agenticToolActivity"; import { CanvasSuggestionCard } from "./CanvasSuggestionCard"; @@ -90,6 +91,7 @@ import { useChat as useProjectChat } from "./hooks"; import { InsightNoteCard } from "./InsightNoteCard"; import { NavigationSuggestionCard } from "./NavigationSuggestionCard"; import { ProjectUpdateSuggestionCard } from "./ProjectUpdateSuggestionCard"; +import { TagsUpdateSuggestionCard } from "./TagsUpdateSuggestionCard"; type AgenticChatPanelProps = { chatId: string; @@ -433,6 +435,7 @@ const tryParseTimelineSuggestion = ( insight: parseInsightNote(item), navigation: parseNavigationSuggestion(item), projectUpdate: parseProjectUpdateSuggestion(item), + tagsUpdate: parseTagsUpdateSuggestion(item), }; } catch (error) { console.warn("Failed to parse agentic timeline suggestion", error); @@ -443,6 +446,7 @@ const tryParseTimelineSuggestion = ( insight: null, navigation: null, projectUpdate: null, + tagsUpdate: null, }; } }; @@ -739,6 +743,11 @@ export const AgenticChatPanel = ({ id: string; item: Extract; } + | { + kind: "tags_suggestion"; + id: string; + item: Extract; + } | { kind: "verification_suggestion"; id: string; @@ -780,6 +789,10 @@ export const AgenticChatPanel = ({ nodes.push({ id: item.id, item, kind: "suggestion" }); continue; } + if (suggestions.tagsUpdate) { + nodes.push({ id: item.id, item, kind: "tags_suggestion" }); + continue; + } if (suggestions.customVerificationTopic) { nodes.push({ id: item.id, item, kind: "verification_suggestion" }); continue; @@ -1541,6 +1554,20 @@ export const AgenticChatPanel = ({ ) : null; } + if (node.kind === "tags_suggestion") { + const suggestion = parseTagsUpdateSuggestion(node.item); + return suggestion ? ( +
+ +
+ ) : null; + } + if (node.kind === "verification_suggestion") { const suggestion = parseCustomVerificationTopicSuggestion( node.item, diff --git a/echo/frontend/src/components/chat/TagsUpdateSuggestionCard.tsx b/echo/frontend/src/components/chat/TagsUpdateSuggestionCard.tsx new file mode 100644 index 000000000..432c99709 --- /dev/null +++ b/echo/frontend/src/components/chat/TagsUpdateSuggestionCard.tsx @@ -0,0 +1,232 @@ +import { t } from "@lingui/core/macro"; +import { Trans } from "@lingui/react/macro"; +import { Badge, Button, Group, Stack, Text } from "@mantine/core"; +import { IconCheck } from "@tabler/icons-react"; +import { useQueryClient } from "@tanstack/react-query"; +import { useMemo, useState } from "react"; +import { SuggestionCardFrame } from "@/components/common/SuggestionCardFrame"; +import { toast } from "@/components/common/Toaster"; +import { createProjectTag, useProjectById } from "@/components/project/hooks"; +import { deleteTagById } from "@/lib/api"; +import { testId } from "@/lib/testUtils"; + +export type TagsUpdateSuggestion = { + projectId: string; + summary: string; + add: string[]; + remove: string[]; + currentTags: string[]; +}; + +const tagBadgeStyle = { fontWeight: 500, textTransform: "none" } as const; + +const normalizeText = (text: string) => text.trim().toLowerCase(); + +/** + * Renders a proposeTagsUpdate result as an in-chat card. The agent never + * writes tags; the host applies the changes here through the same BFF tag + * endpoints the portal editor uses, under their own session. + * + * Applied state is stateless: the card compares the live tag list to the + * proposal, so a reload still shows "Applied" truthfully. + */ +export const TagsUpdateSuggestionCard = ({ + suggestion, +}: { + suggestion: TagsUpdateSuggestion; +}) => { + const queryClient = useQueryClient(); + const projectQuery = useProjectById({ + projectId: suggestion.projectId, + query: { + deep: { tags: { _sort: "sort" } }, + fields: ["id", { tags: ["id", "text", "sort"] }], + }, + }); + + const [dismissed, setDismissed] = useState(false); + const [isApplying, setIsApplying] = useState(false); + + const liveTags = useMemo( + () => + ((projectQuery.data?.tags as unknown as ProjectTag[]) ?? []).filter( + (tag): tag is ProjectTag & { text: string } => Boolean(tag?.text), + ), + [projectQuery.data], + ); + + // Stateless applied detection: if every addition is present and every + // removal is gone from the live tag list, this suggestion has been applied + // (even after a reload). + const applied = useMemo(() => { + if (!projectQuery.data) return false; + const liveTexts = new Set(liveTags.map((tag) => normalizeText(tag.text))); + return ( + suggestion.add.every((text) => liveTexts.has(normalizeText(text))) && + suggestion.remove.every((text) => !liveTexts.has(normalizeText(text))) + ); + }, [projectQuery.data, liveTags, suggestion.add, suggestion.remove]); + + const handleApply = async () => { + const liveByText = new Map( + liveTags.map((tag) => [normalizeText(tag.text), tag]), + ); + // Partial state is fine: skip additions that already exist and + // removals that are already gone, and apply what's applicable. + const additions = suggestion.add.filter( + (text) => !liveByText.has(normalizeText(text)), + ); + const removals = suggestion.remove + .map((text) => liveByText.get(normalizeText(text))) + .filter( + (tag): tag is ProjectTag & { text: string } => tag !== undefined, + ); + const maxSort = Math.max(0, ...liveTags.map((tag) => tag.sort ?? 0)); + + setIsApplying(true); + try { + for (const tag of removals) { + await deleteTagById(suggestion.projectId, tag.id); + } + await Promise.all( + additions.map((text, index) => + createProjectTag({ + projectId: suggestion.projectId, + sort: maxSort + index + 1, + text, + }), + ), + ); + toast.success( + t`Tags updated. You can fine-tune them anytime in the portal editor.`, + ); + } catch { + toast.error(t`Could not apply all the tag changes.`); + } finally { + await queryClient.invalidateQueries({ queryKey: ["projects"] }); + await projectQuery.refetch(); + setIsApplying(false); + } + }; + + const additionBadges = suggestion.add.map((text) => ( + + {text} + + )); + const removalBadges = suggestion.remove.map((text) => ( + + {text} + + )); + + if (applied) { + return ( + + + + + + These tag changes are applied to your project. + + + {/* Keep the record of what changed; a bare confirmation tells + the host nothing when they come back to the chat later. */} + + {suggestion.add.length > 0 && ( + + + Added + + {additionBadges} + + )} + {suggestion.remove.length > 0 && ( + + + Removed + + {removalBadges} + + )} + + + + ); + } + + return ( + + + + + Suggested tag changes for your project + + {dismissed && ( + + Dismissed + + )} + + {suggestion.summary && {suggestion.summary}} + {!dismissed && ( + + + Tags are the vocabulary participants can pick from in the portal. + Nothing changes until you apply. + + + )} + + + {suggestion.add.length > 0 && ( + + + Add + + {additionBadges} + + )} + {suggestion.remove.length > 0 && ( + + + Remove + + {removalBadges} + + )} + + + {!dismissed && ( + + + + + )} + + + ); +}; diff --git a/echo/frontend/src/components/chat/agenticToolActivity.ts b/echo/frontend/src/components/chat/agenticToolActivity.ts index cf4917721..e498b911c 100644 --- a/echo/frontend/src/components/chat/agenticToolActivity.ts +++ b/echo/frontend/src/components/chat/agenticToolActivity.ts @@ -97,6 +97,8 @@ const buildHeadline = (toolName: string, context: ToolContext) => { switch (toolName) { case "proposeProjectUpdate": return t`Suggesting project changes`; + case "proposeTagsUpdate": + return t`Suggesting tag changes`; case "proposeCustomVerificationTopic": return t`Suggesting a verification prompt`; case "proposeCanvas": @@ -142,6 +144,7 @@ const buildHeadline = (toolName: string, context: ToolContext) => { return context.query ? t`Searching transcripts for "${context.query}"` : t`Searching transcripts`; + // Retired direct-write tool; replayed histories still carry it. case "editProjectTags": return t`Updating project tags`; case "noteInsight": @@ -372,6 +375,47 @@ export const parseProjectUpdateSuggestion = ( } }; +export type ParsedTagsUpdateSuggestion = { + projectId: string; + summary: string; + add: string[]; + remove: string[]; + currentTags: string[]; +}; + +const asStringArray = (value: unknown): string[] => + Array.isArray(value) + ? value + .filter((entry): entry is string => typeof entry === "string") + .map((entry) => entry.trim()) + .filter(Boolean) + : []; + +/** Returns the structured suggestion when a completed tool activity is a + * proposeTagsUpdate result, else null. */ +export const parseTagsUpdateSuggestion = ( + activity: ToolActivity, +): ParsedTagsUpdateSuggestion | null => { + if (activity.toolName !== "proposeTagsUpdate") return null; + if (activity.status !== "completed" || !activity.rawOutput) return null; + try { + const payload = JSON.parse(activity.rawOutput); + if (payload?.kind !== "tags_update_suggestion") return null; + const add = asStringArray(payload.add); + const remove = asStringArray(payload.remove); + if (add.length === 0 && remove.length === 0) return null; + return { + add, + currentTags: asStringArray(payload.current_tags), + projectId: String(payload.project_id ?? ""), + remove, + summary: String(payload.summary ?? ""), + }; + } catch { + return null; + } +}; + export type ParsedCustomVerificationTopicSuggestion = { projectId: string; label: string; diff --git a/echo/frontend/src/components/project/ProjectExperimentalSection.tsx b/echo/frontend/src/components/project/ProjectExperimentalSection.tsx new file mode 100644 index 000000000..2714f3f22 --- /dev/null +++ b/echo/frontend/src/components/project/ProjectExperimentalSection.tsx @@ -0,0 +1,63 @@ +import { Trans } from "@lingui/react/macro"; +import { Badge, Group, Stack, Switch, Text } from "@mantine/core"; +import { ENABLE_CANVAS } from "@/config"; +import { testId } from "@/lib/testUtils"; +import { useUpdateProjectByIdMutation } from "./hooks"; +import { ProjectSettingsSection } from "./ProjectSettingsSection"; + +// Early-access features a host can opt this project into. Each toggle is +// per project: flipping it here never affects other projects. +export const ProjectExperimentalSection = ({ + project, +}: { + project: Project; +}) => { + const updateProjectMutation = useUpdateProjectByIdMutation(); + + // The canvas beta also needs the environment flag; without it the + // backend 404s every canvas API, so hide the whole card. + if (!ENABLE_CANVAS) return null; + + return ( + Experimental} + description={ + + Early features you can try on this project before they are ready for + everyone. + + } + > + + updateProjectMutation.mutate({ + id: project.id, + payload: { is_canvas_enabled: event.currentTarget.checked }, + }) + } + label={ + + + + Living canvas + + + Beta + + + + + A live page in your Library that regenerates while your session + runs. Early beta: it may change or be removed. + + + + } + {...testId("project-experimental-canvas-toggle")} + /> + + ); +}; diff --git a/echo/frontend/src/components/project/hooks/index.ts b/echo/frontend/src/components/project/hooks/index.ts index 4ca836597..f74857e05 100644 --- a/echo/frontend/src/components/project/hooks/index.ts +++ b/echo/frontend/src/components/project/hooks/index.ts @@ -245,6 +245,30 @@ export const useBulkMoveProjectsMutation = () => { }); }; +/** Creates a project tag through the BFF tags endpoint. Shared by the portal + * editor tag input mutation and the agentic tag-suggestion card. */ +export const createProjectTag = async (payload: { + projectId: string; + text: string; + sort?: number; +}) => { + const res = await fetch(`${API_BASE_URL}/v2/bff/tags`, { + body: JSON.stringify({ + project_id: payload.projectId, + text: payload.text, + sort: payload.sort, + }), + credentials: "include", + headers: { "Content-Type": "application/json" }, + method: "POST", + }); + if (!res.ok) { + const data = await res.json().catch(() => ({})); + throw new Error(data.detail || "Failed to create tag"); + } + return res.json(); +}; + export const useCreateProjectTagMutation = () => { const queryClient = useQueryClient(); return useMutation({ @@ -255,26 +279,12 @@ export const useCreateProjectTagMutation = () => { }; text: string; sort?: number; - }) => { - const res = await fetch( - `${API_BASE_URL}/v2/bff/tags`, - { - body: JSON.stringify({ - project_id: payload.project_id.id, - text: payload.text, - sort: payload.sort, - }), - credentials: "include", - headers: { "Content-Type": "application/json" }, - method: "POST", - }, - ); - if (!res.ok) { - const data = await res.json().catch(() => ({})); - throw new Error(data.detail || "Failed to create tag"); - } - return res.json(); - }, + }) => + createProjectTag({ + projectId: payload.project_id.id, + sort: payload.sort, + text: payload.text, + }), onSuccess: (_, variables) => { queryClient.invalidateQueries({ queryKey: ["projects", variables.project_id.id], diff --git a/echo/frontend/src/features/sidebar/views/project/ProjectHomeView.tsx b/echo/frontend/src/features/sidebar/views/project/ProjectHomeView.tsx index e859f060c..1f8f60c3c 100644 --- a/echo/frontend/src/features/sidebar/views/project/ProjectHomeView.tsx +++ b/echo/frontend/src/features/sidebar/views/project/ProjectHomeView.tsx @@ -36,7 +36,7 @@ export const ProjectHomeView = () => { // context hasn't yet synced from the URL (saves a one-tick flash). const projectQuery = useProjectById({ projectId: projectId ?? "", - query: { fields: ["id", "name"] }, + query: { fields: ["id", "name", "is_canvas_enabled"] }, }); const conversationsCountQuery = useConversationsCountByProjectId( projectId ?? "", @@ -88,7 +88,10 @@ export const ProjectHomeView = () => { icon={BroadcastIcon} /> )} - {ENABLE_CANVAS && ( + {/* Library is the canvas surface: the env flag mounts the routes, + but each project also opts in via the experimental toggle in + project settings (is_canvas_enabled). */} + {ENABLE_CANVAS && project?.is_canvas_enabled && ( Library} diff --git a/echo/frontend/src/lib/typesDirectus.d.ts b/echo/frontend/src/lib/typesDirectus.d.ts index 0857aa235..fdf7d052c 100644 --- a/echo/frontend/src/lib/typesDirectus.d.ts +++ b/echo/frontend/src/lib/typesDirectus.d.ts @@ -295,6 +295,9 @@ interface Project { // matches server/dembrane/api/v2/workspace_projects.py. visibility: "workspace" | "private" | null; is_verify_enabled: boolean | null; + // Per-project opt-in for the living canvas beta. Null or false = off; + // canvas APIs 404 unless this AND the global ENABLE_CANVAS flag are on. + is_canvas_enabled: boolean | null; is_verify_on_finish_enabled: boolean | null; selected_verification_key_list: string | null; conversations: string[] | Conversation[]; diff --git a/echo/frontend/src/locales/cs-CZ.po b/echo/frontend/src/locales/cs-CZ.po index 365b1fd2a..4abd15392 100644 --- a/echo/frontend/src/locales/cs-CZ.po +++ b/echo/frontend/src/locales/cs-CZ.po @@ -925,11 +925,11 @@ msgstr "{liveProjectCount, plural, one {Delete the # project in this workspace b msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:191 +#: src/components/chat/AgenticChatPanel.tsx:193 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:190 +#: src/components/chat/AgenticChatPanel.tsx:192 msgid "{name}'s transcript excerpt" msgstr "" @@ -1256,6 +1256,10 @@ msgstr "" msgid "A friendly name to identify this webhook" msgstr "A friendly name to identify this webhook" +#: src/components/project/ProjectExperimentalSection.tsx:52 +msgid "A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed." +msgstr "" + #: src/routes/project/report/ProjectReportRoute.tsx:564 msgid "A new report will be automatically generated and published at the scheduled time." msgstr "A new report will be automatically generated and published at the scheduled time." @@ -1353,7 +1357,7 @@ msgstr "" #: src/routes/workspaces/CreateWorkspaceRoute.tsx:702 #: src/routes/project/CreateProjectRoute.tsx:256 #: src/routes/project/CreateProjectRoute.tsx:345 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:117 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:120 #: src/components/project/ProjectUsageAndSharing.tsx:190 #: src/components/layout/ProjectOverviewLayout.tsx:52 msgid "Access" @@ -1493,6 +1497,7 @@ msgstr "Active filters" #: src/routes/organisation/OrganisationRoute.tsx:2054 #: src/routes/organisation/OrganisationRoute.tsx:2077 #: src/components/project/ProjectSharingModal.tsx:252 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:191 #: src/components/billing/BillingManager.tsx:1461 msgid "Add" msgstr "Add" @@ -1653,6 +1658,7 @@ msgstr "Add Your First Webhook" #~ msgstr "Add your own" #: src/components/project/ProjectSharingModal.tsx:68 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:145 msgid "Added" msgstr "Added" @@ -1829,8 +1835,8 @@ msgstr "Advanced Settings" #~ msgid "Agent is working..." #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:287 -#: src/components/chat/AgenticChatPanel.tsx:314 +#: src/components/chat/AgenticChatPanel.tsx:289 +#: src/components/chat/AgenticChatPanel.tsx:316 msgid "Agent run failed" msgstr "" @@ -2157,6 +2163,7 @@ msgstr "" #: src/components/view/CreateViewForm.tsx:153 #: src/components/goal/GoalSuggestionCard.tsx:122 #: src/components/common/ImageCropModal.tsx:148 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:223 #: src/components/chat/CanvasSuggestionCard.tsx:361 msgid "Apply" msgstr "Apply" @@ -2335,7 +2342,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:1481 +#: src/components/chat/AgenticChatPanel.tsx:1494 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 "" @@ -2355,7 +2362,7 @@ msgstr "Ask a workspace admin for an invite, or pick a different workspace from msgid "Ask about your conversations, or type to find an earlier chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1739 +#: src/components/chat/AgenticChatPanel.tsx:1766 msgid "Ask about your conversations..." msgstr "" @@ -2685,6 +2692,7 @@ msgstr "Basic Settings" #: src/components/report/CreateReportForm.tsx:235 #: src/components/project/ProjectPortalEditor.tsx:1483 #: src/components/project/ProjectPortalEditor.tsx:1564 +#: src/components/project/ProjectExperimentalSection.tsx:48 #: src/components/conversation/RetranscribeConversation.tsx:151 #: src/components/chat/ChatModeSelector.tsx:158 #: src/components/chat/ChatModeBanner.tsx:45 @@ -2937,7 +2945,7 @@ msgstr "can read" #: src/components/common/ImageCropModal.tsx:145 #: src/components/common/FeedbackPortalModal.tsx:124 #: src/components/common/ConfirmModal.tsx:44 -#: src/components/chat/AgenticChatPanel.tsx:1708 +#: src/components/chat/AgenticChatPanel.tsx:1735 msgid "Cancel" msgstr "Cancel" @@ -2970,7 +2978,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1696 +#: src/components/chat/AgenticChatPanel.tsx:1723 msgid "Cancel current run" msgstr "" @@ -3172,7 +3180,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:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Chat" msgstr "Chat" @@ -3238,7 +3246,7 @@ msgstr "" msgid "Checked {checkedAgo}. Nothing new since your last conversation. Updated {updatedAgo}." msgstr "" -#: src/components/chat/agenticToolActivity.ts:123 +#: src/components/chat/agenticToolActivity.ts:125 msgid "Checking live conversations" msgstr "" @@ -3653,7 +3661,7 @@ msgstr "Conversation tags" msgid "conversations" msgstr "conversations" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:111 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:114 #: src/components/workspace/OrganisationProjectsTable.tsx:219 #: src/components/project/ProjectUsageAndSharing.tsx:453 #: src/components/conversation/ProjectConversationsPanel.tsx:725 @@ -3772,6 +3780,10 @@ msgstr "Copy to Clipboard" msgid "Copying..." msgstr "Copying..." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:102 +msgid "Could not apply all the tag changes." +msgstr "" + #: src/components/chat/ProjectUpdateSuggestionCard.tsx:182 msgid "Could not apply the changes. Nothing was saved." msgstr "" @@ -3858,7 +3870,7 @@ msgstr "" msgid "Could not save tags" msgstr "" -#: src/components/project/hooks/index.ts:450 +#: src/components/project/hooks/index.ts:460 msgid "Could not save the host guide" msgstr "Could not save the host guide" @@ -4638,6 +4650,7 @@ msgid "Dismiss" msgstr "" #: src/components/goal/GoalSuggestionCard.tsx:86 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:173 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:249 #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:113 #: src/components/chat/CanvasSuggestionCard.tsx:256 @@ -4698,7 +4711,7 @@ msgstr "" #: src/routes/onboarding/OnboardingRoute.tsx:525 #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 -#: src/components/chat/AgenticChatPanel.tsx:333 +#: src/components/chat/AgenticChatPanel.tsx:335 msgid "Done" msgstr "Done" @@ -4848,6 +4861,10 @@ msgstr "" #~ msgid "Earlier" #~ msgstr "Earlier" +#: src/components/project/ProjectExperimentalSection.tsx:25 +msgid "Early features you can try on this project before they are ready for everyone." +msgstr "" + #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:1065 msgid "participant.button.echo" @@ -5179,7 +5196,7 @@ msgstr "Enter the 6-digit code from your authenticator app." msgid "Enter the current six-digit code from your authenticator app." msgstr "Enter the current six-digit code from your authenticator app." -#: src/components/chat/AgenticChatPanel.tsx:1756 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Enter to send, Shift+Enter for a new line" msgstr "" @@ -5212,8 +5229,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:371 -#: src/components/chat/AgenticChatPanel.tsx:338 -#: src/components/chat/AgenticChatPanel.tsx:1427 +#: src/components/chat/AgenticChatPanel.tsx:340 +#: src/components/chat/AgenticChatPanel.tsx:1440 msgid "Error" msgstr "Error" @@ -5234,10 +5251,10 @@ msgstr "Error creating report" #~ msgid "Error loading insights" #~ msgstr "Error loading insights" -#: src/routes/project/ProjectRoutes.tsx:81 -#: src/routes/project/ProjectRoutes.tsx:168 -#: src/routes/project/ProjectRoutes.tsx:270 -#: src/routes/project/ProjectRoutes.tsx:309 +#: src/routes/project/ProjectRoutes.tsx:83 +#: src/routes/project/ProjectRoutes.tsx:177 +#: src/routes/project/ProjectRoutes.tsx:279 +#: src/routes/project/ProjectRoutes.tsx:318 msgid "Error loading project" msgstr "Error loading project" @@ -5377,10 +5394,9 @@ msgstr "Exit fullscreen" msgid "Expand workspaces" msgstr "" -#: src/components/report/UpdateReportModalButton.tsx:191 -#: src/components/report/CreateReportForm.tsx:198 -#~ msgid "Experimental" -#~ msgstr "Experimental" +#: src/components/project/ProjectExperimentalSection.tsx:23 +msgid "Experimental" +msgstr "Experimental" #: src/components/billing/BillingManager.tsx:182 msgid "Expired" @@ -5511,7 +5527,7 @@ msgstr "Failed to copy chat. Please try again." msgid "Failed to copy transcript. Please try again." msgstr "Failed to copy transcript. Please try again." -#: src/components/project/hooks/index.ts:583 +#: src/components/project/hooks/index.ts:593 msgid "Failed to create custom topic" msgstr "Failed to create custom topic" @@ -5523,7 +5539,7 @@ msgstr "Failed to create project" msgid "Failed to delete chat" msgstr "Failed to delete chat" -#: src/components/project/hooks/index.ts:635 +#: src/components/project/hooks/index.ts:645 msgid "Failed to delete custom topic" msgstr "Failed to delete custom topic" @@ -5535,7 +5551,7 @@ msgstr "Failed to delete project" msgid "Failed to delete response" msgstr "Failed to delete response" -#: src/components/project/hooks/index.ts:331 +#: src/components/project/hooks/index.ts:341 msgid "Failed to delete tag" msgstr "Failed to delete tag" @@ -5672,15 +5688,15 @@ 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:1299 +#: src/components/chat/AgenticChatPanel.tsx:1312 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1258 +#: src/components/chat/AgenticChatPanel.tsx:1271 msgid "Failed to submit agentic message" msgstr "" -#: src/components/project/hooks/index.ts:610 +#: src/components/project/hooks/index.ts:620 msgid "Failed to update custom topic" msgstr "Failed to update custom topic" @@ -5950,7 +5966,7 @@ msgstr "" #~ msgid "Forecast: ~{0}" #~ msgstr "Forecast: ~{0}" -#: src/components/chat/agenticToolActivity.ts:157 +#: src/components/chat/agenticToolActivity.ts:160 msgid "Forgetting a saved memory" msgstr "" @@ -6393,7 +6409,7 @@ msgstr "Hide projects" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Hide steps" msgstr "" @@ -6418,7 +6434,7 @@ msgid "host guide" msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:167 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:101 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:104 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:53 msgid "Host guide" msgstr "Host guide" @@ -6482,11 +6498,11 @@ msgstr "" #~ msgid "I accept the <0>terms" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1567 +#: src/components/chat/AgenticChatPanel.tsx:1594 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1583 +#: src/components/chat/AgenticChatPanel.tsx:1610 msgid "I applied the goal." msgstr "" @@ -6574,7 +6590,7 @@ msgstr "If you're trying to join an existing organization, you should not create msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1505 +#: src/components/chat/AgenticChatPanel.tsx:1518 msgid "Improve my setup" msgstr "" @@ -7299,7 +7315,7 @@ msgstr "" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 #: src/routes/project/library/LibraryRoute.tsx:132 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:94 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:97 msgid "Library" msgstr "Library" @@ -7358,7 +7374,7 @@ msgstr "Link to your organisation's privacy policy that will be shown to partici #~ msgid "LinkedIn Post (Experimental)" #~ msgstr "LinkedIn Post (Experimental)" -#: src/components/chat/AgenticChatPanel.tsx:1495 +#: src/components/chat/AgenticChatPanel.tsx:1508 msgid "List my conversations" msgstr "" @@ -7366,15 +7382,15 @@ msgstr "" #~ msgid "List project conversations" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1496 +#: src/components/chat/AgenticChatPanel.tsx:1509 msgid "List the conversations in this project." msgstr "" -#: src/components/chat/agenticToolActivity.ts:121 +#: src/components/chat/agenticToolActivity.ts:123 msgid "Listing conversations" msgstr "" -#: src/components/chat/agenticToolActivity.ts:117 +#: src/components/chat/agenticToolActivity.ts:119 msgid "Listing documentation pages" msgstr "" @@ -7427,10 +7443,14 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:986 +#: src/components/chat/AgenticChatPanel.tsx:999 msgid "Live stream interrupted. Falling back to polling." msgstr "" +#: src/components/project/ProjectExperimentalSection.tsx:45 +msgid "Living canvas" +msgstr "" + #: src/components/chat/agenticToolActivity.ts:120 #~ msgid "Load conversation summary" #~ msgstr "" @@ -7506,7 +7526,7 @@ msgstr "Loading projects..." #~ msgid "Loading projects…" #~ msgstr "Loading projects…" -#: src/components/chat/AgenticChatPanel.tsx:1438 +#: src/components/chat/AgenticChatPanel.tsx:1451 msgid "Loading this chat..." msgstr "" @@ -7576,7 +7596,7 @@ msgstr "Log in to {resolvedWorkspaceName} to continue." msgid "Log out and use the invited email" msgstr "Log out and use the invited email" -#: src/components/chat/agenticToolActivity.ts:160 +#: src/components/chat/agenticToolActivity.ts:163 msgid "Logging this with the dembrane team" msgstr "" @@ -8756,6 +8776,7 @@ msgid "Not available" msgstr "Not available" #: src/routes/invite/AcceptInviteRoute.tsx:568 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:214 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:353 msgid "Not now" msgstr "Not now" @@ -8839,7 +8860,7 @@ msgstr "" msgid "Notify participants when a report is published." msgstr "Notify participants when a report is published." -#: src/components/chat/agenticToolActivity.ts:149 +#: src/components/chat/agenticToolActivity.ts:152 msgid "Noting this for the dembrane team" msgstr "" @@ -9174,7 +9195,7 @@ msgstr "" msgid "Open the chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1414 +#: src/components/chat/AgenticChatPanel.tsx:1427 msgid "Open the old chat experience" msgstr "" @@ -10132,7 +10153,7 @@ msgstr "" #~ msgid "Preferences" #~ msgstr "Preferences" -#: src/components/chat/agenticToolActivity.ts:107 +#: src/components/chat/agenticToolActivity.ts:109 msgid "Preparing a navigation shortcut" msgstr "" @@ -10596,7 +10617,7 @@ msgstr "" #~ msgstr "Quotes" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:510 +#: src/components/chat/AgenticChatPanel.tsx:514 msgid "Ran {0} steps at once" msgstr "" @@ -10642,36 +10663,36 @@ msgid "Read-only" msgstr "Read-only" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:133 +#: src/components/chat/agenticToolActivity.ts:135 msgid "Reading {0}'s summary" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:138 +#: src/components/chat/agenticToolActivity.ts:140 msgid "Reading {0}'s transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:134 +#: src/components/chat/agenticToolActivity.ts:136 msgid "Reading a conversation summary" msgstr "" -#: src/components/chat/agenticToolActivity.ts:115 +#: src/components/chat/agenticToolActivity.ts:117 msgid "Reading a skill" msgstr "" -#: src/components/chat/agenticToolActivity.ts:139 +#: src/components/chat/agenticToolActivity.ts:141 msgid "Reading a transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:119 +#: src/components/chat/agenticToolActivity.ts:121 msgid "Reading project context" msgstr "" -#: src/components/chat/agenticToolActivity.ts:109 +#: src/components/chat/agenticToolActivity.ts:111 msgid "Reading project settings" msgstr "" -#: src/components/chat/agenticToolActivity.ts:113 +#: src/components/chat/agenticToolActivity.ts:115 msgid "Reading the documentation" msgstr "" @@ -10931,6 +10952,7 @@ msgstr "" #: src/components/organisation/InviteEmailList.tsx:58 #: src/components/memory/MemoryList.tsx:98 #: src/components/memory/MemoryList.tsx:118 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:199 msgid "Remove" msgstr "Remove" @@ -11014,6 +11036,10 @@ msgstr "Remove the custom logo? The dembrane default will be used instead." msgid "Remove this memory?" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:153 +msgid "Removed" +msgstr "" + #: src/routes/organisation/OrganisationRoute.tsx:522 msgid "Removed from organisation" msgstr "Removed from organisation" @@ -11032,7 +11058,7 @@ msgstr "Rename" #~ msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:158 -#: src/components/chat/AgenticChatPanel.tsx:1370 +#: src/components/chat/AgenticChatPanel.tsx:1383 msgid "Rename chat" msgstr "Rename chat" @@ -11075,7 +11101,7 @@ msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:175 #: src/routes/project/report/ProjectReportRoute.tsx:185 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:106 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:109 #: src/components/report/ReportRenderer.tsx:75 #: src/components/report/ReportModalNavigationButton.tsx:92 msgid "Report" @@ -11381,7 +11407,7 @@ msgstr "" msgid "retracted for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:153 +#: src/components/chat/agenticToolActivity.ts:156 msgid "Retracting a note for the dembrane team" msgstr "" @@ -11460,7 +11486,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1506 +#: src/components/chat/AgenticChatPanel.tsx:1519 msgid "Review my project settings and suggest improvements." msgstr "" @@ -11540,7 +11566,7 @@ msgstr "Rows per page" #~ msgid "Run status:" #~ msgstr "Run status:" -#: src/components/chat/AgenticChatPanel.tsx:343 +#: src/components/chat/AgenticChatPanel.tsx:345 msgid "Running" msgstr "" @@ -11819,16 +11845,16 @@ msgstr "Search workspaces" msgid "Searched through the most relevant sources" msgstr "Searched through the most relevant sources" -#: src/components/chat/agenticToolActivity.ts:129 +#: src/components/chat/agenticToolActivity.ts:131 msgid "Searching conversations" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:128 +#: src/components/chat/agenticToolActivity.ts:130 msgid "Searching conversations for \"{0}\"" msgstr "" -#: src/components/chat/agenticToolActivity.ts:111 +#: src/components/chat/agenticToolActivity.ts:113 msgid "Searching the documentation" msgstr "" @@ -11836,12 +11862,12 @@ msgstr "" #~ msgid "Searching through the most relevant sources" #~ msgstr "Searching through the most relevant sources" -#: src/components/chat/agenticToolActivity.ts:144 +#: src/components/chat/agenticToolActivity.ts:146 msgid "Searching transcripts" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:143 +#: src/components/chat/agenticToolActivity.ts:145 msgid "Searching transcripts for \"{0}\"" msgstr "" @@ -12062,7 +12088,7 @@ msgid "Self-serve" msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:1024 -#: src/components/chat/AgenticChatPanel.tsx:1776 +#: src/components/chat/AgenticChatPanel.tsx:1803 msgid "Send" msgstr "Send" @@ -12204,7 +12230,7 @@ msgstr "" #: src/features/sidebar/views/workspace/WorkspaceHomeView.tsx:80 #: src/features/sidebar/views/user/UserSettingsView.tsx:34 #: src/features/sidebar/views/project/ProjectSettingsView.tsx:18 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:129 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:132 #: src/features/sidebar/views/org/OrgSettingsView.tsx:26 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 @@ -12411,7 +12437,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Show steps" msgstr "" @@ -12861,6 +12887,10 @@ msgstr "" msgid "Suggested project goal" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:169 +msgid "Suggested tag changes for your project" +msgstr "" + #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:109 msgid "Suggested verification prompt" msgstr "" @@ -12870,15 +12900,15 @@ msgstr "" msgid "Suggested:" msgstr "Suggested:" -#: src/components/chat/agenticToolActivity.ts:103 +#: src/components/chat/agenticToolActivity.ts:105 msgid "Suggesting a canvas" msgstr "" -#: src/components/chat/agenticToolActivity.ts:105 +#: src/components/chat/agenticToolActivity.ts:107 msgid "Suggesting a project goal" msgstr "" -#: src/components/chat/agenticToolActivity.ts:101 +#: src/components/chat/agenticToolActivity.ts:103 msgid "Suggesting a verification prompt" msgstr "" @@ -12886,6 +12916,10 @@ msgstr "" msgid "Suggesting project changes" msgstr "" +#: src/components/chat/agenticToolActivity.ts:101 +msgid "Suggesting tag changes" +msgstr "" + #: src/components/chat/templates.ts:26 msgid "Summarize" msgstr "Summarize" @@ -12991,7 +13025,7 @@ msgstr "System" msgid "System status" msgstr "System status" -#: src/components/project/hooks/index.ts:328 +#: src/components/project/hooks/index.ts:338 msgid "Tag deleted" msgstr "Tag deleted" @@ -13009,6 +13043,14 @@ msgstr "Tags" #~ msgid "Tags (max 3)" #~ msgstr "Tags (max 3)" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:180 +msgid "Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply." +msgstr "" + +#: src/components/chat/TagsUpdateSuggestionCard.tsx:99 +msgid "Tags updated. You can fine-tune them anytime in the portal editor." +msgstr "" + #: src/routes/invite/AcceptInviteRoute.tsx:483 #: src/routes/invite/AcceptInviteRoute.tsx:523 msgid "Take me to {resolvedWorkspaceName}" @@ -13394,6 +13436,10 @@ msgstr "These default view templates will be generated when you create your firs msgid "These settings are read-only. Only organisation administrators can modify project defaults." msgstr "These settings are read-only. Only organisation administrators can modify project defaults." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:132 +msgid "These tag changes are applied to your project." +msgstr "" + #: src/components/invite/InviteModal.tsx:654 msgid "These workspaces are billed separately. Each person you add takes a seat in {billingContextCount} billing contexts, each invoiced on its own." msgstr "" @@ -13533,7 +13579,7 @@ msgstr "This is an example of the JSON data sent to your webhook URL when a conv msgid "This is not saved yet." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1402 +#: src/components/chat/AgenticChatPanel.tsx:1415 msgid "This is the new chat experience" msgstr "" @@ -13893,11 +13939,11 @@ msgstr "Too long" msgid "Tool" msgstr "" -#: src/components/project/hooks/index.ts:591 +#: src/components/project/hooks/index.ts:601 msgid "Topic created successfully" msgstr "Topic created successfully" -#: src/components/project/hooks/index.ts:643 +#: src/components/project/hooks/index.ts:653 msgid "Topic deleted successfully" msgstr "Topic deleted successfully" @@ -13905,7 +13951,7 @@ msgstr "Topic deleted successfully" msgid "Topic label" msgstr "Topic label" -#: src/components/project/hooks/index.ts:618 +#: src/components/project/hooks/index.ts:628 msgid "Topic updated successfully" msgstr "Topic updated successfully" @@ -13990,7 +14036,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:194 +#: src/components/chat/AgenticChatPanel.tsx:196 msgid "transcript" msgstr "" @@ -14006,7 +14052,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:193 +#: src/components/chat/AgenticChatPanel.tsx:195 msgid "transcript excerpt" msgstr "" @@ -14479,15 +14525,15 @@ msgstr "" #~ msgid "Updates every few minutes." #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:151 +#: src/components/chat/agenticToolActivity.ts:154 msgid "Updating a note for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:155 +#: src/components/chat/agenticToolActivity.ts:158 msgid "Updating a saved memory" msgstr "" -#: src/components/chat/agenticToolActivity.ts:146 +#: src/components/chat/agenticToolActivity.ts:149 msgid "Updating project tags" msgstr "" @@ -14667,7 +14713,7 @@ msgstr "URL is required" msgid "URL must start with http:// or https://" msgstr "URL must start with http:// or https://" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:122 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:125 #: src/features/sidebar/views/org/OrgSettingsView.tsx:37 #: src/components/project/ProjectUsageAndSharing.tsx:415 #: src/components/layout/ProjectOverviewLayout.tsx:53 @@ -15210,7 +15256,7 @@ msgstr "Webhooks" msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." -#: src/routes/project/ProjectRoutes.tsx:182 +#: src/routes/project/ProjectRoutes.tsx:191 msgid "Webhooks are not enabled for this environment." msgstr "Webhooks are not enabled for this environment." @@ -15319,11 +15365,11 @@ msgstr "What should ECHO analyse or generate from the conversations?" #~ msgid "What should this report focus on?" #~ msgstr "What should this report focus on?" -#: src/components/chat/AgenticChatPanel.tsx:1501 +#: src/components/chat/AgenticChatPanel.tsx:1514 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1500 +#: src/components/chat/AgenticChatPanel.tsx:1513 msgid "What themes came up?" msgstr "" @@ -15409,7 +15455,7 @@ msgid "Where would you like to go?" msgstr "Where would you like to go?" #: src/routes/project/chat/NewChatRoute.tsx:358 -#: src/components/chat/AgenticChatPanel.tsx:1478 +#: src/components/chat/AgenticChatPanel.tsx:1491 msgid "Where would you like to start?" msgstr "" @@ -15476,15 +15522,15 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:511 +#: src/components/chat/AgenticChatPanel.tsx:515 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1332 +#: src/components/chat/AgenticChatPanel.tsx:1345 msgid "Working on your answer..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:506 +#: src/components/chat/AgenticChatPanel.tsx:510 msgid "Working..." msgstr "" diff --git a/echo/frontend/src/locales/cs-CZ.ts b/echo/frontend/src/locales/cs-CZ.ts index 1f6ff78ef..57d2d71ab 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.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"uSTZVH\":[[\"conversationTotal\"],\" included\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 included\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ members have joined\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Add to favorites\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"MIWKYQ\":[\"Add to quick access\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Add Your First Webhook\"],\"DtI2tD\":[\"Add your own\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"VHg3DX\":[\"Agentic Chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"All templates\"],\"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?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"QX6zrA\":[\"Analysis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymous host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Appearance\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Apply\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"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?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"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.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistant is typing...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio Tip\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Book a call to share your feedback\"],\"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.\"],\"CzeGfZ\":[\"Browse and share templates with other hosts\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Built-in\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citing the following sources\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Coming soon — share your input\"],\"bJHBId\":[\"Common use cases:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community templates\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concrete Topics\"],\"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\"],\"p2/GCq\":[\"Confirm Password\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contact sales\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"Np+C87\":[\"Conversations:\"],\"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\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"RGCCrg\":[\"Copy share link\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Create an Account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"uVzvzz\":[\"Create now instead\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"s7XwOU\":[\"Create Template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Created \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"custom\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Customize how your report is structured. This feature is coming soon.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Delete Custom Topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"MlrelG\":[\"Delete Report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane is powered by AI. Please double-check responses.\"],\"QMogcD\":[\"Reply\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe how this template is useful...\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determines under which GDPR legal basis personal data is processed. This affects consent flows, data subject rights, and retention obligations.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Display contextual suggestion pills in the chat\"],\"pfa8F0\":[\"Display name\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"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\"],\"5154Ap\":[\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"e.g. tomorrow at 9:00\"],\"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.\"],\"5oD9f/\":[\"Earlier\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"edit\"],\"ePK91l\":[\"Edit\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"gGx5tM\":[\"Editing\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Email Verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Email Verification | dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"VpwcSk\":[\"Enter new password\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"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\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"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\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"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.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Failed to start new conversation. 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\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"First Name\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus your report (optional)\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"from \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"oADIO6\":[\"Generate a new report. Previous reports will remain accessible.\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Go to feedback portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Grid view\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help us translate\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"JsWQuM\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations. You can optionally focus the report on a specific topic.\"],\"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.\"],\"Lj7sBL\":[\"Italian\"],\"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.\"],\"GaQMyV\":[\"Join \",[\"0\"],\" on dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Join the 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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Language\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Let us know!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"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\"],\"yUQgLY\":[\"Library is currently being processed\"],\"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\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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.\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"WXSxpf\":[\"Logo updated successfully\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mine\"],\"b85Pfh\":[\"Minimum 8 characters\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"zMx0gF\":[\"More templates\"],\"y1ypMV\":[\"Most popular\"],\"7BgchI\":[\"Most used\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"New conversations available — update your 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.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"3RC8Um\":[\"New conversations have been added since your last report. Generate an updated report to include them. Your previous report will remain accessible.\"],\"QgiaQ8\":[\"New date and time\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"New Project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Newest\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No announcements available\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No collections found\"],\"S8FeaY\":[\"No community templates yet. Share yours to get started.\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"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.\"],\"meAa31\":[\"No conversations yet\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"ax9iz4\":[\"No custom templates yet. Create one to get started.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"No specific focus\"],\"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}\"],\"kaDUQs\":[\"No templates yet. Create your own or browse All templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"No workspaces in this organisation yet.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Now\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"Dw7aQc\":[\"Only applies when report is published\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"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.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Open Documentation\"],\"QTXl9z\":[\"Open feedback portal\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Other hosts can see and copy your template. You can unpublish at any time.\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Pick date and time\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Pick one or more angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"lepv9z\":[\"Pin to chat bar\"],\"fr2ggG\":[\"pinned\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"Atb9XB\":[\"Pinned to chat bar\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"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\"],\"Tx36sk\":[\"Portal link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Prefer to chat directly? <0>Book a call with me\"],\"Q6hhn8\":[\"Preferences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"ANWB5x\":[\"Print this report\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Security\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy Statements\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projects Home\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"GwOmnT\":[\"Publish this report to enable printing\"],\"ZSi2AK\":[\"Publish this report to enable sharing\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"4R3R74\":[\"Published to community\"],\"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.\"],\"9iShh/\":[\"Quick Access (max 5)\"],\"utRRxm\":[\"Quick access is full (max 5)\"],\"dN0qso\":[\"Quick access:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Rate this prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"DqXVNZ\":[\"Ready to generate\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"844H5I\":[\"Regenerate Library\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevance\"],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Remove from favorites\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Remove from quick access\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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?\"],\"nVEhnc\":[\"Removed from organisation\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"UZ6fKH\":[\"Report actions\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"mgTmvC\":[\"Report structure\"],\"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\"],\"uLZGK+\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Reset to default\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Resources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Run status:\"],\"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!\"],\"RgyKxd\":[\"Save Quick Access\"],\"5dVjYt\":[\"Save template\"],\"zaYZWH\":[\"Save to my templates\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scan or click 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\"],\"QS1Nla\":[\"Schedule for later\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Search conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Search webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Send a message to start an agentic run.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Share\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Share this report\"],\"lRZMol\":[\"Share with community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Share with the community\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Share your voice\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Show a link for participants to contribute\"],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Show duration\"],\"YbxwRo\":[\"Show generated suggestions\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Sign in with Google\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"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.\"],\"zazql1\":[\"Something went wrong generating your latest report. Showing your most recent completed report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"a75OAp\":[\"Something went wrong generating your report. You can try again below.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"vf1Tc/\":[\"Specific Details needs at least one conversation.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Start Recording\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Submitted via text input\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"aZJj7n\":[\"Suggest prompts based on your conversations\"],\"FyUg+Y\":[\"Suggest prompts based on your conversations. Try sending a message to see it in action.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"6xSPmn\":[\"Suggested project goal\"],\"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\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Template prompt content...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal — it helps us fix things faster.\"],\"gtMB2A\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal. It helps us fix things faster than not submitting a report.\"],\"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.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"The issue reporter could not be loaded. Please use the feedback portal to tell us what went wrong — it helps us fix things faster.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"the project library.\"],\"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.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"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.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"This information is anonymized\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"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\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Time\"],\"Ww6cQ8\":[\"Time Created\"],\"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.\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Try Again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainian\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dFIzZ6\":[\"Unpin from chat bar\"],\"dx+iaL\":[\"Unpin project\"],\"KyKziT\":[\"Unpublish from community\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Update Report\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Updated\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Upload Audio\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Use\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"View read announcements\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"views\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"tCfopB\":[\"Want custom report structures?\"],\"VKMCO0\":[\"Want to add a template to \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"v8z9fL\":[\"Want to customize how your report looks?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"2ZUkkL\":[\"We're designing this feature and would love your input.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"ZsEVar\":[\"What should this report focus on?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"Ul3erb\":[\"What you can reach\"],\"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.\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Yours\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"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.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"uSTZVH\":[[\"conversationTotal\"],\" included\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 included\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ members have joined\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Add to favorites\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"MIWKYQ\":[\"Add to quick access\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Add Your First Webhook\"],\"DtI2tD\":[\"Add your own\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"VHg3DX\":[\"Agentic Chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"All templates\"],\"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?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"QX6zrA\":[\"Analysis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymous host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Appearance\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Apply\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"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?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"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.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistant is typing...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio Tip\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Book a call to share your feedback\"],\"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.\"],\"CzeGfZ\":[\"Browse and share templates with other hosts\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Built-in\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citing the following sources\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Coming soon — share your input\"],\"bJHBId\":[\"Common use cases:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community templates\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concrete Topics\"],\"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\"],\"p2/GCq\":[\"Confirm Password\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contact sales\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"Np+C87\":[\"Conversations:\"],\"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\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"RGCCrg\":[\"Copy share link\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Create an Account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"uVzvzz\":[\"Create now instead\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"s7XwOU\":[\"Create Template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Created \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"custom\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Customize how your report is structured. This feature is coming soon.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Delete Custom Topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"MlrelG\":[\"Delete Report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane is powered by AI. Please double-check responses.\"],\"QMogcD\":[\"Reply\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe how this template is useful...\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determines under which GDPR legal basis personal data is processed. This affects consent flows, data subject rights, and retention obligations.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Display contextual suggestion pills in the chat\"],\"pfa8F0\":[\"Display name\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"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\"],\"5154Ap\":[\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"e.g. tomorrow at 9:00\"],\"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.\"],\"5oD9f/\":[\"Earlier\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"edit\"],\"ePK91l\":[\"Edit\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"gGx5tM\":[\"Editing\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Email Verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Email Verification | dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"VpwcSk\":[\"Enter new password\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"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\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"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\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"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.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Failed to start new conversation. 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\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"First Name\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus your report (optional)\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"from \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"oADIO6\":[\"Generate a new report. Previous reports will remain accessible.\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Go to feedback portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Grid view\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help us translate\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"JsWQuM\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations. You can optionally focus the report on a specific topic.\"],\"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.\"],\"Lj7sBL\":[\"Italian\"],\"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.\"],\"GaQMyV\":[\"Join \",[\"0\"],\" on dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Join the 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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Language\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Let us know!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"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\"],\"yUQgLY\":[\"Library is currently being processed\"],\"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\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"WXSxpf\":[\"Logo updated successfully\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mine\"],\"b85Pfh\":[\"Minimum 8 characters\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"zMx0gF\":[\"More templates\"],\"y1ypMV\":[\"Most popular\"],\"7BgchI\":[\"Most used\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"New conversations available — update your 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.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"3RC8Um\":[\"New conversations have been added since your last report. Generate an updated report to include them. Your previous report will remain accessible.\"],\"QgiaQ8\":[\"New date and time\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"New Project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Newest\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No announcements available\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No collections found\"],\"S8FeaY\":[\"No community templates yet. Share yours to get started.\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"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.\"],\"meAa31\":[\"No conversations yet\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"ax9iz4\":[\"No custom templates yet. Create one to get started.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"No specific focus\"],\"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}\"],\"kaDUQs\":[\"No templates yet. Create your own or browse All templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"No workspaces in this organisation yet.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Now\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"Dw7aQc\":[\"Only applies when report is published\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"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.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Open Documentation\"],\"QTXl9z\":[\"Open feedback portal\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Other hosts can see and copy your template. You can unpublish at any time.\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Pick date and time\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Pick one or more angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"lepv9z\":[\"Pin to chat bar\"],\"fr2ggG\":[\"pinned\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"Atb9XB\":[\"Pinned to chat bar\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"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\"],\"Tx36sk\":[\"Portal link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Prefer to chat directly? <0>Book a call with me\"],\"Q6hhn8\":[\"Preferences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"ANWB5x\":[\"Print this report\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Security\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy Statements\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projects Home\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"GwOmnT\":[\"Publish this report to enable printing\"],\"ZSi2AK\":[\"Publish this report to enable sharing\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"4R3R74\":[\"Published to community\"],\"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.\"],\"9iShh/\":[\"Quick Access (max 5)\"],\"utRRxm\":[\"Quick access is full (max 5)\"],\"dN0qso\":[\"Quick access:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Rate this prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"DqXVNZ\":[\"Ready to generate\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"844H5I\":[\"Regenerate Library\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevance\"],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Remove from favorites\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Remove from quick access\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"UZ6fKH\":[\"Report actions\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"mgTmvC\":[\"Report structure\"],\"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\"],\"uLZGK+\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Reset to default\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Resources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Run status:\"],\"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!\"],\"RgyKxd\":[\"Save Quick Access\"],\"5dVjYt\":[\"Save template\"],\"zaYZWH\":[\"Save to my templates\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scan or click 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\"],\"QS1Nla\":[\"Schedule for later\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Search conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Search webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Send a message to start an agentic run.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Share\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Share this report\"],\"lRZMol\":[\"Share with community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Share with the community\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Share your voice\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Show a link for participants to contribute\"],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Show duration\"],\"YbxwRo\":[\"Show generated suggestions\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Sign in with Google\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"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.\"],\"zazql1\":[\"Something went wrong generating your latest report. Showing your most recent completed report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"a75OAp\":[\"Something went wrong generating your report. You can try again below.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"vf1Tc/\":[\"Specific Details needs at least one conversation.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Start Recording\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Submitted via text input\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"aZJj7n\":[\"Suggest prompts based on your conversations\"],\"FyUg+Y\":[\"Suggest prompts based on your conversations. Try sending a message to see it in action.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"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\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Template prompt content...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal — it helps us fix things faster.\"],\"gtMB2A\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal. It helps us fix things faster than not submitting a report.\"],\"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.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"The issue reporter could not be loaded. Please use the feedback portal to tell us what went wrong — it helps us fix things faster.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"the project library.\"],\"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.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"This information is anonymized\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"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\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Time\"],\"Ww6cQ8\":[\"Time Created\"],\"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.\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Try Again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainian\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dFIzZ6\":[\"Unpin from chat bar\"],\"dx+iaL\":[\"Unpin project\"],\"KyKziT\":[\"Unpublish from community\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Update Report\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Updated\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Upload Audio\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Use\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"View read announcements\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"views\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"tCfopB\":[\"Want custom report structures?\"],\"VKMCO0\":[\"Want to add a template to \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"v8z9fL\":[\"Want to customize how your report looks?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"2ZUkkL\":[\"We're designing this feature and would love your input.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"ZsEVar\":[\"What should this report focus on?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"Ul3erb\":[\"What you can reach\"],\"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.\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Yours\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"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 26e5ef51f..51311fe88 100644 --- a/echo/frontend/src/locales/de-DE.po +++ b/echo/frontend/src/locales/de-DE.po @@ -740,11 +740,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:191 +#: src/components/chat/AgenticChatPanel.tsx:193 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:190 +#: src/components/chat/AgenticChatPanel.tsx:192 msgid "{name}'s transcript excerpt" msgstr "" @@ -1067,6 +1067,10 @@ msgstr "" msgid "A friendly name to identify this webhook" msgstr "Ein freundlicher Name, um diesen Webhook zu identifizieren" +#: src/components/project/ProjectExperimentalSection.tsx:52 +msgid "A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed." +msgstr "" + #: src/routes/project/report/ProjectReportRoute.tsx:564 msgid "A new report will be automatically generated and published at the scheduled time." msgstr "Ein neuer Bericht wird automatisch zum geplanten Zeitpunkt erstellt und veröffentlicht." @@ -1164,7 +1168,7 @@ msgstr "" #: src/routes/workspaces/CreateWorkspaceRoute.tsx:702 #: src/routes/project/CreateProjectRoute.tsx:256 #: src/routes/project/CreateProjectRoute.tsx:345 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:117 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:120 #: src/components/project/ProjectUsageAndSharing.tsx:190 #: src/components/layout/ProjectOverviewLayout.tsx:52 msgid "Access" @@ -1304,6 +1308,7 @@ msgstr "Aktive Filter" #: src/routes/organisation/OrganisationRoute.tsx:2054 #: src/routes/organisation/OrganisationRoute.tsx:2077 #: src/components/project/ProjectSharingModal.tsx:252 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:191 #: src/components/billing/BillingManager.tsx:1461 msgid "Add" msgstr "Hinzufügen" @@ -1464,6 +1469,7 @@ msgstr "Ihren ersten Webhook hinzufügen" #~ msgstr "Eigene Angabe" #: src/components/project/ProjectSharingModal.tsx:68 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:145 msgid "Added" msgstr "" @@ -1640,8 +1646,8 @@ msgstr "Erweiterte Einstellungen" #~ msgid "Agent is working..." #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:287 -#: src/components/chat/AgenticChatPanel.tsx:314 +#: src/components/chat/AgenticChatPanel.tsx:289 +#: src/components/chat/AgenticChatPanel.tsx:316 msgid "Agent run failed" msgstr "" @@ -1960,6 +1966,7 @@ msgstr "" #: src/components/view/CreateViewForm.tsx:153 #: src/components/goal/GoalSuggestionCard.tsx:122 #: src/components/common/ImageCropModal.tsx:148 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:223 #: src/components/chat/CanvasSuggestionCard.tsx:361 msgid "Apply" msgstr "Anwenden" @@ -2127,7 +2134,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1481 +#: src/components/chat/AgenticChatPanel.tsx:1494 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 "" @@ -2147,7 +2154,7 @@ msgstr "" msgid "Ask about your conversations, or type to find an earlier chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1739 +#: src/components/chat/AgenticChatPanel.tsx:1766 msgid "Ask about your conversations..." msgstr "" @@ -2471,6 +2478,7 @@ msgstr "Grundlegende Einstellungen" #: src/components/report/CreateReportForm.tsx:235 #: src/components/project/ProjectPortalEditor.tsx:1483 #: src/components/project/ProjectPortalEditor.tsx:1564 +#: src/components/project/ProjectExperimentalSection.tsx:48 #: src/components/conversation/RetranscribeConversation.tsx:151 #: src/components/chat/ChatModeSelector.tsx:158 #: src/components/chat/ChatModeBanner.tsx:45 @@ -2720,7 +2728,7 @@ msgstr "" #: src/components/common/ImageCropModal.tsx:145 #: src/components/common/FeedbackPortalModal.tsx:124 #: src/components/common/ConfirmModal.tsx:44 -#: src/components/chat/AgenticChatPanel.tsx:1708 +#: src/components/chat/AgenticChatPanel.tsx:1735 msgid "Cancel" msgstr "Abbrechen" @@ -2753,7 +2761,7 @@ msgstr "Abbrechen" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1696 +#: src/components/chat/AgenticChatPanel.tsx:1723 msgid "Cancel current run" msgstr "" @@ -2954,7 +2962,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:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Chat" msgstr "Chat" @@ -3019,7 +3027,7 @@ msgstr "" msgid "Checked {checkedAgo}. Nothing new since your last conversation. Updated {updatedAgo}." msgstr "" -#: src/components/chat/agenticToolActivity.ts:123 +#: src/components/chat/agenticToolActivity.ts:125 msgid "Checking live conversations" msgstr "" @@ -3433,7 +3441,7 @@ msgstr "Gesprächstags" msgid "conversations" msgstr "Gespräche" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:111 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:114 #: src/components/workspace/OrganisationProjectsTable.tsx:219 #: src/components/project/ProjectUsageAndSharing.tsx:453 #: src/components/conversation/ProjectConversationsPanel.tsx:725 @@ -3549,6 +3557,10 @@ msgstr "In die Zwischenablage kopieren" msgid "Copying..." msgstr "Kopieren..." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:102 +msgid "Could not apply all the tag changes." +msgstr "" + #: src/components/chat/ProjectUpdateSuggestionCard.tsx:182 msgid "Could not apply the changes. Nothing was saved." msgstr "" @@ -3635,7 +3647,7 @@ msgstr "" msgid "Could not save tags" msgstr "" -#: src/components/project/hooks/index.ts:450 +#: src/components/project/hooks/index.ts:460 msgid "Could not save the host guide" msgstr "" @@ -4421,6 +4433,7 @@ msgid "Dismiss" msgstr "" #: src/components/goal/GoalSuggestionCard.tsx:86 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:173 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:249 #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:113 #: src/components/chat/CanvasSuggestionCard.tsx:256 @@ -4481,7 +4494,7 @@ msgstr "" #: src/routes/onboarding/OnboardingRoute.tsx:525 #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 -#: src/components/chat/AgenticChatPanel.tsx:333 +#: src/components/chat/AgenticChatPanel.tsx:335 msgid "Done" msgstr "" @@ -4631,6 +4644,10 @@ msgstr "" #~ msgid "Earlier" #~ msgstr "Früher" +#: src/components/project/ProjectExperimentalSection.tsx:25 +msgid "Early features you can try on this project before they are ready for everyone." +msgstr "" + #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:1065 msgid "participant.button.echo" @@ -4949,7 +4966,7 @@ msgstr "Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein." msgid "Enter the current six-digit code from your authenticator app." msgstr "Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein." -#: src/components/chat/AgenticChatPanel.tsx:1756 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Enter to send, Shift+Enter for a new line" msgstr "" @@ -4978,8 +4995,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:371 -#: src/components/chat/AgenticChatPanel.tsx:338 -#: src/components/chat/AgenticChatPanel.tsx:1427 +#: src/components/chat/AgenticChatPanel.tsx:340 +#: src/components/chat/AgenticChatPanel.tsx:1440 msgid "Error" msgstr "Fehler" @@ -4999,10 +5016,10 @@ msgstr "Fehler beim Erstellen des Berichts" #~ msgid "Error loading insights" #~ msgstr "Fehler beim Laden der Erkenntnisse" -#: src/routes/project/ProjectRoutes.tsx:81 -#: src/routes/project/ProjectRoutes.tsx:168 -#: src/routes/project/ProjectRoutes.tsx:270 -#: src/routes/project/ProjectRoutes.tsx:309 +#: src/routes/project/ProjectRoutes.tsx:83 +#: src/routes/project/ProjectRoutes.tsx:177 +#: src/routes/project/ProjectRoutes.tsx:279 +#: src/routes/project/ProjectRoutes.tsx:318 msgid "Error loading project" msgstr "Fehler beim Laden des Projekts" @@ -5136,10 +5153,9 @@ msgstr "Vollbild verlassen" msgid "Expand workspaces" msgstr "" -#: src/components/report/UpdateReportModalButton.tsx:191 -#: src/components/report/CreateReportForm.tsx:198 -#~ msgid "Experimental" -#~ msgstr "Experimentell" +#: src/components/project/ProjectExperimentalSection.tsx:23 +msgid "Experimental" +msgstr "Experimentell" #: src/components/billing/BillingManager.tsx:182 msgid "Expired" @@ -5270,7 +5286,7 @@ msgstr "Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut." msgid "Failed to copy transcript. Please try again." msgstr "Transkript konnte nicht kopiert werden. Versuch es noch mal." -#: src/components/project/hooks/index.ts:583 +#: src/components/project/hooks/index.ts:593 msgid "Failed to create custom topic" msgstr "Benutzerdefiniertes Thema konnte nicht erstellt werden" @@ -5282,7 +5298,7 @@ msgstr "" msgid "Failed to delete chat" msgstr "" -#: src/components/project/hooks/index.ts:635 +#: src/components/project/hooks/index.ts:645 msgid "Failed to delete custom topic" msgstr "Benutzerdefiniertes Thema konnte nicht gelöscht werden" @@ -5294,7 +5310,7 @@ msgstr "" msgid "Failed to delete response" msgstr "Fehler beim Löschen der Antwort" -#: src/components/project/hooks/index.ts:331 +#: src/components/project/hooks/index.ts:341 msgid "Failed to delete tag" msgstr "" @@ -5423,15 +5439,15 @@ 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:1299 +#: src/components/chat/AgenticChatPanel.tsx:1312 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1258 +#: src/components/chat/AgenticChatPanel.tsx:1271 msgid "Failed to submit agentic message" msgstr "" -#: src/components/project/hooks/index.ts:610 +#: src/components/project/hooks/index.ts:620 msgid "Failed to update custom topic" msgstr "Benutzerdefiniertes Thema konnte nicht aktualisiert werden" @@ -5694,7 +5710,7 @@ msgstr "" #~ msgid "Forecast: ~{0}" #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:157 +#: src/components/chat/agenticToolActivity.ts:160 msgid "Forgetting a saved memory" msgstr "" @@ -6131,7 +6147,7 @@ msgstr "" msgid "Hide revision data" msgstr "Revisionsdaten verbergen" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Hide steps" msgstr "" @@ -6156,7 +6172,7 @@ msgid "host guide" msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:167 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:101 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:104 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:53 msgid "Host guide" msgstr "" @@ -6220,11 +6236,11 @@ msgstr "" #~ msgid "I accept the <0>terms" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1567 +#: src/components/chat/AgenticChatPanel.tsx:1594 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1583 +#: src/components/chat/AgenticChatPanel.tsx:1610 msgid "I applied the goal." msgstr "" @@ -6302,7 +6318,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1505 +#: src/components/chat/AgenticChatPanel.tsx:1518 msgid "Improve my setup" msgstr "" @@ -7017,7 +7033,7 @@ msgstr "" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 #: src/routes/project/library/LibraryRoute.tsx:132 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:94 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:97 msgid "Library" msgstr "Bibliothek" @@ -7086,7 +7102,7 @@ msgstr "Link zur Datenschutzerklärung Ihrer Organisation, die angezeigt wird" #~ msgid "LinkedIn Post (Experimental)" #~ msgstr "LinkedIn-Beitrag (Experimentell)" -#: src/components/chat/AgenticChatPanel.tsx:1495 +#: src/components/chat/AgenticChatPanel.tsx:1508 msgid "List my conversations" msgstr "" @@ -7094,15 +7110,15 @@ msgstr "" #~ msgid "List project conversations" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1496 +#: src/components/chat/AgenticChatPanel.tsx:1509 msgid "List the conversations in this project." msgstr "" -#: src/components/chat/agenticToolActivity.ts:121 +#: src/components/chat/agenticToolActivity.ts:123 msgid "Listing conversations" msgstr "" -#: src/components/chat/agenticToolActivity.ts:117 +#: src/components/chat/agenticToolActivity.ts:119 msgid "Listing documentation pages" msgstr "" @@ -7154,10 +7170,14 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:986 +#: src/components/chat/AgenticChatPanel.tsx:999 msgid "Live stream interrupted. Falling back to polling." msgstr "" +#: src/components/project/ProjectExperimentalSection.tsx:45 +msgid "Living canvas" +msgstr "" + #: src/components/chat/agenticToolActivity.ts:120 #~ msgid "Load conversation summary" #~ msgstr "" @@ -7233,7 +7253,7 @@ msgstr "" #~ msgid "Loading projects…" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1438 +#: src/components/chat/AgenticChatPanel.tsx:1451 msgid "Loading this chat..." msgstr "" @@ -7302,7 +7322,7 @@ msgstr "" msgid "Log out and use the invited email" msgstr "" -#: src/components/chat/agenticToolActivity.ts:160 +#: src/components/chat/agenticToolActivity.ts:163 msgid "Logging this with the dembrane team" msgstr "" @@ -8470,6 +8490,7 @@ msgid "Not available" msgstr "Nicht verfügbar" #: src/routes/invite/AcceptInviteRoute.tsx:568 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:214 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:353 msgid "Not now" msgstr "" @@ -8553,7 +8574,7 @@ msgstr "" msgid "Notify participants when a report is published." msgstr "Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird." -#: src/components/chat/agenticToolActivity.ts:149 +#: src/components/chat/agenticToolActivity.ts:152 msgid "Noting this for the dembrane team" msgstr "" @@ -8884,7 +8905,7 @@ msgstr "" msgid "Open the chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1414 +#: src/components/chat/AgenticChatPanel.tsx:1427 msgid "Open the old chat experience" msgstr "" @@ -9932,7 +9953,7 @@ msgstr "" #~ msgid "Preferences" #~ msgstr "Einstellungen" -#: src/components/chat/agenticToolActivity.ts:107 +#: src/components/chat/agenticToolActivity.ts:109 msgid "Preparing a navigation shortcut" msgstr "" @@ -10375,7 +10396,7 @@ msgstr "" #~ msgstr "Zitate" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:510 +#: src/components/chat/AgenticChatPanel.tsx:514 msgid "Ran {0} steps at once" msgstr "" @@ -10421,36 +10442,36 @@ msgid "Read-only" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:133 +#: src/components/chat/agenticToolActivity.ts:135 msgid "Reading {0}'s summary" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:138 +#: src/components/chat/agenticToolActivity.ts:140 msgid "Reading {0}'s transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:134 +#: src/components/chat/agenticToolActivity.ts:136 msgid "Reading a conversation summary" msgstr "" -#: src/components/chat/agenticToolActivity.ts:115 +#: src/components/chat/agenticToolActivity.ts:117 msgid "Reading a skill" msgstr "" -#: src/components/chat/agenticToolActivity.ts:139 +#: src/components/chat/agenticToolActivity.ts:141 msgid "Reading a transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:119 +#: src/components/chat/agenticToolActivity.ts:121 msgid "Reading project context" msgstr "" -#: src/components/chat/agenticToolActivity.ts:109 +#: src/components/chat/agenticToolActivity.ts:111 msgid "Reading project settings" msgstr "" -#: src/components/chat/agenticToolActivity.ts:113 +#: src/components/chat/agenticToolActivity.ts:115 msgid "Reading the documentation" msgstr "" @@ -10704,6 +10725,7 @@ msgstr "" #: src/components/organisation/InviteEmailList.tsx:58 #: src/components/memory/MemoryList.tsx:98 #: src/components/memory/MemoryList.tsx:118 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:199 msgid "Remove" msgstr "Entfernen" @@ -10787,6 +10809,10 @@ msgstr "" msgid "Remove this memory?" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:153 +msgid "Removed" +msgstr "" + #: src/routes/organisation/OrganisationRoute.tsx:522 msgid "Removed from organisation" msgstr "" @@ -10804,7 +10830,7 @@ msgstr "Umbenennen" #~ msgstr "Umbenennen" #: src/components/chat/ChatAccordion.tsx:158 -#: src/components/chat/AgenticChatPanel.tsx:1370 +#: src/components/chat/AgenticChatPanel.tsx:1383 msgid "Rename chat" msgstr "Chat umbenennen" @@ -10843,7 +10869,7 @@ msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:175 #: src/routes/project/report/ProjectReportRoute.tsx:185 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:106 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:109 #: src/components/report/ReportRenderer.tsx:75 #: src/components/report/ReportModalNavigationButton.tsx:92 msgid "Report" @@ -11146,7 +11172,7 @@ msgstr "" msgid "retracted for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:153 +#: src/components/chat/agenticToolActivity.ts:156 msgid "Retracting a note for the dembrane team" msgstr "" @@ -11225,7 +11251,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Dateien vor dem Hochladen überprüfen" -#: src/components/chat/AgenticChatPanel.tsx:1506 +#: src/components/chat/AgenticChatPanel.tsx:1519 msgid "Review my project settings and suggest improvements." msgstr "" @@ -11305,7 +11331,7 @@ msgstr "Zeilen pro Seite" #~ msgid "Run status:" #~ msgstr "Ausführungsstatus:" -#: src/components/chat/AgenticChatPanel.tsx:343 +#: src/components/chat/AgenticChatPanel.tsx:345 msgid "Running" msgstr "" @@ -11584,16 +11610,16 @@ msgstr "" msgid "Searched through the most relevant sources" msgstr "Durchsucht die relevantesten Quellen" -#: src/components/chat/agenticToolActivity.ts:129 +#: src/components/chat/agenticToolActivity.ts:131 msgid "Searching conversations" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:128 +#: src/components/chat/agenticToolActivity.ts:130 msgid "Searching conversations for \"{0}\"" msgstr "" -#: src/components/chat/agenticToolActivity.ts:111 +#: src/components/chat/agenticToolActivity.ts:113 msgid "Searching the documentation" msgstr "" @@ -11601,12 +11627,12 @@ msgstr "" #~ msgid "Searching through the most relevant sources" #~ msgstr "Durchsucht die relevantesten Quellen" -#: src/components/chat/agenticToolActivity.ts:144 +#: src/components/chat/agenticToolActivity.ts:146 msgid "Searching transcripts" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:143 +#: src/components/chat/agenticToolActivity.ts:145 msgid "Searching transcripts for \"{0}\"" msgstr "" @@ -11824,7 +11850,7 @@ msgid "Self-serve" msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:1024 -#: src/components/chat/AgenticChatPanel.tsx:1776 +#: src/components/chat/AgenticChatPanel.tsx:1803 msgid "Send" msgstr "Senden" @@ -11965,7 +11991,7 @@ msgstr "" #: src/features/sidebar/views/workspace/WorkspaceHomeView.tsx:80 #: src/features/sidebar/views/user/UserSettingsView.tsx:34 #: src/features/sidebar/views/project/ProjectSettingsView.tsx:18 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:129 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:132 #: src/features/sidebar/views/org/OrgSettingsView.tsx:26 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 @@ -12169,7 +12195,7 @@ msgstr "Referenzen anzeigen" msgid "Show revision data" msgstr "Revisionsdaten anzeigen" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Show steps" msgstr "" @@ -12608,6 +12634,10 @@ msgstr "" msgid "Suggested project goal" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:169 +msgid "Suggested tag changes for your project" +msgstr "" + #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:109 msgid "Suggested verification prompt" msgstr "" @@ -12617,15 +12647,15 @@ msgstr "" msgid "Suggested:" msgstr "Vorgeschlagen:" -#: src/components/chat/agenticToolActivity.ts:103 +#: src/components/chat/agenticToolActivity.ts:105 msgid "Suggesting a canvas" msgstr "" -#: src/components/chat/agenticToolActivity.ts:105 +#: src/components/chat/agenticToolActivity.ts:107 msgid "Suggesting a project goal" msgstr "" -#: src/components/chat/agenticToolActivity.ts:101 +#: src/components/chat/agenticToolActivity.ts:103 msgid "Suggesting a verification prompt" msgstr "" @@ -12633,6 +12663,10 @@ msgstr "" msgid "Suggesting project changes" msgstr "" +#: src/components/chat/agenticToolActivity.ts:101 +msgid "Suggesting tag changes" +msgstr "" + #: src/components/chat/templates.ts:26 msgid "Summarize" msgstr "Zusammenfassen" @@ -12737,7 +12771,7 @@ msgstr "System" msgid "System status" msgstr "" -#: src/components/project/hooks/index.ts:328 +#: src/components/project/hooks/index.ts:338 msgid "Tag deleted" msgstr "" @@ -12755,6 +12789,14 @@ msgstr "Tags" #~ msgid "Tags (max 3)" #~ msgstr "Tags (max. 3)" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:180 +msgid "Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply." +msgstr "" + +#: src/components/chat/TagsUpdateSuggestionCard.tsx:99 +msgid "Tags updated. You can fine-tune them anytime in the portal editor." +msgstr "" + #: src/routes/invite/AcceptInviteRoute.tsx:483 #: src/routes/invite/AcceptInviteRoute.tsx:523 msgid "Take me to {resolvedWorkspaceName}" @@ -13127,6 +13169,10 @@ msgstr "Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bi msgid "These settings are read-only. Only organisation administrators can modify project defaults." msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:132 +msgid "These tag changes are applied to your project." +msgstr "" + #: src/components/invite/InviteModal.tsx:654 msgid "These workspaces are billed separately. Each person you add takes a seat in {billingContextCount} billing contexts, each invoiced on its own." msgstr "" @@ -13263,7 +13309,7 @@ msgstr "Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesen msgid "This is not saved yet." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1402 +#: src/components/chat/AgenticChatPanel.tsx:1415 msgid "This is the new chat experience" msgstr "" @@ -13608,11 +13654,11 @@ msgstr "Zu lang" msgid "Tool" msgstr "" -#: src/components/project/hooks/index.ts:591 +#: src/components/project/hooks/index.ts:601 msgid "Topic created successfully" msgstr "Thema erfolgreich erstellt" -#: src/components/project/hooks/index.ts:643 +#: src/components/project/hooks/index.ts:653 msgid "Topic deleted successfully" msgstr "Thema erfolgreich gelöscht" @@ -13620,7 +13666,7 @@ msgstr "Thema erfolgreich gelöscht" msgid "Topic label" msgstr "Themenbezeichnung" -#: src/components/project/hooks/index.ts:618 +#: src/components/project/hooks/index.ts:628 msgid "Topic updated successfully" msgstr "Thema erfolgreich aktualisiert" @@ -13705,7 +13751,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribieren..." -#: src/components/chat/AgenticChatPanel.tsx:194 +#: src/components/chat/AgenticChatPanel.tsx:196 msgid "transcript" msgstr "" @@ -13721,7 +13767,7 @@ msgstr "Transkript" msgid "Transcript copied to clipboard" msgstr "Transkript in die Zwischenablage kopiert" -#: src/components/chat/AgenticChatPanel.tsx:193 +#: src/components/chat/AgenticChatPanel.tsx:195 msgid "transcript excerpt" msgstr "" @@ -14185,15 +14231,15 @@ msgstr "" #~ msgid "Updates every few minutes." #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:151 +#: src/components/chat/agenticToolActivity.ts:154 msgid "Updating a note for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:155 +#: src/components/chat/agenticToolActivity.ts:158 msgid "Updating a saved memory" msgstr "" -#: src/components/chat/agenticToolActivity.ts:146 +#: src/components/chat/agenticToolActivity.ts:149 msgid "Updating project tags" msgstr "" @@ -14369,7 +14415,7 @@ msgstr "URL ist erforderlich" msgid "URL must start with http:// or https://" msgstr "URL muss mit http:// oder https:// beginnen" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:122 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:125 #: src/features/sidebar/views/org/OrgSettingsView.tsx:37 #: src/components/project/ProjectUsageAndSharing.tsx:415 #: src/components/layout/ProjectOverviewLayout.tsx:53 @@ -14896,7 +14942,7 @@ msgstr "Webhooks" msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \"Benachrichtigungssystem\" für Ihre anderen Tools." -#: src/routes/project/ProjectRoutes.tsx:182 +#: src/routes/project/ProjectRoutes.tsx:191 msgid "Webhooks are not enabled for this environment." msgstr "" @@ -15003,11 +15049,11 @@ msgstr "Was soll ECHO aus den Gesprächen analysieren oder generieren?" #~ msgid "What should this report focus on?" #~ msgstr "Worauf soll sich dieser Bericht konzentrieren?" -#: src/components/chat/AgenticChatPanel.tsx:1501 +#: src/components/chat/AgenticChatPanel.tsx:1514 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1500 +#: src/components/chat/AgenticChatPanel.tsx:1513 msgid "What themes came up?" msgstr "" @@ -15093,7 +15139,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:358 -#: src/components/chat/AgenticChatPanel.tsx:1478 +#: src/components/chat/AgenticChatPanel.tsx:1491 msgid "Where would you like to start?" msgstr "" @@ -15160,15 +15206,15 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:511 +#: src/components/chat/AgenticChatPanel.tsx:515 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1332 +#: src/components/chat/AgenticChatPanel.tsx:1345 msgid "Working on your answer..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:506 +#: src/components/chat/AgenticChatPanel.tsx:510 msgid "Working..." msgstr "" diff --git a/echo/frontend/src/locales/de-DE.ts b/echo/frontend/src/locales/de-DE.ts index b9377015e..a4aaaa73e 100644 --- a/echo/frontend/src/locales/de-DE.ts +++ b/echo/frontend/src/locales/de-DE.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"participant.anonymization.notice\":[\"Ihre Transkription wird anonymisiert und Ihr Host kann Ihre Aufnahme nicht anhören.\"],\"announcements\":[\"Ankündigungen\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"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\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Gespräche • Bearbeitet \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"uSTZVH\":[[\"conversationTotal\"],\" enthalten\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 enthalten\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 Aufruf\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ Mitglieder haben sich angemeldet\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"L9boOH\":[\"2. Wenn ein Gesprächs- oder Berichtereignis eintritt, senden wir die Daten automatisch an deine URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"Konto & Sicherheit\"],\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Zu Favoriten hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"MIWKYQ\":[\"Zum Schnellzugriff 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\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"DtI2tD\":[\"Eigene Angabe\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"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\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Werkzeuggetriebene Ausführung\"],\"VHg3DX\":[\"Agentischer Chat\"],\"N40H+G\":[\"Alle\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"Alle Vorlagen\"],\"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?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"zqhMd0\":[\"Ein unerwarteter Fehler ist aufgetreten. Neu laden oder zur Startseite zurückkehren hilft meistens.\"],\"QX6zrA\":[\"Analyse\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Transkript anonymisieren\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"YdiKaK\":[\"Anonymisierte Unterhaltung\"],\"iPiP6k\":[\"Anonymisierte Unterhaltung\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymer Host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Erscheinungsbild\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Anwenden\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Vorlage anwenden\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"ELQ+fw\":[\"Bist du sicher, dass du diesen Bericht löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"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?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"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.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistent schreibt...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio-Wiedergabe nicht verfügbar für anonymisierte Unterhaltungen\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio-Tipp\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Beginnen!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Buchen Sie einen Anruf, um Ihr Feedback zu teilen\"],\"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.\"],\"CzeGfZ\":[\"Vorlagen durchsuchen und mit anderen Hosts teilen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Integriert\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"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?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Planung abbrechen\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat-Name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Quellen zitieren\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"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\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Bald verfügbar — teilen Sie Ihr Feedback\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community-Vorlagen\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"CfO59/\":[\"Vergleichen & Gegenüberstellen Insights\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Konkrete Themen\"],\"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\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"4b3oEV\":[\"Inhalt\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"JX3KT4\":[\"Kontextbezogene Vorschläge\"],\"xGVfLh\":[\"Weiter\"],\"participant.button.continue\":[\"Weiter\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"Gespräch\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"Np+C87\":[\"Gespräche:\"],\"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\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Berichtsinhalt kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"RGCCrg\":[\"Freigabelink kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Konto erstellen\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"uVzvzz\":[\"Jetzt erstellen\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Bericht erstellen\"],\"A5hiCy\":[\"Vorlage erstellen\"],\"s7XwOU\":[\"Vorlage erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Erstellt \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Erstellt am\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Avatar zuschneiden\"],\"udBqWc\":[\"Bild zuschneiden\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Logo zuschneiden\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"Pn2B7/\":[\"Aktuelles Passwort\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"benutzerdefiniert\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Passen Sie die Struktur Ihres Berichts an. Diese Funktion kommt bald.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Benutzerdefiniertes Thema löschen\"],\"mp235G\":[\"Projekt löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"rUWrSE\":[\"Bericht löschen\"],\"MlrelG\":[\"Bericht löschen\"],\"qr0gpK\":[\"Tag löschen\"],\"DFjdv0\":[\"Vorlage löschen\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"QMogcD\":[\"Antwort\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Beschreibe, wofür diese Vorlage nützlich ist...\"],\"Fs/0D5\":[\"Beschreiben Sie, was die Sprachmodell aus dem Gespräch extrahieren oder zusammenfassen soll...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Bestimmt, unter welcher GDPR-Rechtsgrundlage personenbezogene Daten verarbeitet werden. Dies beeinflusst die Einwilligungsflüsse, die Rechte der Betroffenen und die Aufbewahrungspflichten.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Kontextbezogene Vorschläge im Chat anzeigen\"],\"pfa8F0\":[\"Anzeigename\"],\"vU/Hht\":[\"Verteilung\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"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\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"z.B. morgen um 9:00\"],\"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.\"],\"5oD9f/\":[\"Früher\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"bearbeiten\"],\"ePK91l\":[\"Bearbeiten\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"Y/3VME\":[\"Benutzerdefiniertes Thema bearbeiten\"],\"VFvVc6\":[\"Edit details\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Bearbeitungsmodus\"],\"niSWGL\":[\"Optionen bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"gGx5tM\":[\"Bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"E-Mail-Verifizierung | dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji, das neben dem Thema angezeigt wird, z.B. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"dashboard.dembrane.feature.verify.description\":[\"Aktivieren Sie diese Funktion, damit Teilnehmer \\\"Ergebnisse\\\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Aktuelles Passwort eingeben\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"VpwcSk\":[\"Neues Passwort eingeben\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"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.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"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\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"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\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"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.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"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\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Finde Widersprüche und vorschlage Folgefragen\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Beendet\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"Vorname\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Fokus\"],\"wD4aF6\":[\"Fokussiere deinen Bericht (optional)\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Passwort vergessen?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"von \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"3qkggm\":[\"Vollbild\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generieren\"],\"EIdJgG\":[\"Neuen Bericht erstellen\"],\"oADIO6\":[\"Erstelle einen neuen Bericht. Frühere Berichte bleiben verfügbar.\"],\"QsUhrf\":[\"Bericht erstellen\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"MWSGhX\":[\"Bibliothek generieren\"],\"5SWGxv\":[\"Jetzt erstellen\"],\"GWUJ9X\":[\"Stattdessen jetzt erstellen\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"DXr0zk\":[\"Vollbild\"],\"iWpEwy\":[\"Zur Startseite\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Zum Feedback-Portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Rasteransicht\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"uMjvI3\":[\"Bericht anleiten\"],\"myXGZW\":[\"Angeleitet\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Bestimmtes Konzept hervorheben\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Startseite\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portal-Link einschließen\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"NxHkkp\":[\"Anweisungen\"],\"MSVCjk\":[\"Anweisungen für die Generierung des Verifizierungsergebnisses\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP-Adresse\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"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.\"],\"JsWQuM\":[\"Es sieht so aus, als hättest du noch keinen Bericht für dieses Projekt. Erstelle einen, um einen Überblick über deine Gespräche zu erhalten. Du kannst den Bericht optional auf ein bestimmtes Thema fokussieren.\"],\"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.\"],\"Lj7sBL\":[\"Italienisch\"],\"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.\"],\"GaQMyV\":[\"Treten Sie \",[\"0\"],\" auf dembrane bei\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Tritt dem Slack-Community bei\"],\"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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Einen Moment bitte\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"Gerade eben\"],\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Sprache\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Neueste\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"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\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"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\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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.\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Wird geladen\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Anmelden\"],\"LM/dWU\":[\"Anmelden | dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo entfernt\"],\"MjfaMh\":[\"Logo aktualisiert\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Abmelden\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Längste zuerst\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Meine\"],\"b85Pfh\":[\"Mindestens 8 Zeichen\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"weitere\"],\"JcD7qf\":[\"Weitere Aktionen\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"y1ypMV\":[\"Beliebteste\"],\"7BgchI\":[\"Meistgenutzt\"],\"QWdKwH\":[\"Verschieben\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Muss mindestens 10 Minuten in der Zukunft liegen\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Meine Vorlagen\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"Neue Gespräche verfügbar — aktualisiere deinen Bericht\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"3RC8Um\":[\"Seit deinem letzten Bericht wurden neue Gespräche hinzugefügt. Erstelle einen aktualisierten Bericht, um sie einzubeziehen. Dein vorheriger Bericht bleibt verfügbar.\"],\"QgiaQ8\":[\"Neues Datum und Uhrzeit\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"Neues Passwort\"],\"7vhWI8\":[\"Neues Passwort\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"Neues Projekt\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Neuer Bericht\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Neueste\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Neueste zuerst\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"S8FeaY\":[\"Noch keine Community-Vorlagen. Teile deine, um loszulegen.\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"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.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Noch keine Gesprache. Sie konnen jetzt einen Bericht planen und Gesprache werden aufgenommen, sobald sie hinzugefugt werden.\"],\"ax9iz4\":[\"Noch keine Vorlagen. Erstelle eine, um loszulegen.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"1iQvuD\":[\"Noch keine Berichte\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"Kein bestimmter Fokus\"],\"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\"],\"kaDUQs\":[\"Noch keine Vorlagen. Erstellen Sie eine eigene oder durchsuchen Sie Alle Vorlagen.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"Noch keine Workspaces in dieser Organisation.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Jetzt\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Laufend\"],\"conversation.ongoing\":[\"Laufend\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"Dw7aQc\":[\"Gilt nur, wenn der Bericht veröffentlicht ist\"],\"a//PzZ\":[\"Ändern Sie diese Einstellung nur in Absprache mit den verantwortlichen Personen für die Datenschutzverantwortung in Ihrer Organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"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.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"QTXl9z\":[\"Feedback-Portal öffnen\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls auf Englisch zurückgegriffen wird)\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Andere Hosts können deine Vorlage sehen und kopieren. Du kannst sie jederzeit zurückziehen.\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Datum und Uhrzeit wählen\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Wählen Sie einen oder mehrere Blickwinkel\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Anheften\"],\"u8qC4w\":[\"Projekt anheften\"],\"S+WiJ3\":[\"Vorlagen hier für schnellen Zugriff anheften.\"],\"lepv9z\":[\"An Chatleiste anheften\"],\"fr2ggG\":[\"angeheftet\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Angeheftet ist voll (max. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Angeheftete Vorlagen\"],\"Atb9XB\":[\"An Chatleiste angeheftet\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"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)\"],\"gEEhkM\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Record\\\" 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.\"],\"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.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"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\"],\"Tx36sk\":[\"Portal-Link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Lieber direkt sprechen? <0>Buchen Sie einen Termin mit mir\"],\"Q6hhn8\":[\"Einstellungen\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/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.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"S8ugMC\":[\"Bericht drucken\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Datenschutz und Sicherheit\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projekt erstellt\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Projektstandard: aktiviert. Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"Projektstandards\"],\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Projektübersicht | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projekte Startseite\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"vsX8VJ\":[\"Veröffentlichen Sie diesen Bericht, um den Portal-Link anzuzeigen\"],\"GwOmnT\":[\"Veröffentlichen Sie diesen Bericht, um das Drucken zu ermöglichen\"],\"ZSi2AK\":[\"Veröffentlichen Sie diesen Bericht, um das Teilen zu ermöglichen\"],\"IHzoSN\":[\"Veröffentlichen Sie diesen Bericht, um einen Freigabelink zu erhalten\"],\"u3wRF+\":[\"Veröffentlicht\"],\"4R3R74\":[\"In der Community 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.\"],\"9iShh/\":[\"Schnellzugriff (max. 5)\"],\"utRRxm\":[\"Schnellzugriff ist voll (max 5)\"],\"dN0qso\":[\"Schnellzugriff:\"],\"eWLklq\":[\"Zitate\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Diesen Prompt bewerten:\"],\"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 →\"],\"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\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"DqXVNZ\":[\"Bereit zur Generierung\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.s3check.reconnect\":[\"Erneut verbinden\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Neu generieren\"],\"844H5I\":[\"Bibliothek 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\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"/PACVa\":[\"Versionshinweise\"],\"7dZnmw\":[\"Relevanz\"],\"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\"],\"hTDMBB\":[\"Seite neu laden\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Profilbild entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Aus Favoriten entfernen\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Aus Schnellzugriff entfernen\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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?\"],\"nVEhnc\":[\"Removed from organisation\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"6PsaMr\":[\"Chat umbenennen\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Antwort Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Bericht\"],\"UZ6fKH\":[\"Berichtsaktionen\"],\"e/MQa5\":[\"Bericht wird bereits erstellt\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"hh/mvZ\":[\"Berichtserstellung abgebrochen\"],\"sSy8vA\":[\"Bericht wird erstellt...\"],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"v7O77U\":[\"Die Berichtserstellung wurde abgebrochen. Du kannst unten einen neuen Bericht starten.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"M9snPp\":[\"Bericht geplant\"],\"mgTmvC\":[\"Berichtsstruktur\"],\"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\"],\"uLZGK+\":[\"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\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"TMLAx2\":[\"Erforderlich\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Umplanen\"],\"6eIR/n\":[\"Umplanen auf\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"9uplIY\":[\"Passwort zurücksetzen | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Ressourcen\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Ausführungsstatus:\"],\"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!\"],\"RgyKxd\":[\"Schnellzugriff speichern\"],\"5dVjYt\":[\"Vorlage speichern\"],\"zaYZWH\":[\"In meine Vorlagen speichern\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Speichern...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scannen oder klicken, um das Feedbackportal zu offnen\"],\"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\"],\"QS1Nla\":[\"Für später planen\"],\"wCGy0o\":[\"Bericht planen\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Suche und wähle die Gespräche für diesen Chat aus.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Gespräche suchen\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"Bis bald\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segmente\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Senden\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Einen Nachricht senden, um einen agentischen Lauf zu starten.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Stimmung\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Sitzungsname\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Teilen\"],\"OuFYHU\":[\"Bericht teilen\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"lRZMol\":[\"Mit Community teilen\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Mit der Community teilen\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"nnWGzO\":[\"Teilen Sie Ihre Ideen mit unserem Team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"4o0klJ\":[\"Teilen Sie Ihre Stimme, indem Sie den QR-Code scannen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Zeigen Sie einen Link an, über den Teilnehmer beitragen können\"],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"YbxwRo\":[\"Generierte Vorschläge anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"8Lpud3\":[\"Ihr zuletzt fertiggestellter Bericht wird angezeigt.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"6Uau97\":[\"Überspringen\"],\"participant.button.verify_prompt.skip\":[\"Überspringen\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack-Community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"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.\"],\"zazql1\":[\"Beim Erstellen deines neuesten Berichts ist etwas schiefgelaufen. Dein letzter abgeschlossener Bericht wird angezeigt.\"],\"2WNFmv\":[\"Beim Erstellen Ihres Berichts ist etwas schiefgelaufen.\"],\"a75OAp\":[\"Beim Erstellen deines Berichts ist etwas schiefgelaufen. Du kannst es unten erneut versuchen.\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"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\"]],\"u7yVRn\":[\"Quellen:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"vf1Tc/\":[\"Specific Details benötigt mindestens ein Gespräch.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Aufnahme starten\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Erfolg\"],\"aG+cH9\":[\"Dynamische Vorschläge basierend auf Ihrem Gespräch vorschlagen.\"],\"aZJj7n\":[\"Vorschläge basierend auf Ihren Gesprächen\"],\"FyUg+Y\":[\"Vorschläge basierend auf Ihren Gesprächen. Senden Sie eine Nachricht, um es auszuprobieren.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"6xSPmn\":[\"Suggested project goal\"],\"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\"],\"F1nkJm\":[\"Zusammenfassen\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max. 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Vorlagen-Prompt-Inhalt...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Vorlagen\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"Der integrierte Fehlerbericht konnte nicht geladen werden. Sie können uns trotzdem über unser Feedback-Portal mitteilen, was schiefgelaufen ist. Es hilft uns, Probleme schneller zu beheben, als keinen Bericht einzureichen.\"],\"gtMB2A\":[\"Der integrierte Fehlerbericht konnte nicht geladen werden. Sie können uns trotzdem über unser Feedback-Portal mitteilen, was schiefgelaufen ist. Es hilft uns, Probleme schneller zu beheben, als keinen Bericht einzureichen.\"],\"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.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"Der Fehlerbericht konnte nicht geladen werden. Bitte verwenden Sie das Feedback-Portal, um uns mitzuteilen, was schiefgelaufen ist. Es hilft uns, Probleme schneller zu beheben, als keinen Bericht einzureichen.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"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.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"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.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"Diese Informationen sind anonymisiert\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"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.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Uhrzeit\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"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.\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribieren...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Erneut versuchen\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainisch\"],\"dubg//\":[\"Ukrainisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Loslösen\"],\"vSdeRU\":[\"Löse zuerst ein Projekt (max. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Löse zuerst ein Projekt (max. 3)\"],\"dFIzZ6\":[\"Von Chatleiste loslösen\"],\"dx+iaL\":[\"Projekt lösen\"],\"KyKziT\":[\"Aus Community entfernen\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Aktualisiert\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Audio hochladen\"],\"AIGPM8\":[\"Avatar hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Verwenden\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verifizierungsthemen\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verifizierte Artefakte\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Ansicht\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"Gelesene Ankündigungen anzeigen\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"Aufrufe\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Warten auf den Abschluss der Gespräche, bevor ein Bericht erstellt wird.\"],\"tCfopB\":[\"Möchten Sie benutzerdefinierte Berichtsstrukturen?\"],\"VKMCO0\":[\"Willst du ein Template zu „dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"v8z9fL\":[\"Möchten Sie das Aussehen Ihres Berichts anpassen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"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.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"2ZUkkL\":[\"Wir gestalten diese Funktion und würden uns über Ihr Feedback freuen.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Willkommen bei dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"pVIWuw\":[\"Was soll ECHO aus den Gesprächen analysieren oder generieren?\"],\"ZsEVar\":[\"Worauf soll sich dieser Bericht konzentrieren?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"Ul3erb\":[\"What you can reach\"],\"3ePd3I\":[\"Was ist neu?\"],\"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.\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"ORA5nz\":[\"Sie können es unten erneut versuchen.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Ihr Name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Deine\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"ACjxWW\":[\"Zoom\"],\"IDeRjd\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"GSQ8We\":[\"Echo aktivieren\"],\"GpCBCW\":[\"ECHO aktivieren\"],\"IHqkFL\":[\"Antwort aktivieren\"],\"7DwYDY\":[\"Enable Verify\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Tiefer eintauchen\"],\"participant.button.make.concrete\":[\"Konkret machen\"],\"select.all.modal.skip.reason\":[\"einige könnten aufgrund von leerem Transkript oder Kontextlimit übersprungen werden\"],\"participant.modal.interruption.issue.description\":[\"Wir haben deine Aufnahme bis <0>\",[\"formattedDuration\"],\" gespeichert, aber den Rest leider verloren. <1/> Drücke unten, um dich erneut zu verbinden, und dann auf Aufnahme, um fortzufahren.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Tiefer eintauchen\"],\"participant.modal.refine.info.title.concrete\":[\"Konkret machen\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Verfeinern\\\" bald verfügbar\"],\"participant.modal.refine.info.title\":[\"Funktion bald verfügbar\"],\"participant.refine.go.deeper\":[\"Tiefer eintauchen\"],\"participant.concrete.artefact.error.description\":[\"Fehler beim Laden des Artefakts. Versuch es gleich nochmal.\"],\"dashboard.dembrane.concrete.title\":[\"Konkrete Themen\"],\"participant.refine.make.concrete\":[\"Konkret machen\"],\"participant.button.refine\":[\"Verfeinern\"],\"participant.concrete.regenerating.artefact\":[\"Artefakt wird neu erstellt…\"],\"dashboard.dembrane.concrete.topic.select\":[\"Wähl ein konkretes Thema aus.\"],\"participant.go.deeper.generic.error.message\":[\"Da ist was schiefgelaufen. Versuch es gleich nochmal.\"],\"participant.concrete.artefact.error.title\":[\"Artefakt konnte nicht geladen werden\"],\"participant.modal.refine.info.reason\":[\"Wir brauchen etwas mehr Kontext, um dir effektiv beim Verfeinern zu helfen. Bitte nimm weiter auf, damit wir dir bessere Vorschläge geben können.\"],\"dashboard.dembrane.concrete.description\":[\"Aktiviere diese Funktion, damit Teilnehmende konkrete Ergebnisse aus ihrem Gespräch erstellen können. Sie können nach der Aufnahme ein Thema auswählen und gemeinsam ein Artefakt erstellen, das ihre Ideen festhält.\"],\"participant.concrete.instructions.approve.artefact\":[\"Gib dieses Artefakt frei, wenn es für dich passt.\"],\"participant.concrete.instructions.loading\":[\"Anweisungen werden geladen…\"],\"participant.concrete.selection.button.next\":[\"Weiter\"],\"participant.concrete.instructions.button.next\":[\"Weiter\"],\"participant.concrete.instructions.revise.artefact\":[\"Überarbeite den Text, bis er zu dir passt.\"],\"participant.concrete.instructions.read.aloud\":[\"Lies den Text laut vor.\"],\"dashboard.dembrane.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer zur Überprüfung verwenden können.\"],\"participant.concrete.selection.title\":[\"Was möchtest du konkret machen?\"],\"participant.concrete.instructions.receive.artefact\":[\"Du bekommst gleich \",[\"objectLabel\"],\" zum Verifizieren.\"],\"participant.concrete.instructions.approval.helps\":[\"Deine Freigabe hilft uns zu verstehen, was du wirklich denkst!\"],\"participant.anonymization.notice\":[\"Ihre Transkription wird anonymisiert und Ihr Host kann Ihre Aufnahme nicht anhören.\"],\"announcements\":[\"Ankündigungen\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(für verbesserte Audioverarbeitung)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" bereit\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"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\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Gespräche • Bearbeitet \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"uSTZVH\":[[\"conversationTotal\"],\" enthalten\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\" Tage zuvor\"],\"bT6AxW\":[[\"diffInHours\"],\" Stunden zuvor\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" Sekunden\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Warte \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 enthalten\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 Aufruf\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ Mitglieder haben sich angemeldet\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. Wenn ein Gesprächereignis auftritt, senden wir die Gesprächdaten automatisch an Ihre URL\"],\"L9boOH\":[\"2. Wenn ein Gesprächs- oder Berichtereignis eintritt, senden wir die Daten automatisch an deine URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"Konto & Sicherheit\"],\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Zu Favoriten hinzufügen\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"MIWKYQ\":[\"Zum Schnellzugriff 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\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"DtI2tD\":[\"Eigene Angabe\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Kontext wird hinzugefügt:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"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\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Erweitert (Tipps und Tricks)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Werkzeuggetriebene Ausführung\"],\"VHg3DX\":[\"Agentischer Chat\"],\"N40H+G\":[\"Alle\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"Cmt62w\":[\"Alle Gespräche bereit\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"baQJ1t\":[\"Alle Erkenntnisse\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"Alle Vorlagen\"],\"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?\"],\"G54oFr\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"zqhMd0\":[\"Ein unerwarteter Fehler ist aufgetreten. Neu laden oder zur Startseite zurückkehren hilft meistens.\"],\"QX6zrA\":[\"Analyse\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Transkript anonymisieren\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"YdiKaK\":[\"Anonymisierte Unterhaltung\"],\"iPiP6k\":[\"Anonymisierte Unterhaltung\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymer Host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Erscheinungsbild\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Anwenden\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Vorlage anwenden\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten?\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"B8ymes\":[\"Sind Sie sicher, dass Sie diese Aufnahme löschen möchten?\"],\"ELQ+fw\":[\"Bist du sicher, dass du diesen Bericht löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"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?\"],\"xu5cdS\":[\"Sind Sie sicher, dass Sie fertig sind?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"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.\"],\"JHgUuT\":[\"Artefakt erfolgreich freigegeben!\"],\"IbpaM+\":[\"Artefakt erfolgreich neu geladen!\"],\"Qcm/Tb\":[\"Artefakt erfolgreich überarbeitet!\"],\"uCzCO2\":[\"Artefakt erfolgreich aktualisiert!\"],\"KYehbE\":[\"Artefakte\"],\"jrcxHy\":[\"Artefakte\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Teilnehmer bitten, ihren Namen anzugeben, wenn sie ein Gespräch beginnen\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistent schreibt...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"Wähle mindestens ein Thema, um Konkret machen zu aktivieren\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio-Wiedergabe nicht verfügbar für anonymisierte Unterhaltungen\"],\"DMBYlw\":[\"Audioverarbeitung wird durchgeführt\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audioaufnahmen werden 30 Tage nach dem Aufnahmedatum gelöscht\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio-Tipp\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Automatisch auswählen\"],\"3D5FPO\":[\"Automatisch auswählen deaktiviert\"],\"ajAMbT\":[\"Automatisch auswählen aktiviert\"],\"jEqKwR\":[\"Quellen automatisch auswählen, um dem Chat hinzuzufügen\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Relevante Gespräche automatisch für die Analyse ohne manuelle Auswahl einschließt\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"csDS2L\":[\"Verfügbar\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Beginnen!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture – Themen & Muster\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Buchen Sie einen Anruf, um Ihr Feedback zu teilen\"],\"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.\"],\"CzeGfZ\":[\"Vorlagen durchsuchen und mit anderen Hosts teilen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Integriert\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie ABSOLUT sicher, dass Sie dieses Projekt löschen möchten?\"],\"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?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Planung abbrechen\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Änderungen werden automatisch gespeichert, während Sie die App weiter nutzen. <0/>Sobald Sie ungespeicherte Änderungen haben, können Sie überall klicken, um die Änderungen zu speichern. <1/>Sie sehen auch einen Button zum Abbrechen der Änderungen.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat-Name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Überprüfe...\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Quellen zitieren\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"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\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Bald verfügbar — teilen Sie Ihr Feedback\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community-Vorlagen\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"CfO59/\":[\"Vergleichen & Gegenüberstellen Insights\"],\"jlZul5\":[\"Vergleichen und stellen Sie die folgenden im Kontext bereitgestellten Elemente gegenüber.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Konkrete Themen\"],\"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\"],\"p2/GCq\":[\"Passwort bestätigen\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Kontakt zu Verkaufsvertretern\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Kontaktieren Sie Ihren Verkaufsvertreter, um diese Funktion heute zu aktivieren!\"],\"4b3oEV\":[\"Inhalt\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"aVvy3Y\":[\"Kontextlimit erreicht\"],\"JX3KT4\":[\"Kontextbezogene Vorschläge\"],\"xGVfLh\":[\"Weiter\"],\"participant.button.continue\":[\"Weiter\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"Gespräch\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"ggJDqH\":[\"Audio der Konversation\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"BsHMTb\":[\"Gespräch beendet\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Gespräch wird verarbeitet\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"7Ljafh\":[\"Gesprächstags\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"TQ8ecW\":[\"Gespräche aus QR-Code\"],\"nmB3V3\":[\"Gespräche aus Upload\"],\"Np+C87\":[\"Gespräche:\"],\"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\"],\"Dj+aS5\":[\"Link zum Teilen dieses Berichts kopieren\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Berichtsinhalt kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"RGCCrg\":[\"Freigabelink kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"rG2gDo\":[\"Transkript kopieren\"],\"OvEjsP\":[\"Kopieren...\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Konto erstellen\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Bibliothek erstellen\"],\"O671Oh\":[\"Bibliothek erstellen\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"vY2Gfm\":[\"Neue Ansicht erstellen\"],\"uVzvzz\":[\"Jetzt erstellen\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Bericht erstellen\"],\"A5hiCy\":[\"Vorlage erstellen\"],\"s7XwOU\":[\"Vorlage erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Erstellt \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Erstellt am\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Avatar zuschneiden\"],\"udBqWc\":[\"Bild zuschneiden\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Logo zuschneiden\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"Pn2B7/\":[\"Aktuelles Passwort\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"benutzerdefiniert\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Passen Sie die Struktur Ihres Berichts an. Diese Funktion kommt bald.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"Gefahrenbereich\"],\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Benutzerdefiniertes Thema löschen\"],\"mp235G\":[\"Projekt löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"rUWrSE\":[\"Bericht löschen\"],\"MlrelG\":[\"Bericht löschen\"],\"qr0gpK\":[\"Tag löschen\"],\"DFjdv0\":[\"Vorlage löschen\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane läuft mit KI. Prüf die Antworten noch mal gegen.\"],\"QMogcD\":[\"Antwort\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Beschreibe, wofür diese Vorlage nützlich ist...\"],\"Fs/0D5\":[\"Beschreiben Sie, was die Sprachmodell aus dem Gespräch extrahieren oder zusammenfassen soll...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Bestimmt, unter welcher GDPR-Rechtsgrundlage personenbezogene Daten verarbeitet werden. Dies beeinflusst die Einwilligungsflüsse, die Rechte der Betroffenen und die Aufbewahrungspflichten.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Kontextbezogene Vorschläge im Chat anzeigen\"],\"pfa8F0\":[\"Anzeigename\"],\"vU/Hht\":[\"Verteilung\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Möchten Sie zu diesem Projekt beitragen?\"],\"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\"],\"5154Ap\":[\"Alle Transkripte herunterladen\"],\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"z.B. morgen um 9:00\"],\"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.\"],\"5oD9f/\":[\"Früher\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"o6tfKZ\":[\"ECHO wird durch AI unterstützt. Bitte überprüfen Sie die Antworten.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"bearbeiten\"],\"ePK91l\":[\"Bearbeiten\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"Y/3VME\":[\"Benutzerdefiniertes Thema bearbeiten\"],\"VFvVc6\":[\"Edit details\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Bearbeitungsmodus\"],\"niSWGL\":[\"Optionen bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"0YvCPC\":[\"Ressource bearbeiten\"],\"report.editor.description\":[\"Bearbeiten Sie den Berichts-Inhalt mit dem Rich-Text-Editor unten. Sie können Text formatieren, Links, Bilder und mehr hinzufügen.\"],\"nP7CdQ\":[\"Webhook bearbeiten\"],\"gGx5tM\":[\"Bearbeiten\"],\"F6H6Lg\":[\"Bearbeitungsmodus\"],\"O3oNi5\":[\"E-Mail\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"E-Mail-Verifizierung\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"E-Mail-Verifizierung | dembrane\"],\"iF3AC2\":[\"E-Mail erfolgreich verifiziert. Sie werden in 5 Sekunden zur Login-Seite weitergeleitet. Wenn Sie nicht weitergeleitet werden, klicken Sie bitte <0>hier.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji, das neben dem Thema angezeigt wird, z.B. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Leer\"],\"DCRKbe\":[\"2FA aktivieren\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Explore aktivieren\"],\"+ljZfM\":[\"Tiefer eintauchen aktivieren\"],\"wGA7d4\":[\"Konkret machen aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"Idlt6y\":[\"Aktivieren Sie diese Funktion, um Teilnehmern zu ermöglichen, Benachrichtigungen zu erhalten, wenn ein Bericht veröffentlicht oder aktualisiert wird. Teilnehmer können ihre E-Mail-Adresse eingeben, um Updates zu abonnieren und informiert zu bleiben.\"],\"g2qGhy\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Echo\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"pB03mG\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"ECHO\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dWv3hs\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, AI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Antwort\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"rkE6uN\":[\"Aktiviere das, damit Teilnehmende in ihrem Gespräch KI-Antworten anfordern können. Nach ihrer Aufnahme können sie auf „Tiefer eintauchen“ klicken und bekommen Feedback im Kontext, das zu mehr Reflexion und Beteiligung anregt. Zwischen den Anfragen gibt es eine kurze Wartezeit.\"],\"dashboard.dembrane.feature.verify.description\":[\"Aktivieren Sie diese Funktion, damit Teilnehmer \\\"Ergebnisse\\\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"IxzwiB\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Aktuelles Passwort eingeben\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"vT+QoP\":[\"Geben Sie einen neuen Namen für den Chat ein:\"],\"VpwcSk\":[\"Neues Passwort eingeben\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"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.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"S2MVUN\":[\"Fehler beim Laden der Ankündigungen\"],\"xcUDac\":[\"Fehler beim Laden der Erkenntnisse\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"3Uoj83\":[\"Fehler beim Laden der Zitate\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"z05QRC\":[\"Fehler beim Aktualisieren des Berichts\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"/PykH1\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Entdecke Themen und Muster über alle Gespräche hinweg\"],\"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\"],\"9GMUFh\":[\"Artefakt konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"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\"],\"p+a077\":[\"Fehler beim Deaktivieren des Automatischen Auswählens für diesen Chat\"],\"iS9Cfc\":[\"Fehler beim Aktivieren des Automatischen Auswählens für diesen Chat\"],\"C6KoMG\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut oder starten Sie ein neues Gespräch.\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"DKxr+e\":[\"Fehler beim Laden der Ankündigungen\"],\"TSt/Iq\":[\"Fehler beim Laden der neuesten Ankündigung\"],\"D4Bwkb\":[\"Fehler beim Laden der Anzahl der ungelesenen Ankündigungen\"],\"AXRzV1\":[\"Fehler beim Laden des Audio oder das Audio ist nicht verfügbar\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"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.\"],\"hhLiKu\":[\"Artefakt konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Fehler beim Starten eines neuen Gesprächs. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"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\"],\"wH6wcG\":[\"E-Mail-Status konnte nicht überprüft werden. Bitte versuchen Sie es erneut.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Finde Widersprüche und vorschlage Folgefragen\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"JmZ/+d\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Beendet\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"Vorname\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Fokus\"],\"wD4aF6\":[\"Fokussiere deinen Bericht (optional)\"],\"MKEPCY\":[\"Folgen\"],\"JnPIOr\":[\"Folgen der Wiedergabe\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Passwort vergessen?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"von \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"3qkggm\":[\"Vollbild\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generieren\"],\"EIdJgG\":[\"Neuen Bericht erstellen\"],\"oADIO6\":[\"Erstelle einen neuen Bericht. Frühere Berichte bleiben verfügbar.\"],\"QsUhrf\":[\"Bericht erstellen\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"tSA0hO\":[\"Erkenntnisse aus Ihren Gesprächen generieren\"],\"MWSGhX\":[\"Bibliothek generieren\"],\"5SWGxv\":[\"Jetzt erstellen\"],\"GWUJ9X\":[\"Stattdessen jetzt erstellen\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"tM4cbZ\":[\"Generieren Sie strukturierte Besprechungsnotizen basierend auf den im Kontext bereitgestellten Diskussionspunkten.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"IL8LH3\":[\"Tiefer eintauchen\"],\"DXr0zk\":[\"Vollbild\"],\"iWpEwy\":[\"Zur Startseite\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Zum Feedback-Portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Rasteransicht\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"uMjvI3\":[\"Bericht anleiten\"],\"myXGZW\":[\"Angeleitet\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Helfen Sie uns zu übersetzen\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"LqWHk1\":[\"Verstecken \",[\"0\"]],\"u5xmYC\":[\"Alle ausblenden\"],\"txCbc+\":[\"Alle Erkenntnisse ausblenden\"],\"0lRdEo\":[\"Gespräche ohne Inhalt ausblenden\"],\"eHo/Jc\":[\"Daten verbergen\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Bestimmtes Konzept hervorheben\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Startseite\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identifizieren und analysieren Sie die wiederkehrenden Themen in diesem Inhalt. Bitte:\\n\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"Wenn Sie ein erfahrener Benutzer sind, der Webhook-Integrationen einrichtet, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"Um besser durch die Zitate navigieren zu können, erstellen Sie zusätzliche Ansichten. Die Zitate werden dann basierend auf Ihrer Ansicht gruppiert.\"],\"IJUcvx\":[\"Währenddessen können Sie die Chat-Funktion verwenden, um die Gespräche zu analysieren, die noch verarbeitet werden.\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portal-Link einschließen\"],\"aOhF9L\":[\"Link zur Portal-Seite in Bericht einschließen\"],\"Dvf4+M\":[\"Zeitstempel einschließen\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Erkenntnisbibliothek\"],\"ZVY8fB\":[\"Erkenntnis nicht gefunden\"],\"sJa5f4\":[\"Erkenntnisse\"],\"3hJypY\":[\"Erkenntnisse\"],\"NxHkkp\":[\"Anweisungen\"],\"MSVCjk\":[\"Anweisungen für die Generierung des Verifizierungsergebnisses\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Ungültiges Token. Bitte versuchen Sie es erneut.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP-Adresse\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"Es scheint, dass das Gespräch während der Aufnahme gelöscht wurde. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"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.\"],\"JsWQuM\":[\"Es sieht so aus, als hättest du noch keinen Bericht für dieses Projekt. Erstelle einen, um einen Überblick über deine Gespräche zu erhalten. Du kannst den Bericht optional auf ein bestimmtes Thema fokussieren.\"],\"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.\"],\"Lj7sBL\":[\"Italienisch\"],\"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.\"],\"GaQMyV\":[\"Treten Sie \",[\"0\"],\" auf dembrane bei\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Tritt dem Slack-Community bei\"],\"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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Einen Moment bitte\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"Gerade eben\"],\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Sprache\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Nachname\"],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Neueste\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Lassen Sie uns wissen!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Lass uns sicherstellen, dass wir Sie hören können\"],\"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\"],\"yUQgLY\":[\"Bibliothek wird derzeit verarbeitet\"],\"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\"],\"3gvJj+\":[\"LinkedIn-Beitrag (Experimentell)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live Audiopegel:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Wird geladen\"],\"yQE2r9\":[\"Laden\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"ATTcN8\":[\"Konkrete Themen werden geladen…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Anmelden\"],\"LM/dWU\":[\"Anmelden | dembrane\"],\"Wd2LTk\":[\"Als bestehender Benutzer anmelden\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo entfernt\"],\"MjfaMh\":[\"Logo aktualisiert\"],\"WXSxpf\":[\"Logo erfolgreich aktualisiert\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Abmelden\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Längste zuerst\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Meine\"],\"b85Pfh\":[\"Mindestens 8 Zeichen\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"weitere\"],\"JcD7qf\":[\"Weitere Aktionen\"],\"zMx0gF\":[\"Mehr Vorlagen\"],\"y1ypMV\":[\"Beliebteste\"],\"7BgchI\":[\"Meistgenutzt\"],\"QWdKwH\":[\"Verschieben\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Muss mindestens 10 Minuten in der Zukunft liegen\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Meine Vorlagen\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"Neue Gespräche verfügbar — aktualisiere deinen Bericht\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"P/+jkp\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"3RC8Um\":[\"Seit deinem letzten Bericht wurden neue Gespräche hinzugefügt. Erstelle einen aktualisierten Bericht, um sie einzubeziehen. Dein vorheriger Bericht bleibt verfügbar.\"],\"QgiaQ8\":[\"Neues Datum und Uhrzeit\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"Neues Passwort\"],\"7vhWI8\":[\"Neues Passwort\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"Neues Projekt\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Neuer Bericht\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Neueste\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Neueste zuerst\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.next\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Bereit zum Beginn\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"Keine Ankündigungen verfügbar\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"S8FeaY\":[\"Noch keine Community-Vorlagen. Teile deine, um loszulegen.\"],\"zMt5AM\":[\"Keine konkreten Themen verfügbar.\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"zM3DDm\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen. Bitte fügen Sie einige Gespräche hinzu, um zu beginnen.\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"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.\"],\"meAa31\":[\"Noch keine Gespräche\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Noch keine Gesprache. Sie konnen jetzt einen Bericht planen und Gesprache werden aufgenommen, sobald sie hinzugefugt werden.\"],\"ax9iz4\":[\"Noch keine Vorlagen. Erstelle eine, um loszulegen.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"Keine Erkenntnisse verfügbar. Generieren Sie Erkenntnisse für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"Es wurden noch keine Schlüsselbegriffe oder Eigennamen hinzugefügt. Fügen Sie sie über die obige Eingabe hinzu, um die Transkriptgenauigkeit zu verbessern.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie\"],\"yalI52\":[\"Keine Zitate verfügbar. Generieren Sie Zitate für dieses Gespräch, indem Sie <0><1>die Projektbibliothek besuchen.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"1iQvuD\":[\"Noch keine Berichte\"],\"EhV94J\":[\"Keine Ressourcen gefunden.\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"Kein bestimmter Fokus\"],\"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\"],\"kaDUQs\":[\"Noch keine Vorlagen. Erstellen Sie eine eigene oder durchsuchen Sie Alle Vorlagen.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"TmTivZ\":[\"Kein Transkript für dieses Gespräch verfügbar.\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"MPZkyF\":[\"Für diesen Chat sind keine Transkripte ausgewählt\"],\"AotzsU\":[\"Kein Tutorial (nur Datenschutzerklärungen)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"Noch keine Workspaces in dieser Organisation.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Jetzt\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Laufend\"],\"conversation.ongoing\":[\"Laufend\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Laufende Gespräche\"],\"Dw7aQc\":[\"Gilt nur, wenn der Bericht veröffentlicht ist\"],\"a//PzZ\":[\"Ändern Sie diese Einstellung nur in Absprache mit den verantwortlichen Personen für die Datenschutzverantwortung in Ihrer Organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Nur die \",[\"0\"],\" beendeten \",[\"1\"],\" werden im Bericht enthalten. \"],\"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.\"],\"J17dTs\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Dokumentation öffnen\"],\"QTXl9z\":[\"Feedback-Portal öffnen\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Offen für Teilnahme?\"],\"Z7K0px\":[\"Leitfaden öffnen\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Leitfaden für Host öffnen\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls auf Englisch zurückgegriffen wird)\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Andere Hosts können deine Vorlage sehen und kopieren. Du kannst sie jederzeit zurückziehen.\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Portal mit Passwort schützen (Feature-Anfrage)\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Datum und Uhrzeit wählen\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Wählen Sie einen oder mehrere Blickwinkel\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Anheften\"],\"u8qC4w\":[\"Projekt anheften\"],\"S+WiJ3\":[\"Vorlagen hier für schnellen Zugriff anheften.\"],\"lepv9z\":[\"An Chatleiste anheften\"],\"fr2ggG\":[\"angeheftet\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Angeheftet ist voll (max. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Angeheftete Vorlagen\"],\"Atb9XB\":[\"An Chatleiste angeheftet\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"3flRk2\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"S6iyis\":[\"Bitte schließen Sie Ihren Browser nicht\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Bitte melden Sie sich an, um fortzufahren.\"],\"mUGRqu\":[\"Bitte geben Sie eine prägnante Zusammenfassung des im Kontext Bereitgestellten.\"],\"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)\"],\"gEEhkM\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Record\\\" 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.\"],\"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.\"],\"ps5D2F\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten. \\n**Bitte lassen Sie diesen Bildschirm beleuchtet** \\n(schwarzer Bildschirm = keine Aufnahme)\"],\"TsuUyf\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf den \\\"Aufnahme starten\\\"-Button klicken. Sie können auch durch Klicken auf das Textsymbol in Textform antworten.\"],\"4TVnP7\":[\"Bitte wählen Sie eine Sprache für Ihren Bericht\"],\"N63lmJ\":[\"Bitte wählen Sie eine Sprache für Ihren aktualisierten Bericht\"],\"XvD4FK\":[\"Bitte wählen Sie mindestens eine Quelle\"],\"hxTGLS\":[\"Wähl Gespräche in der Seitenleiste aus, um weiterzumachen\"],\"GXZvZ7\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"Am5V3+\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres Echo anfordern.\"],\"CE1Qet\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie ein weiteres ECHO anfordern.\"],\"Fx1kHS\":[\"Bitte warten Sie \",[\"timeStr\"],\", bevor Sie eine weitere Antwort anfordern.\"],\"MgJuP2\":[\"Bitte warten Sie, während wir Ihren Bericht generieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"ei5r44\":[\"Bitte warten Sie, während wir Ihren Bericht aktualisieren. Sie werden automatisch zur Berichtsseite weitergeleitet.\"],\"j5KznP\":[\"Bitte warten Sie, während wir Ihre E-Mail-Adresse verifizieren.\"],\"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\"],\"Tx36sk\":[\"Portal-Link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Lieber direkt sprechen? <0>Buchen Sie einen Termin mit mir\"],\"Q6hhn8\":[\"Einstellungen\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Deine Gespräche werden vorbereitet … kann einen Moment dauern.\"],\"/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.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"S8ugMC\":[\"Bericht drucken\"],\"ANWB5x\":[\"Diesen Bericht drucken\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Datenschutz und Sicherheit\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Datenschutzerklärungen\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"stk3Hv\":[\"verarbeitet\"],\"vrnnn9\":[\"Verarbeitet\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"kvs/6G\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar.\"],\"q11K6L\":[\"Verarbeitung für dieses Gespräch fehlgeschlagen. Dieses Gespräch ist für die Analyse und den Chat nicht verfügbar. Letzter bekannter Status: \",[\"0\"]],\"NQiPr4\":[\"Transkript wird verarbeitet\"],\"48px15\":[\"Bericht wird verarbeitet...\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projekt erstellt\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Projektstandard: aktiviert. Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"0qmd8V\":[\"Projekt Standard: aktiviert. Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"Projektstandards\"],\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Projektübersicht | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projekte Startseite\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Veröffentlichen\"],\"vsX8VJ\":[\"Veröffentlichen Sie diesen Bericht, um den Portal-Link anzuzeigen\"],\"GwOmnT\":[\"Veröffentlichen Sie diesen Bericht, um das Drucken zu ermöglichen\"],\"ZSi2AK\":[\"Veröffentlichen Sie diesen Bericht, um das Teilen zu ermöglichen\"],\"IHzoSN\":[\"Veröffentlichen Sie diesen Bericht, um einen Freigabelink zu erhalten\"],\"u3wRF+\":[\"Veröffentlicht\"],\"4R3R74\":[\"In der Community 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.\"],\"9iShh/\":[\"Schnellzugriff (max. 5)\"],\"utRRxm\":[\"Schnellzugriff ist voll (max 5)\"],\"dN0qso\":[\"Schnellzugriff:\"],\"eWLklq\":[\"Zitate\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Diesen Prompt bewerten:\"],\"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 →\"],\"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\"],\"ZKOO0I\":[\"Bereit zum Beginn?\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"DqXVNZ\":[\"Bereit zur Generierung\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.s3check.reconnect\":[\"Erneut verbinden\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Aufnehmen\"],\"w80YWM\":[\"Aufnehmen\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"9aloPG\":[\"Referenzen\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Neu generieren\"],\"844H5I\":[\"Bibliothek 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\"],\"w3qEvq\":[\"Als neuer Benutzer registrieren\"],\"/PACVa\":[\"Versionshinweise\"],\"7dZnmw\":[\"Relevanz\"],\"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\"],\"hTDMBB\":[\"Seite neu laden\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Profilbild entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Aus Favoriten entfernen\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Aus Schnellzugriff entfernen\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"2wxgft\":[\"Umbenennen\"],\"6PsaMr\":[\"Chat umbenennen\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Antwort Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Bericht\"],\"UZ6fKH\":[\"Berichtsaktionen\"],\"e/MQa5\":[\"Bericht wird bereits erstellt\"],\"Q3LOVJ\":[\"Ein Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"hh/mvZ\":[\"Berichtserstellung abgebrochen\"],\"sSy8vA\":[\"Bericht wird erstellt...\"],\"KFQLa2\":[\"Berichtgenerierung befindet sich derzeit in der Beta und ist auf Projekte mit weniger als 10 Stunden Aufnahme beschränkt.\"],\"v7O77U\":[\"Die Berichtserstellung wurde abgebrochen. Du kannst unten einen neuen Bericht starten.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"M9snPp\":[\"Bericht geplant\"],\"mgTmvC\":[\"Berichtsstruktur\"],\"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\"],\"uLZGK+\":[\"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\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"MepchF\":[\"Mikrofonzugriff anfordern, um verfügbare Geräte zu erkennen...\"],\"TMLAx2\":[\"Erforderlich\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Umplanen\"],\"6eIR/n\":[\"Umplanen auf\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Zurücksetzen\"],\"xeMrqw\":[\"Alle Optionen zurücksetzen\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"9uplIY\":[\"Passwort zurücksetzen | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Ressourcen\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Ausführungsstatus:\"],\"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!\"],\"RgyKxd\":[\"Schnellzugriff speichern\"],\"5dVjYt\":[\"Vorlage speichern\"],\"zaYZWH\":[\"In meine Vorlagen speichern\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Speichern...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scannen oder klicken, um das Feedbackportal zu offnen\"],\"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\"],\"QS1Nla\":[\"Für später planen\"],\"wCGy0o\":[\"Bericht planen\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Suche und wähle die Gespräche für diesen Chat aus.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Gespräche suchen\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Tags suchen\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Durchsucht die relevantesten Quellen\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"Eyh9/O\":[\"Gesprächstatusdetails ansehen\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"Bis bald\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segmente\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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\"],\"vKH1Ye\":[\"Wählen Sie Ihr Mikrofon:\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Senden\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Einen Nachricht senden, um einen agentischen Lauf zu starten.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Stimmung\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Sitzungsname\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Ihr erstes Projekt einrichten\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Teilen\"],\"OuFYHU\":[\"Bericht teilen\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Diesen Bericht teilen\"],\"lRZMol\":[\"Mit Community teilen\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Mit der Community teilen\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"nnWGzO\":[\"Teilen Sie Ihre Ideen mit unserem Team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Ihre Stimme teilen\"],\"4o0klJ\":[\"Teilen Sie Ihre Stimme, indem Sie den QR-Code scannen\"],\"swzLuF\":[\"Teilen Sie Ihre Stimme, indem Sie den unten stehenden QR-Code scannen.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"h8lzfw\":[\"Zeige \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Zeigen Sie einen Link an, über den Teilnehmer beitragen können\"],\"lZw9AX\":[\"Alle anzeigen\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Dauer anzeigen\"],\"YbxwRo\":[\"Generierte Vorschläge anzeigen\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Zeitachse im Bericht anzeigen (Feature-Anfrage)\"],\"DLEIpN\":[\"Zeitstempel anzeigen (experimentell)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"8Lpud3\":[\"Ihr zuletzt fertiggestellter Bericht wird angezeigt.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Mit Google anmelden\"],\"6Uau97\":[\"Überspringen\"],\"participant.button.verify_prompt.skip\":[\"Überspringen\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"lH0eLz\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"b6NHjr\":[\"Datenschutzkarte überspringen (Organisation verwaltet Zustimmung)\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack-Community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Einige Gespräche werden noch verarbeitet. Die automatische Auswahl wird optimal funktionieren, sobald die Audioverarbeitung abgeschlossen ist.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"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.\"],\"zazql1\":[\"Beim Erstellen deines neuesten Berichts ist etwas schiefgelaufen. Dein letzter abgeschlossener Bericht wird angezeigt.\"],\"2WNFmv\":[\"Beim Erstellen Ihres Berichts ist etwas schiefgelaufen.\"],\"a75OAp\":[\"Beim Erstellen deines Berichts ist etwas schiefgelaufen. Du kannst es unten erneut versuchen.\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"JOKTb4\":[\"Beim Hochladen der Datei ist ein Fehler aufgetreten: \",[\"0\"]],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"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\"]],\"u7yVRn\":[\"Quellen:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanisch\"],\"zuoIYL\":[\"Sprecher\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"vf1Tc/\":[\"Specific Details benötigt mindestens ein Gespräch.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Aufnahme starten\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Über Text eingereicht\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Erfolg\"],\"aG+cH9\":[\"Dynamische Vorschläge basierend auf Ihrem Gespräch vorschlagen.\"],\"aZJj7n\":[\"Vorschläge basierend auf Ihren Gesprächen\"],\"FyUg+Y\":[\"Vorschläge basierend auf Ihren Gesprächen. Senden Sie eine Nachricht, um es auszuprobieren.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"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\"],\"4ZpfGe\":[\"Fass die wichtigsten Erkenntnisse aus meinen Interviews zusammen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"g6o+7L\":[\"Zusammenfassung erstellt.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Zusammenfassung noch nicht verfügbar\"],\"OUi+O3\":[\"Zusammenfassung neu erstellt.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max. 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Vorlagen-Prompt-Inhalt...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Vorlagen\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"Der integrierte Fehlerbericht konnte nicht geladen werden. Sie können uns trotzdem über unser Feedback-Portal mitteilen, was schiefgelaufen ist. Es hilft uns, Probleme schneller zu beheben, als keinen Bericht einzureichen.\"],\"gtMB2A\":[\"Der integrierte Fehlerbericht konnte nicht geladen werden. Sie können uns trotzdem über unser Feedback-Portal mitteilen, was schiefgelaufen ist. Es hilft uns, Probleme schneller zu beheben, als keinen Bericht einzureichen.\"],\"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.\"],\"nO942E\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"mK5NUZ\":[\"Der Endpunkt, an den wir die Daten senden. Holen Sie sich diesen von Ihrem Empfangs-Service (z.B. Zapier, Make oder Ihrem eigenen Server).\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"Der Fehlerbericht konnte nicht geladen werden. Bitte verwenden Sie das Feedback-Portal, um uns mitzuteilen, was schiefgelaufen ist. Es hilft uns, Probleme schneller zu beheben, als keinen Bericht einzureichen.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"Das Portal ist die Website, die geladen wird, wenn Teilnehmer den QR-Code scannen.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"die Projektbibliothek.\"],\"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.\"],\"iV8+33\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie, bis die neue Zusammenfassung verfügbar ist.\"],\"AgC2rn\":[\"Die Zusammenfassung wird neu generiert. Bitte warten Sie bis zu 2 Minuten, bis die neue Zusammenfassung verfügbar ist.\"],\"PTNxDe\":[\"Das Transkript für dieses Gespräch wird verarbeitet. Bitte später erneut prüfen.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. In der Zwischenzeit können Sie alle Ihre Daten mithilfe der Bibliothek oder spezifische Gespräche auswählen, um mit ihnen zu chatten.\"],\"7qENSx\":[\"Beim Aktualisieren Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"V7zEnY\":[\"Bei der Verifizierung Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\"],\"gtlVJt\":[\"Diese sind einige hilfreiche voreingestellte Vorlagen, mit denen Sie beginnen können.\"],\"sd848K\":[\"Diese sind Ihre Standard-Ansichtsvorlagen. Sobald Sie Ihre Bibliothek erstellen, werden dies Ihre ersten beiden Ansichten sein.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"dt1MDy\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein.\"],\"5ZpZXq\":[\"Dieses Gespräch wird noch verarbeitet. Es wird bald für die Analyse und das Chatten verfügbar sein. \"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"JtPxD5\":[\"Diese E-Mail ist bereits für Benachrichtigungen angemeldet.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"Diese Informationen sind anonymisiert\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"Bibliothek\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Dies ist Ihre Projektbibliothek. Derzeit warten \",[\"0\"],\" Gespräche auf die Verarbeitung.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet.\"],\"BAUPL8\":[\"Diese Sprache wird für das Teilnehmerportal und die Transkription verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte die Sprachauswahl in den Einstellungen in der Kopfzeile.\"],\"zyA8Hj\":[\"Diese Sprache wird für das Teilnehmerportal, die Transkription und die Analyse verwendet. Um die Sprache dieser Anwendung zu ändern, verwenden Sie bitte stattdessen die Sprachauswahl im Benutzermenü der Kopfzeile.\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"Diese Projektbibliothek wurde generiert am\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"Diese Zusammenfassung ist KI-generiert und kurz, für eine gründliche Analyse verwenden Sie den Chat oder die Bibliothek.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"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.\"],\"n4l4/n\":[\"Dies wird persönliche Identifizierbare Informationen mit ersetzen.\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Uhrzeit\"],\"Ww6cQ8\":[\"Erstellungszeit\"],\"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.\"],\"5h7Z+m\":[\"Um ein neues Tag zuzuweisen, erstellen Sie es bitte zuerst in der Projektübersicht.\"],\"o3rowT\":[\"Um einen Bericht zu generieren, fügen Sie bitte zuerst Gespräche in Ihr Projekt hinzu\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribieren...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transkript\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transkript nicht verfügbar\"],\"N/50DC\":[\"Transkript-Einstellungen\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transkription läuft…\"],\"0l9syB\":[\"Transkription läuft…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transformieren Sie diese Transkripte in einen LinkedIn-Beitrag, der durch den Rauschen schlägt. Bitte:\\nExtrahieren Sie die wichtigsten Einblicke - überspringen Sie alles, was wie standard-Geschäftsratgeber klingt\\nSchreiben Sie es wie einen erfahrenen Führer, der konventionelle Weisheiten herausfordert, nicht wie ein Motivationsposter\\nFinden Sie einen wirklich überraschenden Einblick, der auch erfahrene Führer zum Nachdenken bringt\\nBleiben Sie trotzdem intellektuell tief und direkt\\nVerwenden Sie nur Datenpunkte, die tatsächlich Annahmen herausfordern\\nHalten Sie die Formatierung sauber und professionell (minimal Emojis, Gedanken an die Leerzeichen)\\nSchlagen Sie eine Tonart, die beide tiefes Fachwissen und praktische Erfahrung nahe legt\\nHinweis: Wenn der Inhalt keine tatsächlichen Einblicke enthält, bitte lassen Sie es mich wissen, wir brauchen stärkere Quellenmaterial.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Erneut versuchen\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Nachricht eingeben...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainisch\"],\"dubg//\":[\"Ukrainisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"8vqTzl\":[\"Das generierte Artefakt konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Loslösen\"],\"vSdeRU\":[\"Löse zuerst ein Projekt (max. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Löse zuerst ein Projekt (max. 3)\"],\"dFIzZ6\":[\"Von Chatleiste loslösen\"],\"dx+iaL\":[\"Projekt lösen\"],\"KyKziT\":[\"Aus Community entfernen\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"ungelesene Ankündigung\"],\"0pinHa\":[\"ungelesene Ankündigungen\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Bericht aktualisieren\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Aktualisieren Sie den Bericht, um die neuesten Daten zu enthalten\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Aktualisieren Sie Ihren Bericht, um die neuesten Änderungen in Ihrem Projekt zu enthalten. Der Link zum Teilen des Berichts würde gleich bleiben.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Aktualisiert\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade auf Auto-select und analysieren Sie 10x mehr Gespräche in der Hälfte der Zeit - keine manuelle Auswahl mehr, nur tiefere Einblicke sofort.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Audio hochladen\"],\"AIGPM8\":[\"Avatar hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"Wft2yh\":[\"Upload läuft\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Ressourcen hochladen\"],\"3wG7HI\":[\"Hochgeladen\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Verwenden\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Experimentelle Funktionen verwenden\"],\"rmMdgZ\":[\"PII Redaction verwenden\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verifizierungsthemen\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verifizierte Artefakte\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Ansicht\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"Gesprächdetails anzeigen\"],\"H1e6Hv\":[\"Gesprächstatus anzeigen\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"Gelesene Ankündigungen anzeigen\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"Aufrufe\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Warten Sie \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Warten auf den Abschluss der Gespräche, bevor ein Bericht erstellt wird.\"],\"tCfopB\":[\"Möchten Sie benutzerdefinierte Berichtsstrukturen?\"],\"VKMCO0\":[\"Willst du ein Template zu „dembrane“ hinzufügen?\"],\"bO5RNo\":[\"Möchten Sie eine Vorlage zu ECHO hinzufügen?\"],\"v8z9fL\":[\"Möchten Sie das Aussehen Ihres Berichts anpassen?\"],\"r6y+jM\":[\"Warnung\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"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.\"],\"Ewk6kb\":[\"Wir konnten das Audio nicht laden. Bitte versuchen Sie es später erneut.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner.\"],\"9qYWL7\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte evelien@dembrane.com\"],\"3fS27S\":[\"Wir haben Ihnen eine E-Mail mit den nächsten Schritten gesendet. Wenn Sie sie nicht sehen, überprüfen Sie Ihren Spam-Ordner. Wenn Sie sie immer noch nicht sehen, kontaktieren Sie bitte jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"tQtKw5\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"2ZUkkL\":[\"Wir gestalten diese Funktion und würden uns über Ihr Feedback freuen.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Willkommen im Big Picture Modus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Modus „Genauer Kontext“.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Willkommen beim dembrane Chat! Verwenden Sie die Seitenleiste, um Ressourcen und Gespräche auszuwählen, die Sie analysieren möchten. Dann können Sie Fragen zu den ausgewählten Ressourcen und Gesprächen stellen.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Willkommen bei dembrane!\"],\"TACmoL\":[\"Willkommen im Overview Mode! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themes und Insights in deinen Daten. Für genaue Zitate, starte einen neuen Chat im Deep Dive Mode.\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"Bck6Du\":[\"Willkommen bei Berichten!\"],\"aEpQkt\":[\"Willkommen in Ihrem Home-Bereich! Hier können Sie alle Ihre Projekte sehen und auf Tutorial-Ressourcen zugreifen. Derzeit haben Sie keine Projekte. Klicken Sie auf \\\"Erstellen\\\", um mit der Konfiguration zu beginnen!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Willkommen!\"],\"Tfxjl5\":[\"Was sind die Hauptthemen über alle Gespräche hinweg?\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"fyMvis\":[\"Welche Muster ergeben sich aus den Daten?\"],\"pVIWuw\":[\"Was soll ECHO aus den Gesprächen analysieren oder generieren?\"],\"ZsEVar\":[\"Worauf soll sich dieser Bericht konzentrieren?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"Ul3erb\":[\"What you can reach\"],\"3ePd3I\":[\"Was ist neu?\"],\"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.\"],\"LEYli4\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"Sie können die Frage-Funktion immer noch verwenden, um mit jedem Gespräch zu chatten\"],\"ORA5nz\":[\"Sie können es unten erneut versuchen.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Ihre Unterhaltung wird momentan transcribiert. Bitte überprüfen Sie später erneut.\"],\"OFDbfd\":[\"Ihre Gespräche\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Ihre Bibliothek ist leer. Erstellen Sie eine Bibliothek, um Ihre ersten Erkenntnisse zu sehen.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Ihr Name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lZNgiw\":[\"Ihre Ansichten\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Deine\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"ACjxWW\":[\"Zoom\"],\"IDeRjd\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Gespräche\"],\"hWszgU\":[\"Die Quelle wurde gelöscht\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"GSQ8We\":[\"Echo aktivieren\"],\"GpCBCW\":[\"ECHO aktivieren\"],\"IHqkFL\":[\"Antwort aktivieren\"],\"7DwYDY\":[\"Enable Verify\"],\"qwmGiT\":[\"Kontakt zu Verkaufsvertretern\"],\"ZWDkP4\":[\"Derzeit sind \",[\"finishedConversationsCount\"],\" Gespräche bereit zur Analyse. \",[\"unfinishedConversationsCount\"],\" werden noch verarbeitet.\"],\"/NTvqV\":[\"Bibliothek nicht verfügbar\"],\"p18xrj\":[\"Bibliothek neu generieren\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Fortsetzen\"],\"SqNXSx\":[\"Nein\"],\"yfZBOp\":[\"Ja\"],\"cic45J\":[\"Wir können diese Anfrage nicht verarbeiten, da die Inhaltsrichtlinie des LLM-Anbieters verletzt wird.\"],\"CvZqsN\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie den <0>ECHO drücken, oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.\"],\"P+lUAg\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"hh87/E\":[\"\\\"Tiefer eintauchen\\\" Bald verfügbar\"],\"RMxlMe\":[\"\\\"Konkret machen\\\" Bald verfügbar\"],\"7UJhVX\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"RDsML8\":[\"Gespräch beenden\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Abbrechen\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Ende der Liste • Alle \",[\"0\"],\" Gespräche geladen\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/en-US.po b/echo/frontend/src/locales/en-US.po index a35684eb8..785ff978c 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -925,11 +925,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:191 +#: src/components/chat/AgenticChatPanel.tsx:193 msgid "{name}'s conversation" msgstr "{name}'s conversation" -#: src/components/chat/AgenticChatPanel.tsx:190 +#: src/components/chat/AgenticChatPanel.tsx:192 msgid "{name}'s transcript excerpt" msgstr "{name}'s transcript excerpt" @@ -1256,6 +1256,10 @@ msgstr "A first version will appear here when it is ready." msgid "A friendly name to identify this webhook" msgstr "A friendly name to identify this webhook" +#: src/components/project/ProjectExperimentalSection.tsx:52 +msgid "A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed." +msgstr "A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed." + #: src/routes/project/report/ProjectReportRoute.tsx:564 msgid "A new report will be automatically generated and published at the scheduled time." msgstr "A new report will be automatically generated and published at the scheduled time." @@ -1353,7 +1357,7 @@ msgstr "Accepted terms" #: src/routes/workspaces/CreateWorkspaceRoute.tsx:702 #: src/routes/project/CreateProjectRoute.tsx:256 #: src/routes/project/CreateProjectRoute.tsx:345 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:117 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:120 #: src/components/project/ProjectUsageAndSharing.tsx:190 #: src/components/layout/ProjectOverviewLayout.tsx:52 msgid "Access" @@ -1493,6 +1497,7 @@ msgstr "Active filters" #: src/routes/organisation/OrganisationRoute.tsx:2054 #: src/routes/organisation/OrganisationRoute.tsx:2077 #: src/components/project/ProjectSharingModal.tsx:252 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:191 #: src/components/billing/BillingManager.tsx:1461 msgid "Add" msgstr "Add" @@ -1653,6 +1658,7 @@ msgstr "Add Your First Webhook" #~ msgstr "Add your own" #: src/components/project/ProjectSharingModal.tsx:68 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:145 msgid "Added" msgstr "Added" @@ -1829,8 +1835,8 @@ msgstr "Advanced Settings" #~ msgid "Agent is working..." #~ msgstr "Agent is working..." -#: src/components/chat/AgenticChatPanel.tsx:287 -#: src/components/chat/AgenticChatPanel.tsx:314 +#: src/components/chat/AgenticChatPanel.tsx:289 +#: src/components/chat/AgenticChatPanel.tsx:316 msgid "Agent run failed" msgstr "Agent run failed" @@ -2157,6 +2163,7 @@ msgstr "Applies this wording and refresh behavior to the existing canvas." #: src/components/view/CreateViewForm.tsx:153 #: src/components/goal/GoalSuggestionCard.tsx:122 #: src/components/common/ImageCropModal.tsx:148 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:223 #: src/components/chat/CanvasSuggestionCard.tsx:361 msgid "Apply" msgstr "Apply" @@ -2335,7 +2342,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:1481 +#: src/components/chat/AgenticChatPanel.tsx:1494 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." @@ -2355,7 +2362,7 @@ msgstr "Ask a workspace admin for an invite, or pick a different workspace from msgid "Ask about your conversations, or type to find an earlier chat" msgstr "Ask about your conversations, or type to find an earlier chat" -#: src/components/chat/AgenticChatPanel.tsx:1739 +#: src/components/chat/AgenticChatPanel.tsx:1766 msgid "Ask about your conversations..." msgstr "Ask about your conversations..." @@ -2685,6 +2692,7 @@ msgstr "Basic Settings" #: src/components/report/CreateReportForm.tsx:235 #: src/components/project/ProjectPortalEditor.tsx:1483 #: src/components/project/ProjectPortalEditor.tsx:1564 +#: src/components/project/ProjectExperimentalSection.tsx:48 #: src/components/conversation/RetranscribeConversation.tsx:151 #: src/components/chat/ChatModeSelector.tsx:158 #: src/components/chat/ChatModeBanner.tsx:45 @@ -2937,7 +2945,7 @@ msgstr "can read" #: src/components/common/ImageCropModal.tsx:145 #: src/components/common/FeedbackPortalModal.tsx:124 #: src/components/common/ConfirmModal.tsx:44 -#: src/components/chat/AgenticChatPanel.tsx:1708 +#: src/components/chat/AgenticChatPanel.tsx:1735 msgid "Cancel" msgstr "Cancel" @@ -2970,7 +2978,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:1696 +#: src/components/chat/AgenticChatPanel.tsx:1723 msgid "Cancel current run" msgstr "Cancel current run" @@ -3172,7 +3180,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:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Chat" msgstr "Chat" @@ -3238,7 +3246,7 @@ msgstr "Checked {checkedAgo}. A first update will appear when there is enough to msgid "Checked {checkedAgo}. Nothing new since your last conversation. Updated {updatedAgo}." msgstr "Checked {checkedAgo}. Nothing new since your last conversation. Updated {updatedAgo}." -#: src/components/chat/agenticToolActivity.ts:123 +#: src/components/chat/agenticToolActivity.ts:125 msgid "Checking live conversations" msgstr "Checking live conversations" @@ -3653,7 +3661,7 @@ msgstr "Conversation tags" msgid "conversations" msgstr "conversations" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:111 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:114 #: src/components/workspace/OrganisationProjectsTable.tsx:219 #: src/components/project/ProjectUsageAndSharing.tsx:453 #: src/components/conversation/ProjectConversationsPanel.tsx:725 @@ -3772,6 +3780,10 @@ msgstr "Copy to Clipboard" msgid "Copying..." msgstr "Copying..." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:102 +msgid "Could not apply all the tag changes." +msgstr "Could not apply all the tag changes." + #: src/components/chat/ProjectUpdateSuggestionCard.tsx:182 msgid "Could not apply the changes. Nothing was saved." msgstr "Could not apply the changes. Nothing was saved." @@ -3858,7 +3870,7 @@ msgstr "Could not save" msgid "Could not save tags" msgstr "Could not save tags" -#: src/components/project/hooks/index.ts:450 +#: src/components/project/hooks/index.ts:460 msgid "Could not save the host guide" msgstr "Could not save the host guide" @@ -4638,6 +4650,7 @@ msgid "Dismiss" msgstr "Dismiss" #: src/components/goal/GoalSuggestionCard.tsx:86 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:173 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:249 #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:113 #: src/components/chat/CanvasSuggestionCard.tsx:256 @@ -4698,7 +4711,7 @@ msgstr "Does not update on its own. Updated {updatedAgo}." #: src/routes/onboarding/OnboardingRoute.tsx:525 #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 -#: src/components/chat/AgenticChatPanel.tsx:333 +#: src/components/chat/AgenticChatPanel.tsx:335 msgid "Done" msgstr "Done" @@ -4848,6 +4861,10 @@ msgstr "Each new member is billed per seat on your plan." #~ msgid "Earlier" #~ msgstr "Earlier" +#: src/components/project/ProjectExperimentalSection.tsx:25 +msgid "Early features you can try on this project before they are ready for everyone." +msgstr "Early features you can try on this project before they are ready for everyone." + #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:1065 msgid "participant.button.echo" @@ -5179,7 +5196,7 @@ msgstr "Enter the 6-digit code from your authenticator app." msgid "Enter the current six-digit code from your authenticator app." msgstr "Enter the current six-digit code from your authenticator app." -#: src/components/chat/AgenticChatPanel.tsx:1756 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Enter to send, Shift+Enter for a new line" msgstr "Enter to send, Shift+Enter for a new line" @@ -5212,8 +5229,8 @@ msgstr "Entered details" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:371 -#: src/components/chat/AgenticChatPanel.tsx:338 -#: src/components/chat/AgenticChatPanel.tsx:1427 +#: src/components/chat/AgenticChatPanel.tsx:340 +#: src/components/chat/AgenticChatPanel.tsx:1440 msgid "Error" msgstr "Error" @@ -5234,10 +5251,10 @@ msgstr "Error creating report" #~ msgid "Error loading insights" #~ msgstr "Error loading insights" -#: src/routes/project/ProjectRoutes.tsx:81 -#: src/routes/project/ProjectRoutes.tsx:168 -#: src/routes/project/ProjectRoutes.tsx:270 -#: src/routes/project/ProjectRoutes.tsx:309 +#: src/routes/project/ProjectRoutes.tsx:83 +#: src/routes/project/ProjectRoutes.tsx:177 +#: src/routes/project/ProjectRoutes.tsx:279 +#: src/routes/project/ProjectRoutes.tsx:318 msgid "Error loading project" msgstr "Error loading project" @@ -5377,10 +5394,9 @@ msgstr "Exit fullscreen" msgid "Expand workspaces" msgstr "Expand workspaces" -#: src/components/report/UpdateReportModalButton.tsx:191 -#: src/components/report/CreateReportForm.tsx:198 -#~ msgid "Experimental" -#~ msgstr "Experimental" +#: src/components/project/ProjectExperimentalSection.tsx:23 +msgid "Experimental" +msgstr "Experimental" #: src/components/billing/BillingManager.tsx:182 msgid "Expired" @@ -5511,7 +5527,7 @@ msgstr "Failed to copy chat. Please try again." msgid "Failed to copy transcript. Please try again." msgstr "Failed to copy transcript. Please try again." -#: src/components/project/hooks/index.ts:583 +#: src/components/project/hooks/index.ts:593 msgid "Failed to create custom topic" msgstr "Failed to create custom topic" @@ -5523,7 +5539,7 @@ msgstr "Failed to create project" msgid "Failed to delete chat" msgstr "Failed to delete chat" -#: src/components/project/hooks/index.ts:635 +#: src/components/project/hooks/index.ts:645 msgid "Failed to delete custom topic" msgstr "Failed to delete custom topic" @@ -5535,7 +5551,7 @@ msgstr "Failed to delete project" msgid "Failed to delete response" msgstr "Failed to delete response" -#: src/components/project/hooks/index.ts:331 +#: src/components/project/hooks/index.ts:341 msgid "Failed to delete tag" msgstr "Failed to delete tag" @@ -5672,15 +5688,15 @@ 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:1299 +#: src/components/chat/AgenticChatPanel.tsx:1312 msgid "Failed to stop run" msgstr "Failed to stop run" -#: src/components/chat/AgenticChatPanel.tsx:1258 +#: src/components/chat/AgenticChatPanel.tsx:1271 msgid "Failed to submit agentic message" msgstr "Failed to submit agentic message" -#: src/components/project/hooks/index.ts:610 +#: src/components/project/hooks/index.ts:620 msgid "Failed to update custom topic" msgstr "Failed to update custom topic" @@ -5950,7 +5966,7 @@ msgstr "Forecast" #~ msgid "Forecast: ~{0}" #~ msgstr "Forecast: ~{0}" -#: src/components/chat/agenticToolActivity.ts:157 +#: src/components/chat/agenticToolActivity.ts:160 msgid "Forgetting a saved memory" msgstr "Forgetting a saved memory" @@ -6393,7 +6409,7 @@ msgstr "Hide projects" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Hide steps" msgstr "Hide steps" @@ -6418,7 +6434,7 @@ msgid "host guide" msgstr "host guide" #: src/routes/project/ProjectHomeRoute.tsx:167 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:101 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:104 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:53 msgid "Host guide" msgstr "Host guide" @@ -6482,11 +6498,11 @@ msgstr "" #~ msgid "I accept the <0>terms" #~ msgstr "I accept the <0>terms" -#: src/components/chat/AgenticChatPanel.tsx:1567 +#: src/components/chat/AgenticChatPanel.tsx:1594 msgid "I applied the canvas." msgstr "I applied the canvas." -#: src/components/chat/AgenticChatPanel.tsx:1583 +#: src/components/chat/AgenticChatPanel.tsx:1610 msgid "I applied the goal." msgstr "I applied the goal." @@ -6574,7 +6590,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:1505 +#: src/components/chat/AgenticChatPanel.tsx:1518 msgid "Improve my setup" msgstr "Improve my setup" @@ -7299,7 +7315,7 @@ msgstr "library" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 #: src/routes/project/library/LibraryRoute.tsx:132 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:94 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:97 msgid "Library" msgstr "Library" @@ -7358,7 +7374,7 @@ msgstr "Link to your organisation's privacy policy that will be shown to partici #~ msgid "LinkedIn Post (Experimental)" #~ msgstr "LinkedIn Post (Experimental)" -#: src/components/chat/AgenticChatPanel.tsx:1495 +#: src/components/chat/AgenticChatPanel.tsx:1508 msgid "List my conversations" msgstr "List my conversations" @@ -7366,15 +7382,15 @@ msgstr "List my conversations" #~ msgid "List project conversations" #~ msgstr "List project conversations" -#: src/components/chat/AgenticChatPanel.tsx:1496 +#: src/components/chat/AgenticChatPanel.tsx:1509 msgid "List the conversations in this project." msgstr "List the conversations in this project." -#: src/components/chat/agenticToolActivity.ts:121 +#: src/components/chat/agenticToolActivity.ts:123 msgid "Listing conversations" msgstr "Listing conversations" -#: src/components/chat/agenticToolActivity.ts:117 +#: src/components/chat/agenticToolActivity.ts:119 msgid "Listing documentation pages" msgstr "Listing documentation pages" @@ -7427,10 +7443,14 @@ 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:986 +#: src/components/chat/AgenticChatPanel.tsx:999 msgid "Live stream interrupted. Falling back to polling." msgstr "Live stream interrupted. Falling back to polling." +#: src/components/project/ProjectExperimentalSection.tsx:45 +msgid "Living canvas" +msgstr "Living canvas" + #: src/components/chat/agenticToolActivity.ts:120 #~ msgid "Load conversation summary" #~ msgstr "Load conversation summary" @@ -7506,7 +7526,7 @@ msgstr "Loading projects..." #~ msgid "Loading projects…" #~ msgstr "Loading projects…" -#: src/components/chat/AgenticChatPanel.tsx:1438 +#: src/components/chat/AgenticChatPanel.tsx:1451 msgid "Loading this chat..." msgstr "Loading this chat..." @@ -7576,7 +7596,7 @@ msgstr "Log in to {resolvedWorkspaceName} to continue." msgid "Log out and use the invited email" msgstr "Log out and use the invited email" -#: src/components/chat/agenticToolActivity.ts:160 +#: src/components/chat/agenticToolActivity.ts:163 msgid "Logging this with the dembrane team" msgstr "Logging this with the dembrane team" @@ -8756,6 +8776,7 @@ msgid "Not available" msgstr "Not available" #: src/routes/invite/AcceptInviteRoute.tsx:568 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:214 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:353 msgid "Not now" msgstr "Not now" @@ -8839,7 +8860,7 @@ msgstr "Nothing saved yet. The assistant adds notes here as you chat." msgid "Notify participants when a report is published." msgstr "Notify participants when a report is published." -#: src/components/chat/agenticToolActivity.ts:149 +#: src/components/chat/agenticToolActivity.ts:152 msgid "Noting this for the dembrane team" msgstr "Noting this for the dembrane team" @@ -9174,7 +9195,7 @@ msgstr "Open the {0} from here." msgid "Open the chat" msgstr "Open the chat" -#: src/components/chat/AgenticChatPanel.tsx:1414 +#: src/components/chat/AgenticChatPanel.tsx:1427 msgid "Open the old chat experience" msgstr "Open the old chat experience" @@ -10132,7 +10153,7 @@ msgstr "Prefer the old chat? Start a Specific Details chat" #~ msgid "Preferences" #~ msgstr "Preferences" -#: src/components/chat/agenticToolActivity.ts:107 +#: src/components/chat/agenticToolActivity.ts:109 msgid "Preparing a navigation shortcut" msgstr "Preparing a navigation shortcut" @@ -10596,7 +10617,7 @@ msgstr "Put {name} on dembrane-managed billing at the {tier} tier? No automatic #~ msgstr "Quotes" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:510 +#: src/components/chat/AgenticChatPanel.tsx:514 msgid "Ran {0} steps at once" msgstr "Ran {0} steps at once" @@ -10642,36 +10663,36 @@ msgid "Read-only" msgstr "Read-only" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:133 +#: src/components/chat/agenticToolActivity.ts:135 msgid "Reading {0}'s summary" msgstr "Reading {0}'s summary" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:138 +#: src/components/chat/agenticToolActivity.ts:140 msgid "Reading {0}'s transcript" msgstr "Reading {0}'s transcript" -#: src/components/chat/agenticToolActivity.ts:134 +#: src/components/chat/agenticToolActivity.ts:136 msgid "Reading a conversation summary" msgstr "Reading a conversation summary" -#: src/components/chat/agenticToolActivity.ts:115 +#: src/components/chat/agenticToolActivity.ts:117 msgid "Reading a skill" msgstr "Reading a skill" -#: src/components/chat/agenticToolActivity.ts:139 +#: src/components/chat/agenticToolActivity.ts:141 msgid "Reading a transcript" msgstr "Reading a transcript" -#: src/components/chat/agenticToolActivity.ts:119 +#: src/components/chat/agenticToolActivity.ts:121 msgid "Reading project context" msgstr "Reading project context" -#: src/components/chat/agenticToolActivity.ts:109 +#: src/components/chat/agenticToolActivity.ts:111 msgid "Reading project settings" msgstr "Reading project settings" -#: src/components/chat/agenticToolActivity.ts:113 +#: src/components/chat/agenticToolActivity.ts:115 msgid "Reading the documentation" msgstr "Reading the documentation" @@ -10931,6 +10952,7 @@ msgstr "Reminder sent: support access still on" #: src/components/organisation/InviteEmailList.tsx:58 #: src/components/memory/MemoryList.tsx:98 #: src/components/memory/MemoryList.tsx:118 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:199 msgid "Remove" msgstr "Remove" @@ -11014,6 +11036,10 @@ msgstr "Remove the custom logo? The dembrane default will be used instead." msgid "Remove this memory?" msgstr "Remove this memory?" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:153 +msgid "Removed" +msgstr "Removed" + #: src/routes/organisation/OrganisationRoute.tsx:522 msgid "Removed from organisation" msgstr "Removed from organisation" @@ -11032,7 +11058,7 @@ msgstr "Rename" #~ msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:158 -#: src/components/chat/AgenticChatPanel.tsx:1370 +#: src/components/chat/AgenticChatPanel.tsx:1383 msgid "Rename chat" msgstr "Rename chat" @@ -11075,7 +11101,7 @@ msgstr "report" #: src/routes/project/ProjectHomeRoute.tsx:175 #: src/routes/project/report/ProjectReportRoute.tsx:185 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:106 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:109 #: src/components/report/ReportRenderer.tsx:75 #: src/components/report/ReportModalNavigationButton.tsx:92 msgid "Report" @@ -11381,7 +11407,7 @@ msgstr "retracted" msgid "retracted for the dembrane team" msgstr "retracted for the dembrane team" -#: src/components/chat/agenticToolActivity.ts:153 +#: src/components/chat/agenticToolActivity.ts:156 msgid "Retracting a note for the dembrane team" msgstr "Retracting a note for the dembrane team" @@ -11460,7 +11486,7 @@ msgstr "Review each change below. You can edit the new text first. Nothing chang msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1506 +#: src/components/chat/AgenticChatPanel.tsx:1519 msgid "Review my project settings and suggest improvements." msgstr "Review my project settings and suggest improvements." @@ -11540,7 +11566,7 @@ msgstr "Rows per page" #~ msgid "Run status:" #~ msgstr "Run status:" -#: src/components/chat/AgenticChatPanel.tsx:343 +#: src/components/chat/AgenticChatPanel.tsx:345 msgid "Running" msgstr "Running" @@ -11819,16 +11845,16 @@ msgstr "Search workspaces" msgid "Searched through the most relevant sources" msgstr "Searched through the most relevant sources" -#: src/components/chat/agenticToolActivity.ts:129 +#: src/components/chat/agenticToolActivity.ts:131 msgid "Searching conversations" msgstr "Searching conversations" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:128 +#: src/components/chat/agenticToolActivity.ts:130 msgid "Searching conversations for \"{0}\"" msgstr "Searching conversations for \"{0}\"" -#: src/components/chat/agenticToolActivity.ts:111 +#: src/components/chat/agenticToolActivity.ts:113 msgid "Searching the documentation" msgstr "Searching the documentation" @@ -11836,12 +11862,12 @@ msgstr "Searching the documentation" #~ msgid "Searching through the most relevant sources" #~ msgstr "Searching through the most relevant sources" -#: src/components/chat/agenticToolActivity.ts:144 +#: src/components/chat/agenticToolActivity.ts:146 msgid "Searching transcripts" msgstr "Searching transcripts" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:143 +#: src/components/chat/agenticToolActivity.ts:145 msgid "Searching transcripts for \"{0}\"" msgstr "Searching transcripts for \"{0}\"" @@ -12062,7 +12088,7 @@ msgid "Self-serve" msgstr "Self-serve" #: src/routes/project/chat/ProjectChatRoute.tsx:1024 -#: src/components/chat/AgenticChatPanel.tsx:1776 +#: src/components/chat/AgenticChatPanel.tsx:1803 msgid "Send" msgstr "Send" @@ -12204,7 +12230,7 @@ msgstr "Setting up" #: src/features/sidebar/views/workspace/WorkspaceHomeView.tsx:80 #: src/features/sidebar/views/user/UserSettingsView.tsx:34 #: src/features/sidebar/views/project/ProjectSettingsView.tsx:18 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:129 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:132 #: src/features/sidebar/views/org/OrgSettingsView.tsx:26 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 @@ -12411,7 +12437,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Show steps" msgstr "Show steps" @@ -12861,6 +12887,10 @@ msgstr "Suggested changes for your project" msgid "Suggested project goal" msgstr "Suggested project goal" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:169 +msgid "Suggested tag changes for your project" +msgstr "Suggested tag changes for your project" + #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:109 msgid "Suggested verification prompt" msgstr "Suggested verification prompt" @@ -12870,15 +12900,15 @@ msgstr "Suggested verification prompt" msgid "Suggested:" msgstr "Suggested:" -#: src/components/chat/agenticToolActivity.ts:103 +#: src/components/chat/agenticToolActivity.ts:105 msgid "Suggesting a canvas" msgstr "Suggesting a canvas" -#: src/components/chat/agenticToolActivity.ts:105 +#: src/components/chat/agenticToolActivity.ts:107 msgid "Suggesting a project goal" msgstr "Suggesting a project goal" -#: src/components/chat/agenticToolActivity.ts:101 +#: src/components/chat/agenticToolActivity.ts:103 msgid "Suggesting a verification prompt" msgstr "Suggesting a verification prompt" @@ -12886,6 +12916,10 @@ msgstr "Suggesting a verification prompt" msgid "Suggesting project changes" msgstr "Suggesting project changes" +#: src/components/chat/agenticToolActivity.ts:101 +msgid "Suggesting tag changes" +msgstr "Suggesting tag changes" + #: src/components/chat/templates.ts:26 msgid "Summarize" msgstr "Summarize" @@ -12991,7 +13025,7 @@ msgstr "System" msgid "System status" msgstr "System status" -#: src/components/project/hooks/index.ts:328 +#: src/components/project/hooks/index.ts:338 msgid "Tag deleted" msgstr "Tag deleted" @@ -13009,6 +13043,14 @@ msgstr "Tags" #~ msgid "Tags (max 3)" #~ msgstr "Tags (max 3)" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:180 +msgid "Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply." +msgstr "Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply." + +#: src/components/chat/TagsUpdateSuggestionCard.tsx:99 +msgid "Tags updated. You can fine-tune them anytime in the portal editor." +msgstr "Tags updated. You can fine-tune them anytime in the portal editor." + #: src/routes/invite/AcceptInviteRoute.tsx:483 #: src/routes/invite/AcceptInviteRoute.tsx:523 msgid "Take me to {resolvedWorkspaceName}" @@ -13394,6 +13436,10 @@ msgstr "These default view templates will be generated when you create your firs msgid "These settings are read-only. Only organisation administrators can modify project defaults." msgstr "These settings are read-only. Only organisation administrators can modify project defaults." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:132 +msgid "These tag changes are applied to your project." +msgstr "These tag changes are applied to your project." + #: src/components/invite/InviteModal.tsx:654 msgid "These workspaces are billed separately. Each person you add takes a seat in {billingContextCount} billing contexts, each invoiced on its own." msgstr "These workspaces are billed separately. Each person you add takes a seat in {billingContextCount} billing contexts, each invoiced on its own." @@ -13533,7 +13579,7 @@ msgstr "This is an example of the JSON data sent to your webhook URL when a conv msgid "This is not saved yet." msgstr "This is not saved yet." -#: src/components/chat/AgenticChatPanel.tsx:1402 +#: src/components/chat/AgenticChatPanel.tsx:1415 msgid "This is the new chat experience" msgstr "This is the new chat experience" @@ -13893,11 +13939,11 @@ msgstr "Too long" msgid "Tool" msgstr "Tool" -#: src/components/project/hooks/index.ts:591 +#: src/components/project/hooks/index.ts:601 msgid "Topic created successfully" msgstr "Topic created successfully" -#: src/components/project/hooks/index.ts:643 +#: src/components/project/hooks/index.ts:653 msgid "Topic deleted successfully" msgstr "Topic deleted successfully" @@ -13905,7 +13951,7 @@ msgstr "Topic deleted successfully" msgid "Topic label" msgstr "Topic label" -#: src/components/project/hooks/index.ts:618 +#: src/components/project/hooks/index.ts:628 msgid "Topic updated successfully" msgstr "Topic updated successfully" @@ -13990,7 +14036,7 @@ msgstr "Transcribed" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:194 +#: src/components/chat/AgenticChatPanel.tsx:196 msgid "transcript" msgstr "transcript" @@ -14006,7 +14052,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:193 +#: src/components/chat/AgenticChatPanel.tsx:195 msgid "transcript excerpt" msgstr "transcript excerpt" @@ -14479,15 +14525,15 @@ msgstr "Updates every {cadenceMinutes} minutes." #~ msgid "Updates every few minutes." #~ msgstr "Updates every few minutes." -#: src/components/chat/agenticToolActivity.ts:151 +#: src/components/chat/agenticToolActivity.ts:154 msgid "Updating a note for the dembrane team" msgstr "Updating a note for the dembrane team" -#: src/components/chat/agenticToolActivity.ts:155 +#: src/components/chat/agenticToolActivity.ts:158 msgid "Updating a saved memory" msgstr "Updating a saved memory" -#: src/components/chat/agenticToolActivity.ts:146 +#: src/components/chat/agenticToolActivity.ts:149 msgid "Updating project tags" msgstr "Updating project tags" @@ -14667,7 +14713,7 @@ msgstr "URL is required" msgid "URL must start with http:// or https://" msgstr "URL must start with http:// or https://" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:122 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:125 #: src/features/sidebar/views/org/OrgSettingsView.tsx:37 #: src/components/project/ProjectUsageAndSharing.tsx:415 #: src/components/layout/ProjectOverviewLayout.tsx:53 @@ -15210,7 +15256,7 @@ msgstr "Webhooks" msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." -#: src/routes/project/ProjectRoutes.tsx:182 +#: src/routes/project/ProjectRoutes.tsx:191 msgid "Webhooks are not enabled for this environment." msgstr "Webhooks are not enabled for this environment." @@ -15319,11 +15365,11 @@ msgstr "What should ECHO analyse or generate from the conversations?" #~ msgid "What should this report focus on?" #~ msgstr "What should this report focus on?" -#: src/components/chat/AgenticChatPanel.tsx:1501 +#: src/components/chat/AgenticChatPanel.tsx:1514 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:1500 +#: src/components/chat/AgenticChatPanel.tsx:1513 msgid "What themes came up?" msgstr "What themes came up?" @@ -15409,7 +15455,7 @@ msgid "Where would you like to go?" msgstr "Where would you like to go?" #: src/routes/project/chat/NewChatRoute.tsx:358 -#: src/components/chat/AgenticChatPanel.tsx:1478 +#: src/components/chat/AgenticChatPanel.tsx:1491 msgid "Where would you like to start?" msgstr "Where would you like to start?" @@ -15476,15 +15522,15 @@ msgid "Within my organisation" msgstr "Within my organisation" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:511 +#: src/components/chat/AgenticChatPanel.tsx:515 msgid "Worked through {0} steps" msgstr "Worked through {0} steps" -#: src/components/chat/AgenticChatPanel.tsx:1332 +#: src/components/chat/AgenticChatPanel.tsx:1345 msgid "Working on your answer..." msgstr "Working on your answer..." -#: src/components/chat/AgenticChatPanel.tsx:506 +#: src/components/chat/AgenticChatPanel.tsx:510 msgid "Working..." msgstr "Working..." diff --git a/echo/frontend/src/locales/en-US.ts b/echo/frontend/src/locales/en-US.ts index 1f6ff78ef..57d2d71ab 100644 --- a/echo/frontend/src/locales/en-US.ts +++ b/echo/frontend/src/locales/en-US.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"uSTZVH\":[[\"conversationTotal\"],\" included\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 included\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ members have joined\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Add to favorites\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"MIWKYQ\":[\"Add to quick access\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Add Your First Webhook\"],\"DtI2tD\":[\"Add your own\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"VHg3DX\":[\"Agentic Chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"All templates\"],\"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?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"QX6zrA\":[\"Analysis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymous host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Appearance\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Apply\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"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?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"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.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistant is typing...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio Tip\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Book a call to share your feedback\"],\"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.\"],\"CzeGfZ\":[\"Browse and share templates with other hosts\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Built-in\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citing the following sources\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Coming soon — share your input\"],\"bJHBId\":[\"Common use cases:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community templates\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concrete Topics\"],\"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\"],\"p2/GCq\":[\"Confirm Password\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contact sales\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"Np+C87\":[\"Conversations:\"],\"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\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"RGCCrg\":[\"Copy share link\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Create an Account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"uVzvzz\":[\"Create now instead\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"s7XwOU\":[\"Create Template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Created \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"custom\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Customize how your report is structured. This feature is coming soon.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Delete Custom Topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"MlrelG\":[\"Delete Report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane is powered by AI. Please double-check responses.\"],\"QMogcD\":[\"Reply\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe how this template is useful...\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determines under which GDPR legal basis personal data is processed. This affects consent flows, data subject rights, and retention obligations.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Display contextual suggestion pills in the chat\"],\"pfa8F0\":[\"Display name\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"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\"],\"5154Ap\":[\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"e.g. tomorrow at 9:00\"],\"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.\"],\"5oD9f/\":[\"Earlier\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"edit\"],\"ePK91l\":[\"Edit\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"gGx5tM\":[\"Editing\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Email Verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Email Verification | dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"VpwcSk\":[\"Enter new password\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"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\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"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\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"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.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Failed to start new conversation. 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\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"First Name\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus your report (optional)\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"from \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"oADIO6\":[\"Generate a new report. Previous reports will remain accessible.\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Go to feedback portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Grid view\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help us translate\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"JsWQuM\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations. You can optionally focus the report on a specific topic.\"],\"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.\"],\"Lj7sBL\":[\"Italian\"],\"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.\"],\"GaQMyV\":[\"Join \",[\"0\"],\" on dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Join the 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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Language\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Let us know!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"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\"],\"yUQgLY\":[\"Library is currently being processed\"],\"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\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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.\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"WXSxpf\":[\"Logo updated successfully\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mine\"],\"b85Pfh\":[\"Minimum 8 characters\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"zMx0gF\":[\"More templates\"],\"y1ypMV\":[\"Most popular\"],\"7BgchI\":[\"Most used\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"New conversations available — update your 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.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"3RC8Um\":[\"New conversations have been added since your last report. Generate an updated report to include them. Your previous report will remain accessible.\"],\"QgiaQ8\":[\"New date and time\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"New Project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Newest\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No announcements available\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No collections found\"],\"S8FeaY\":[\"No community templates yet. Share yours to get started.\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"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.\"],\"meAa31\":[\"No conversations yet\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"ax9iz4\":[\"No custom templates yet. Create one to get started.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"No specific focus\"],\"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}\"],\"kaDUQs\":[\"No templates yet. Create your own or browse All templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"No workspaces in this organisation yet.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Now\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"Dw7aQc\":[\"Only applies when report is published\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"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.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Open Documentation\"],\"QTXl9z\":[\"Open feedback portal\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Other hosts can see and copy your template. You can unpublish at any time.\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Pick date and time\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Pick one or more angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"lepv9z\":[\"Pin to chat bar\"],\"fr2ggG\":[\"pinned\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"Atb9XB\":[\"Pinned to chat bar\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"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\"],\"Tx36sk\":[\"Portal link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Prefer to chat directly? <0>Book a call with me\"],\"Q6hhn8\":[\"Preferences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"ANWB5x\":[\"Print this report\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Security\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy Statements\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projects Home\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"GwOmnT\":[\"Publish this report to enable printing\"],\"ZSi2AK\":[\"Publish this report to enable sharing\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"4R3R74\":[\"Published to community\"],\"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.\"],\"9iShh/\":[\"Quick Access (max 5)\"],\"utRRxm\":[\"Quick access is full (max 5)\"],\"dN0qso\":[\"Quick access:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Rate this prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"DqXVNZ\":[\"Ready to generate\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"844H5I\":[\"Regenerate Library\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevance\"],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Remove from favorites\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Remove from quick access\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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?\"],\"nVEhnc\":[\"Removed from organisation\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"UZ6fKH\":[\"Report actions\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"mgTmvC\":[\"Report structure\"],\"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\"],\"uLZGK+\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Reset to default\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Resources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Run status:\"],\"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!\"],\"RgyKxd\":[\"Save Quick Access\"],\"5dVjYt\":[\"Save template\"],\"zaYZWH\":[\"Save to my templates\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scan or click 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\"],\"QS1Nla\":[\"Schedule for later\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Search conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Search webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Send a message to start an agentic run.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Share\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Share this report\"],\"lRZMol\":[\"Share with community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Share with the community\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Share your voice\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Show a link for participants to contribute\"],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Show duration\"],\"YbxwRo\":[\"Show generated suggestions\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Sign in with Google\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"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.\"],\"zazql1\":[\"Something went wrong generating your latest report. Showing your most recent completed report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"a75OAp\":[\"Something went wrong generating your report. You can try again below.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"vf1Tc/\":[\"Specific Details needs at least one conversation.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Start Recording\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Submitted via text input\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"aZJj7n\":[\"Suggest prompts based on your conversations\"],\"FyUg+Y\":[\"Suggest prompts based on your conversations. Try sending a message to see it in action.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"6xSPmn\":[\"Suggested project goal\"],\"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\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Template prompt content...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal — it helps us fix things faster.\"],\"gtMB2A\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal. It helps us fix things faster than not submitting a report.\"],\"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.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"The issue reporter could not be loaded. Please use the feedback portal to tell us what went wrong — it helps us fix things faster.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"the project library.\"],\"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.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"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.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"This information is anonymized\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"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\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Time\"],\"Ww6cQ8\":[\"Time Created\"],\"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.\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Try Again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainian\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dFIzZ6\":[\"Unpin from chat bar\"],\"dx+iaL\":[\"Unpin project\"],\"KyKziT\":[\"Unpublish from community\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Update Report\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Updated\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Upload Audio\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Use\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"View read announcements\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"views\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"tCfopB\":[\"Want custom report structures?\"],\"VKMCO0\":[\"Want to add a template to \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"v8z9fL\":[\"Want to customize how your report looks?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"2ZUkkL\":[\"We're designing this feature and would love your input.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"ZsEVar\":[\"What should this report focus on?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"Ul3erb\":[\"What you can reach\"],\"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.\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Yours\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"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.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"uSTZVH\":[[\"conversationTotal\"],\" included\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 included\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ members have joined\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Add to favorites\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"MIWKYQ\":[\"Add to quick access\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Add Your First Webhook\"],\"DtI2tD\":[\"Add your own\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"VHg3DX\":[\"Agentic Chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"All templates\"],\"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?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"QX6zrA\":[\"Analysis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymous host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Appearance\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Apply\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"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?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"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.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistant is typing...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio Tip\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Book a call to share your feedback\"],\"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.\"],\"CzeGfZ\":[\"Browse and share templates with other hosts\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Built-in\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citing the following sources\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Coming soon — share your input\"],\"bJHBId\":[\"Common use cases:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community templates\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concrete Topics\"],\"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\"],\"p2/GCq\":[\"Confirm Password\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contact sales\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"Np+C87\":[\"Conversations:\"],\"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\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"RGCCrg\":[\"Copy share link\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Create an Account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"uVzvzz\":[\"Create now instead\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"s7XwOU\":[\"Create Template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Created \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"custom\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Customize how your report is structured. This feature is coming soon.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Delete Custom Topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"MlrelG\":[\"Delete Report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane is powered by AI. Please double-check responses.\"],\"QMogcD\":[\"Reply\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe how this template is useful...\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determines under which GDPR legal basis personal data is processed. This affects consent flows, data subject rights, and retention obligations.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Display contextual suggestion pills in the chat\"],\"pfa8F0\":[\"Display name\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"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\"],\"5154Ap\":[\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"e.g. tomorrow at 9:00\"],\"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.\"],\"5oD9f/\":[\"Earlier\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"edit\"],\"ePK91l\":[\"Edit\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"gGx5tM\":[\"Editing\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Email Verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Email Verification | dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"VpwcSk\":[\"Enter new password\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"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\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"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\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"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.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Failed to start new conversation. 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\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"First Name\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus your report (optional)\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"from \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"oADIO6\":[\"Generate a new report. Previous reports will remain accessible.\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Go to feedback portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Grid view\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help us translate\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"JsWQuM\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations. You can optionally focus the report on a specific topic.\"],\"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.\"],\"Lj7sBL\":[\"Italian\"],\"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.\"],\"GaQMyV\":[\"Join \",[\"0\"],\" on dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Join the 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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Language\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Let us know!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"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\"],\"yUQgLY\":[\"Library is currently being processed\"],\"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\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"WXSxpf\":[\"Logo updated successfully\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mine\"],\"b85Pfh\":[\"Minimum 8 characters\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"zMx0gF\":[\"More templates\"],\"y1ypMV\":[\"Most popular\"],\"7BgchI\":[\"Most used\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"New conversations available — update your 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.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"3RC8Um\":[\"New conversations have been added since your last report. Generate an updated report to include them. Your previous report will remain accessible.\"],\"QgiaQ8\":[\"New date and time\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"New Project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Newest\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No announcements available\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No collections found\"],\"S8FeaY\":[\"No community templates yet. Share yours to get started.\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"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.\"],\"meAa31\":[\"No conversations yet\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"ax9iz4\":[\"No custom templates yet. Create one to get started.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"No specific focus\"],\"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}\"],\"kaDUQs\":[\"No templates yet. Create your own or browse All templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"No workspaces in this organisation yet.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Now\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"Dw7aQc\":[\"Only applies when report is published\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"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.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Open Documentation\"],\"QTXl9z\":[\"Open feedback portal\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Other hosts can see and copy your template. You can unpublish at any time.\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Pick date and time\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Pick one or more angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"lepv9z\":[\"Pin to chat bar\"],\"fr2ggG\":[\"pinned\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"Atb9XB\":[\"Pinned to chat bar\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"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\"],\"Tx36sk\":[\"Portal link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Prefer to chat directly? <0>Book a call with me\"],\"Q6hhn8\":[\"Preferences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"ANWB5x\":[\"Print this report\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Security\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy Statements\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projects Home\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"GwOmnT\":[\"Publish this report to enable printing\"],\"ZSi2AK\":[\"Publish this report to enable sharing\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"4R3R74\":[\"Published to community\"],\"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.\"],\"9iShh/\":[\"Quick Access (max 5)\"],\"utRRxm\":[\"Quick access is full (max 5)\"],\"dN0qso\":[\"Quick access:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Rate this prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"DqXVNZ\":[\"Ready to generate\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"844H5I\":[\"Regenerate Library\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevance\"],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Remove from favorites\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Remove from quick access\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"UZ6fKH\":[\"Report actions\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"mgTmvC\":[\"Report structure\"],\"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\"],\"uLZGK+\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Reset to default\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Resources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Run status:\"],\"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!\"],\"RgyKxd\":[\"Save Quick Access\"],\"5dVjYt\":[\"Save template\"],\"zaYZWH\":[\"Save to my templates\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scan or click 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\"],\"QS1Nla\":[\"Schedule for later\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Search conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Search webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Send a message to start an agentic run.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Share\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Share this report\"],\"lRZMol\":[\"Share with community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Share with the community\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Share your voice\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Show a link for participants to contribute\"],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Show duration\"],\"YbxwRo\":[\"Show generated suggestions\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Sign in with Google\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"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.\"],\"zazql1\":[\"Something went wrong generating your latest report. Showing your most recent completed report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"a75OAp\":[\"Something went wrong generating your report. You can try again below.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"vf1Tc/\":[\"Specific Details needs at least one conversation.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Start Recording\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Submitted via text input\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"aZJj7n\":[\"Suggest prompts based on your conversations\"],\"FyUg+Y\":[\"Suggest prompts based on your conversations. Try sending a message to see it in action.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"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\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Template prompt content...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal — it helps us fix things faster.\"],\"gtMB2A\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal. It helps us fix things faster than not submitting a report.\"],\"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.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"The issue reporter could not be loaded. Please use the feedback portal to tell us what went wrong — it helps us fix things faster.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"the project library.\"],\"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.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"This information is anonymized\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"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\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Time\"],\"Ww6cQ8\":[\"Time Created\"],\"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.\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Try Again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainian\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dFIzZ6\":[\"Unpin from chat bar\"],\"dx+iaL\":[\"Unpin project\"],\"KyKziT\":[\"Unpublish from community\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Update Report\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Updated\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Upload Audio\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Use\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"View read announcements\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"views\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"tCfopB\":[\"Want custom report structures?\"],\"VKMCO0\":[\"Want to add a template to \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"v8z9fL\":[\"Want to customize how your report looks?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"2ZUkkL\":[\"We're designing this feature and would love your input.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Welcome to dembrane Chat! Use the sidebar to select resources and conversations that you want to analyse. Then, you can ask questions about the selected resources and conversations.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"ZsEVar\":[\"What should this report focus on?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"Ul3erb\":[\"What you can reach\"],\"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.\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Yours\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"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 f7d56a9e0..a192bc61c 100644 --- a/echo/frontend/src/locales/es-ES.po +++ b/echo/frontend/src/locales/es-ES.po @@ -740,11 +740,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:191 +#: src/components/chat/AgenticChatPanel.tsx:193 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:190 +#: src/components/chat/AgenticChatPanel.tsx:192 msgid "{name}'s transcript excerpt" msgstr "" @@ -1067,6 +1067,10 @@ msgstr "" msgid "A friendly name to identify this webhook" msgstr "Un nombre amigable para identificar este webhook" +#: src/components/project/ProjectExperimentalSection.tsx:52 +msgid "A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed." +msgstr "" + #: src/routes/project/report/ProjectReportRoute.tsx:564 msgid "A new report will be automatically generated and published at the scheduled time." msgstr "Se generará y publicará automáticamente un nuevo informe en el horario programado." @@ -1164,7 +1168,7 @@ msgstr "" #: src/routes/workspaces/CreateWorkspaceRoute.tsx:702 #: src/routes/project/CreateProjectRoute.tsx:256 #: src/routes/project/CreateProjectRoute.tsx:345 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:117 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:120 #: src/components/project/ProjectUsageAndSharing.tsx:190 #: src/components/layout/ProjectOverviewLayout.tsx:52 msgid "Access" @@ -1304,6 +1308,7 @@ msgstr "Filtros activos" #: src/routes/organisation/OrganisationRoute.tsx:2054 #: src/routes/organisation/OrganisationRoute.tsx:2077 #: src/components/project/ProjectSharingModal.tsx:252 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:191 #: src/components/billing/BillingManager.tsx:1461 msgid "Add" msgstr "Añadir" @@ -1464,6 +1469,7 @@ msgstr "Añadir tu primer Webhook" #~ msgstr "Añadir el tuyo" #: src/components/project/ProjectSharingModal.tsx:68 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:145 msgid "Added" msgstr "" @@ -1640,8 +1646,8 @@ msgstr "Configuración Avanzada" #~ msgid "Agent is working..." #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:287 -#: src/components/chat/AgenticChatPanel.tsx:314 +#: src/components/chat/AgenticChatPanel.tsx:289 +#: src/components/chat/AgenticChatPanel.tsx:316 msgid "Agent run failed" msgstr "" @@ -1960,6 +1966,7 @@ msgstr "" #: src/components/view/CreateViewForm.tsx:153 #: src/components/goal/GoalSuggestionCard.tsx:122 #: src/components/common/ImageCropModal.tsx:148 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:223 #: src/components/chat/CanvasSuggestionCard.tsx:361 msgid "Apply" msgstr "Aplicar" @@ -2130,7 +2137,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1481 +#: src/components/chat/AgenticChatPanel.tsx:1494 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 "" @@ -2150,7 +2157,7 @@ msgstr "" msgid "Ask about your conversations, or type to find an earlier chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1739 +#: src/components/chat/AgenticChatPanel.tsx:1766 msgid "Ask about your conversations..." msgstr "" @@ -2474,6 +2481,7 @@ msgstr "Configuración Básica" #: src/components/report/CreateReportForm.tsx:235 #: src/components/project/ProjectPortalEditor.tsx:1483 #: src/components/project/ProjectPortalEditor.tsx:1564 +#: src/components/project/ProjectExperimentalSection.tsx:48 #: src/components/conversation/RetranscribeConversation.tsx:151 #: src/components/chat/ChatModeSelector.tsx:158 #: src/components/chat/ChatModeBanner.tsx:45 @@ -2723,7 +2731,7 @@ msgstr "" #: src/components/common/ImageCropModal.tsx:145 #: src/components/common/FeedbackPortalModal.tsx:124 #: src/components/common/ConfirmModal.tsx:44 -#: src/components/chat/AgenticChatPanel.tsx:1708 +#: src/components/chat/AgenticChatPanel.tsx:1735 msgid "Cancel" msgstr "Cancelar" @@ -2756,7 +2764,7 @@ msgstr "Cancelar" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1696 +#: src/components/chat/AgenticChatPanel.tsx:1723 msgid "Cancel current run" msgstr "" @@ -2957,7 +2965,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:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Chat" msgstr "Chat" @@ -3022,7 +3030,7 @@ msgstr "" msgid "Checked {checkedAgo}. Nothing new since your last conversation. Updated {updatedAgo}." msgstr "" -#: src/components/chat/agenticToolActivity.ts:123 +#: src/components/chat/agenticToolActivity.ts:125 msgid "Checking live conversations" msgstr "" @@ -3436,7 +3444,7 @@ msgstr "Etiquetas de la conversación" msgid "conversations" msgstr "conversaciones" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:111 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:114 #: src/components/workspace/OrganisationProjectsTable.tsx:219 #: src/components/project/ProjectUsageAndSharing.tsx:453 #: src/components/conversation/ProjectConversationsPanel.tsx:725 @@ -3552,6 +3560,10 @@ msgstr "Copiar al portapapeles" msgid "Copying..." msgstr "Copiando..." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:102 +msgid "Could not apply all the tag changes." +msgstr "" + #: src/components/chat/ProjectUpdateSuggestionCard.tsx:182 msgid "Could not apply the changes. Nothing was saved." msgstr "" @@ -3638,7 +3650,7 @@ msgstr "" msgid "Could not save tags" msgstr "" -#: src/components/project/hooks/index.ts:450 +#: src/components/project/hooks/index.ts:460 msgid "Could not save the host guide" msgstr "" @@ -4424,6 +4436,7 @@ msgid "Dismiss" msgstr "" #: src/components/goal/GoalSuggestionCard.tsx:86 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:173 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:249 #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:113 #: src/components/chat/CanvasSuggestionCard.tsx:256 @@ -4484,7 +4497,7 @@ msgstr "" #: src/routes/onboarding/OnboardingRoute.tsx:525 #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 -#: src/components/chat/AgenticChatPanel.tsx:333 +#: src/components/chat/AgenticChatPanel.tsx:335 msgid "Done" msgstr "" @@ -4634,6 +4647,10 @@ msgstr "" #~ msgid "Earlier" #~ msgstr "Anteriores" +#: src/components/project/ProjectExperimentalSection.tsx:25 +msgid "Early features you can try on this project before they are ready for everyone." +msgstr "" + #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:1065 msgid "participant.button.echo" @@ -4952,7 +4969,7 @@ msgstr "Ingresa el código de 6 dígitos de tu aplicación de autenticación." msgid "Enter the current six-digit code from your authenticator app." msgstr "Ingresa el código actual de seis dígitos de tu aplicación de autenticación." -#: src/components/chat/AgenticChatPanel.tsx:1756 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Enter to send, Shift+Enter for a new line" msgstr "" @@ -4981,8 +4998,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:371 -#: src/components/chat/AgenticChatPanel.tsx:338 -#: src/components/chat/AgenticChatPanel.tsx:1427 +#: src/components/chat/AgenticChatPanel.tsx:340 +#: src/components/chat/AgenticChatPanel.tsx:1440 msgid "Error" msgstr "Error" @@ -5002,10 +5019,10 @@ msgstr "Error al crear el informe" #~ msgid "Error loading insights" #~ msgstr "Error al cargar los insights" -#: src/routes/project/ProjectRoutes.tsx:81 -#: src/routes/project/ProjectRoutes.tsx:168 -#: src/routes/project/ProjectRoutes.tsx:270 -#: src/routes/project/ProjectRoutes.tsx:309 +#: src/routes/project/ProjectRoutes.tsx:83 +#: src/routes/project/ProjectRoutes.tsx:177 +#: src/routes/project/ProjectRoutes.tsx:279 +#: src/routes/project/ProjectRoutes.tsx:318 msgid "Error loading project" msgstr "Error al cargar el proyecto" @@ -5139,10 +5156,9 @@ msgstr "Salir de pantalla completa" msgid "Expand workspaces" msgstr "" -#: src/components/report/UpdateReportModalButton.tsx:191 -#: src/components/report/CreateReportForm.tsx:198 -#~ msgid "Experimental" -#~ msgstr "Experimental" +#: src/components/project/ProjectExperimentalSection.tsx:23 +msgid "Experimental" +msgstr "Experimental" #: src/components/billing/BillingManager.tsx:182 msgid "Expired" @@ -5273,7 +5289,7 @@ msgstr "Error al copiar el chat. Por favor, inténtalo de nuevo." msgid "Failed to copy transcript. Please try again." msgstr "No se pudo copiar la transcripción. Inténtalo de nuevo." -#: src/components/project/hooks/index.ts:583 +#: src/components/project/hooks/index.ts:593 msgid "Failed to create custom topic" msgstr "Error al crear el tema personalizado" @@ -5285,7 +5301,7 @@ msgstr "" msgid "Failed to delete chat" msgstr "" -#: src/components/project/hooks/index.ts:635 +#: src/components/project/hooks/index.ts:645 msgid "Failed to delete custom topic" msgstr "Error al eliminar el tema personalizado" @@ -5297,7 +5313,7 @@ msgstr "" msgid "Failed to delete response" msgstr "Error al eliminar la respuesta" -#: src/components/project/hooks/index.ts:331 +#: src/components/project/hooks/index.ts:341 msgid "Failed to delete tag" msgstr "" @@ -5426,15 +5442,15 @@ 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:1299 +#: src/components/chat/AgenticChatPanel.tsx:1312 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1258 +#: src/components/chat/AgenticChatPanel.tsx:1271 msgid "Failed to submit agentic message" msgstr "" -#: src/components/project/hooks/index.ts:610 +#: src/components/project/hooks/index.ts:620 msgid "Failed to update custom topic" msgstr "Error al actualizar el tema personalizado" @@ -5697,7 +5713,7 @@ msgstr "" #~ msgid "Forecast: ~{0}" #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:157 +#: src/components/chat/agenticToolActivity.ts:160 msgid "Forgetting a saved memory" msgstr "" @@ -6134,7 +6150,7 @@ msgstr "" msgid "Hide revision data" msgstr "Ocultar datos de revisión" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Hide steps" msgstr "" @@ -6159,7 +6175,7 @@ msgid "host guide" msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:167 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:101 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:104 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:53 msgid "Host guide" msgstr "" @@ -6223,11 +6239,11 @@ msgstr "" #~ msgid "I accept the <0>terms" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1567 +#: src/components/chat/AgenticChatPanel.tsx:1594 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1583 +#: src/components/chat/AgenticChatPanel.tsx:1610 msgid "I applied the goal." msgstr "" @@ -6305,7 +6321,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1505 +#: src/components/chat/AgenticChatPanel.tsx:1518 msgid "Improve my setup" msgstr "" @@ -7020,7 +7036,7 @@ msgstr "" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 #: src/routes/project/library/LibraryRoute.tsx:132 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:94 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:97 msgid "Library" msgstr "Biblioteca" @@ -7089,7 +7105,7 @@ msgstr "Enlace a la política de privacidad de tu organización que se mostrará #~ msgid "LinkedIn Post (Experimental)" #~ msgstr "Publicación LinkedIn (Experimental)" -#: src/components/chat/AgenticChatPanel.tsx:1495 +#: src/components/chat/AgenticChatPanel.tsx:1508 msgid "List my conversations" msgstr "" @@ -7097,15 +7113,15 @@ msgstr "" #~ msgid "List project conversations" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1496 +#: src/components/chat/AgenticChatPanel.tsx:1509 msgid "List the conversations in this project." msgstr "" -#: src/components/chat/agenticToolActivity.ts:121 +#: src/components/chat/agenticToolActivity.ts:123 msgid "Listing conversations" msgstr "" -#: src/components/chat/agenticToolActivity.ts:117 +#: src/components/chat/agenticToolActivity.ts:119 msgid "Listing documentation pages" msgstr "" @@ -7157,10 +7173,14 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:986 +#: src/components/chat/AgenticChatPanel.tsx:999 msgid "Live stream interrupted. Falling back to polling." msgstr "" +#: src/components/project/ProjectExperimentalSection.tsx:45 +msgid "Living canvas" +msgstr "" + #: src/components/chat/agenticToolActivity.ts:120 #~ msgid "Load conversation summary" #~ msgstr "" @@ -7236,7 +7256,7 @@ msgstr "" #~ msgid "Loading projects…" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1438 +#: src/components/chat/AgenticChatPanel.tsx:1451 msgid "Loading this chat..." msgstr "" @@ -7305,7 +7325,7 @@ msgstr "" msgid "Log out and use the invited email" msgstr "" -#: src/components/chat/agenticToolActivity.ts:160 +#: src/components/chat/agenticToolActivity.ts:163 msgid "Logging this with the dembrane team" msgstr "" @@ -8473,6 +8493,7 @@ msgid "Not available" msgstr "No disponible" #: src/routes/invite/AcceptInviteRoute.tsx:568 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:214 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:353 msgid "Not now" msgstr "" @@ -8556,7 +8577,7 @@ msgstr "" msgid "Notify participants when a report is published." msgstr "Notificar a los participantes cuando se publique un informe." -#: src/components/chat/agenticToolActivity.ts:149 +#: src/components/chat/agenticToolActivity.ts:152 msgid "Noting this for the dembrane team" msgstr "" @@ -8887,7 +8908,7 @@ msgstr "" msgid "Open the chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1414 +#: src/components/chat/AgenticChatPanel.tsx:1427 msgid "Open the old chat experience" msgstr "" @@ -9938,7 +9959,7 @@ msgstr "" #~ msgid "Preferences" #~ msgstr "Preferencias" -#: src/components/chat/agenticToolActivity.ts:107 +#: src/components/chat/agenticToolActivity.ts:109 msgid "Preparing a navigation shortcut" msgstr "" @@ -10381,7 +10402,7 @@ msgstr "" #~ msgstr "Citas" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:510 +#: src/components/chat/AgenticChatPanel.tsx:514 msgid "Ran {0} steps at once" msgstr "" @@ -10427,36 +10448,36 @@ msgid "Read-only" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:133 +#: src/components/chat/agenticToolActivity.ts:135 msgid "Reading {0}'s summary" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:138 +#: src/components/chat/agenticToolActivity.ts:140 msgid "Reading {0}'s transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:134 +#: src/components/chat/agenticToolActivity.ts:136 msgid "Reading a conversation summary" msgstr "" -#: src/components/chat/agenticToolActivity.ts:115 +#: src/components/chat/agenticToolActivity.ts:117 msgid "Reading a skill" msgstr "" -#: src/components/chat/agenticToolActivity.ts:139 +#: src/components/chat/agenticToolActivity.ts:141 msgid "Reading a transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:119 +#: src/components/chat/agenticToolActivity.ts:121 msgid "Reading project context" msgstr "" -#: src/components/chat/agenticToolActivity.ts:109 +#: src/components/chat/agenticToolActivity.ts:111 msgid "Reading project settings" msgstr "" -#: src/components/chat/agenticToolActivity.ts:113 +#: src/components/chat/agenticToolActivity.ts:115 msgid "Reading the documentation" msgstr "" @@ -10710,6 +10731,7 @@ msgstr "" #: src/components/organisation/InviteEmailList.tsx:58 #: src/components/memory/MemoryList.tsx:98 #: src/components/memory/MemoryList.tsx:118 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:199 msgid "Remove" msgstr "Eliminar" @@ -10793,6 +10815,10 @@ msgstr "" msgid "Remove this memory?" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:153 +msgid "Removed" +msgstr "" + #: src/routes/organisation/OrganisationRoute.tsx:522 msgid "Removed from organisation" msgstr "" @@ -10810,7 +10836,7 @@ msgstr "Renombrar" #~ msgstr "Renombrar" #: src/components/chat/ChatAccordion.tsx:158 -#: src/components/chat/AgenticChatPanel.tsx:1370 +#: src/components/chat/AgenticChatPanel.tsx:1383 msgid "Rename chat" msgstr "Renombrar chat" @@ -10849,7 +10875,7 @@ msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:175 #: src/routes/project/report/ProjectReportRoute.tsx:185 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:106 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:109 #: src/components/report/ReportRenderer.tsx:75 #: src/components/report/ReportModalNavigationButton.tsx:92 msgid "Report" @@ -11152,7 +11178,7 @@ msgstr "" msgid "retracted for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:153 +#: src/components/chat/agenticToolActivity.ts:156 msgid "Retracting a note for the dembrane team" msgstr "" @@ -11231,7 +11257,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Revisar archivos antes de subir" -#: src/components/chat/AgenticChatPanel.tsx:1506 +#: src/components/chat/AgenticChatPanel.tsx:1519 msgid "Review my project settings and suggest improvements." msgstr "" @@ -11311,7 +11337,7 @@ msgstr "Filas por página" #~ msgid "Run status:" #~ msgstr "Estado de la ejecución:" -#: src/components/chat/AgenticChatPanel.tsx:343 +#: src/components/chat/AgenticChatPanel.tsx:345 msgid "Running" msgstr "" @@ -11590,16 +11616,16 @@ msgstr "" msgid "Searched through the most relevant sources" msgstr "Buscó en las fuentes más relevantes" -#: src/components/chat/agenticToolActivity.ts:129 +#: src/components/chat/agenticToolActivity.ts:131 msgid "Searching conversations" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:128 +#: src/components/chat/agenticToolActivity.ts:130 msgid "Searching conversations for \"{0}\"" msgstr "" -#: src/components/chat/agenticToolActivity.ts:111 +#: src/components/chat/agenticToolActivity.ts:113 msgid "Searching the documentation" msgstr "" @@ -11607,12 +11633,12 @@ msgstr "" #~ msgid "Searching through the most relevant sources" #~ msgstr "Buscando en las fuentes más relevantes" -#: src/components/chat/agenticToolActivity.ts:144 +#: src/components/chat/agenticToolActivity.ts:146 msgid "Searching transcripts" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:143 +#: src/components/chat/agenticToolActivity.ts:145 msgid "Searching transcripts for \"{0}\"" msgstr "" @@ -11830,7 +11856,7 @@ msgid "Self-serve" msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:1024 -#: src/components/chat/AgenticChatPanel.tsx:1776 +#: src/components/chat/AgenticChatPanel.tsx:1803 msgid "Send" msgstr "Enviar" @@ -11971,7 +11997,7 @@ msgstr "" #: src/features/sidebar/views/workspace/WorkspaceHomeView.tsx:80 #: src/features/sidebar/views/user/UserSettingsView.tsx:34 #: src/features/sidebar/views/project/ProjectSettingsView.tsx:18 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:129 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:132 #: src/features/sidebar/views/org/OrgSettingsView.tsx:26 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 @@ -12175,7 +12201,7 @@ msgstr "Mostrar referencias" msgid "Show revision data" msgstr "Mostrar datos de revisión" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Show steps" msgstr "" @@ -12614,6 +12640,10 @@ msgstr "" msgid "Suggested project goal" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:169 +msgid "Suggested tag changes for your project" +msgstr "" + #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:109 msgid "Suggested verification prompt" msgstr "" @@ -12623,15 +12653,15 @@ msgstr "" msgid "Suggested:" msgstr "Sugerido:" -#: src/components/chat/agenticToolActivity.ts:103 +#: src/components/chat/agenticToolActivity.ts:105 msgid "Suggesting a canvas" msgstr "" -#: src/components/chat/agenticToolActivity.ts:105 +#: src/components/chat/agenticToolActivity.ts:107 msgid "Suggesting a project goal" msgstr "" -#: src/components/chat/agenticToolActivity.ts:101 +#: src/components/chat/agenticToolActivity.ts:103 msgid "Suggesting a verification prompt" msgstr "" @@ -12639,6 +12669,10 @@ msgstr "" msgid "Suggesting project changes" msgstr "" +#: src/components/chat/agenticToolActivity.ts:101 +msgid "Suggesting tag changes" +msgstr "" + #: src/components/chat/templates.ts:26 msgid "Summarize" msgstr "Resumir" @@ -12743,7 +12777,7 @@ msgstr "Sistema" msgid "System status" msgstr "" -#: src/components/project/hooks/index.ts:328 +#: src/components/project/hooks/index.ts:338 msgid "Tag deleted" msgstr "" @@ -12761,6 +12795,14 @@ msgstr "Etiquetas" #~ msgid "Tags (max 3)" #~ msgstr "Tags (máx. 3)" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:180 +msgid "Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply." +msgstr "" + +#: src/components/chat/TagsUpdateSuggestionCard.tsx:99 +msgid "Tags updated. You can fine-tune them anytime in the portal editor." +msgstr "" + #: src/routes/invite/AcceptInviteRoute.tsx:483 #: src/routes/invite/AcceptInviteRoute.tsx:523 msgid "Take me to {resolvedWorkspaceName}" @@ -13133,6 +13175,10 @@ msgstr "Estas plantillas de vista predeterminadas se generarán cuando crees tu msgid "These settings are read-only. Only organisation administrators can modify project defaults." msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:132 +msgid "These tag changes are applied to your project." +msgstr "" + #: src/components/invite/InviteModal.tsx:654 msgid "These workspaces are billed separately. Each person you add takes a seat in {billingContextCount} billing contexts, each invoiced on its own." msgstr "" @@ -13269,7 +13315,7 @@ msgstr "Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando msgid "This is not saved yet." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1402 +#: src/components/chat/AgenticChatPanel.tsx:1415 msgid "This is the new chat experience" msgstr "" @@ -13611,11 +13657,11 @@ msgstr "Demasiado largo" msgid "Tool" msgstr "" -#: src/components/project/hooks/index.ts:591 +#: src/components/project/hooks/index.ts:601 msgid "Topic created successfully" msgstr "Tema creado correctamente" -#: src/components/project/hooks/index.ts:643 +#: src/components/project/hooks/index.ts:653 msgid "Topic deleted successfully" msgstr "Tema eliminado correctamente" @@ -13623,7 +13669,7 @@ msgstr "Tema eliminado correctamente" msgid "Topic label" msgstr "Etiqueta de tema" -#: src/components/project/hooks/index.ts:618 +#: src/components/project/hooks/index.ts:628 msgid "Topic updated successfully" msgstr "Tema actualizado correctamente" @@ -13708,7 +13754,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribiendo..." -#: src/components/chat/AgenticChatPanel.tsx:194 +#: src/components/chat/AgenticChatPanel.tsx:196 msgid "transcript" msgstr "" @@ -13724,7 +13770,7 @@ msgstr "Transcripción" msgid "Transcript copied to clipboard" msgstr "Transcripción copiada al portapapeles" -#: src/components/chat/AgenticChatPanel.tsx:193 +#: src/components/chat/AgenticChatPanel.tsx:195 msgid "transcript excerpt" msgstr "" @@ -14189,15 +14235,15 @@ msgstr "" #~ msgid "Updates every few minutes." #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:151 +#: src/components/chat/agenticToolActivity.ts:154 msgid "Updating a note for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:155 +#: src/components/chat/agenticToolActivity.ts:158 msgid "Updating a saved memory" msgstr "" -#: src/components/chat/agenticToolActivity.ts:146 +#: src/components/chat/agenticToolActivity.ts:149 msgid "Updating project tags" msgstr "" @@ -14373,7 +14419,7 @@ msgstr "La URL es requerida" msgid "URL must start with http:// or https://" msgstr "La URL debe empezar con http:// o https://" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:122 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:125 #: src/features/sidebar/views/org/OrgSettingsView.tsx:37 #: src/components/project/ProjectUsageAndSharing.tsx:415 #: src/components/layout/ProjectOverviewLayout.tsx:53 @@ -14900,7 +14946,7 @@ msgstr "Webhooks" msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \"sistema de notificaciones\" para tus otras herramientas." -#: src/routes/project/ProjectRoutes.tsx:182 +#: src/routes/project/ProjectRoutes.tsx:191 msgid "Webhooks are not enabled for this environment." msgstr "" @@ -15007,11 +15053,11 @@ msgstr "¿Qué debe ECHO analizar o generar a partir de las conversaciones?" #~ msgid "What should this report focus on?" #~ msgstr "¿En qué debe centrarse este informe?" -#: src/components/chat/AgenticChatPanel.tsx:1501 +#: src/components/chat/AgenticChatPanel.tsx:1514 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1500 +#: src/components/chat/AgenticChatPanel.tsx:1513 msgid "What themes came up?" msgstr "" @@ -15097,7 +15143,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:358 -#: src/components/chat/AgenticChatPanel.tsx:1478 +#: src/components/chat/AgenticChatPanel.tsx:1491 msgid "Where would you like to start?" msgstr "" @@ -15164,15 +15210,15 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:511 +#: src/components/chat/AgenticChatPanel.tsx:515 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1332 +#: src/components/chat/AgenticChatPanel.tsx:1345 msgid "Working on your answer..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:506 +#: src/components/chat/AgenticChatPanel.tsx:510 msgid "Working..." msgstr "" diff --git a/echo/frontend/src/locales/es-ES.ts b/echo/frontend/src/locales/es-ES.ts index 2a246d37c..16fa54143 100644 --- a/echo/frontend/src/locales/es-ES.ts +++ b/echo/frontend/src/locales/es-ES.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"participant.anonymization.notice\":[\"Tu transcripción será anonimizada y tu anfitrión no podrá escuchar tu grabación.\"],\"announcements\":[\"anuncios\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(opcional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"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\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversaciones • Editado \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"uSTZVH\":[[\"conversationTotal\"],\" incluidas\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 incluida\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 vista\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ miembros han se unido\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"L9boOH\":[\"2. Cuando ocurre un evento de conversación o informe, enviamos automáticamente los datos a tu URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"Cuenta y seguridad\"],\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Añadir a favoritos\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"MIWKYQ\":[\"Añadir a acceso rápido\"],\"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\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"DtI2tD\":[\"Añadir el tuyo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Añadidas\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"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\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Ejecución guiada por herramientas\"],\"VHg3DX\":[\"Chat Agentic\"],\"N40H+G\":[\"Todo\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"Todas las plantillas\"],\"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?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"zqhMd0\":[\"Ha ocurrido un error inesperado. Recargar la página o volver al inicio suele ayudar.\"],\"QX6zrA\":[\"Análisis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"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\"],\"1mXYsL\":[\"Host anónimo\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Apariencia\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Aplicar\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Aplicar plantilla\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Aprobado\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"ELQ+fw\":[\"¿Estás seguro de que quieres eliminar este informe? Esta acción no se puede deshacer.\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"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?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"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.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La reproducción de audio no está disponible para conversaciones anónimas\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Consejo de audio\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"¡Comenzar!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Reserve una llamada para compartir sus comentarios\"],\"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.\"],\"CzeGfZ\":[\"Explorar y compartir plantillas con otros hosts\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Integradas\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"IqudIv\":[\"Al eliminar este proyecto, eliminará todos los datos asociados. Esta acción no se puede deshacer. ¿Está completamente seguro?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancelar programación\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Nombre del chat\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"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\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Próximamente — comparta sus ideas\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"chL5IG\":[\"Comunidad\"],\"TVpZgL\":[\"Plantillas de comunidad\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"CfO59/\":[\"Comparar y Contrastar Insights\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Completar\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Temas concretos\"],\"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\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contactar a ventas\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"4b3oEV\":[\"Contenido\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"JX3KT4\":[\"Sugerencias contextuales\"],\"xGVfLh\":[\"Continuar\"],\"participant.button.continue\":[\"Continuar\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversación\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"Np+C87\":[\"Conversaciones:\"],\"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\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copiar contenido del informe\"],\"vAkFou\":[\"Copiar secreto\"],\"RGCCrg\":[\"Copiar enlace para compartir\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"uVzvzz\":[\"Crear ahora\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Crear informe\"],\"A5hiCy\":[\"Crear plantilla\"],\"s7XwOU\":[\"Crear plantilla\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Creado \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Creado el\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Recortar avatar\"],\"udBqWc\":[\"Recortar imagen\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recortar logo\"],\"yOrQ4N\":[\"Logo actual\"],\"Pn2B7/\":[\"Contraseña actual\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"personalizado\"],\"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.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Personalice la estructura de su informe. Esta función estará disponible pronto.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Eliminar Tema Personalizado\"],\"mp235G\":[\"Eliminar proyecto\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"rUWrSE\":[\"Eliminar informe\"],\"MlrelG\":[\"Eliminar informe\"],\"qr0gpK\":[\"Eliminar etiqueta\"],\"DFjdv0\":[\"Eliminar plantilla\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane funciona con IA. Revisa bien las respuestas.\"],\"QMogcD\":[\"Respuesta\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe cómo es útil esta plantilla...\"],\"Fs/0D5\":[\"Describe lo que el modelo de lenguaje debe extraer o resumir de la conversación...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determina bajo qué base legal de GDPR se procesan los datos personales. Esto afecta a los flujos de consentimiento, los derechos de los sujetos de datos y las obligaciones de retención.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Mostrar sugerencias contextuales en el chat\"],\"pfa8F0\":[\"Nombre para mostrar\"],\"vU/Hht\":[\"Distribución\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"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\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"p. ej. mañana a las 9:00\"],\"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.\"],\"5oD9f/\":[\"Anteriores\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"lgm7y2\":[\"editar\"],\"ePK91l\":[\"Editar\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Editar Conversación\"],\"Y/3VME\":[\"Editar Tema Personalizado\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"gGx5tM\":[\"Editando\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Verificación de Correo Electrónico | dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji mostrado junto al tema, por ejemplo: 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"dashboard.dembrane.feature.verify.description\":[\"Active esta función para permitir que los participantes verifiquen y aprueben \\\"resultados\\\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Introduzca la contraseña actual\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"VpwcSk\":[\"Introduzca la nueva contraseña\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"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.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"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\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"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\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"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.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"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\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"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\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"3AFOMQ\":[\"Filter by name or id\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Encontrar contradicciones y sugerir preguntas de seguimiento\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finalizado\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"Nombre\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Enfoque\"],\"wD4aF6\":[\"Enfoca tu informe (opcional)\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"de \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"3qkggm\":[\"Pantalla completa\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generar\"],\"EIdJgG\":[\"Generar un nuevo informe\"],\"oADIO6\":[\"Genera un nuevo informe. Los informes anteriores seguirán siendo accesibles.\"],\"QsUhrf\":[\"Generar un informe\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"MWSGhX\":[\"Generar biblioteca\"],\"5SWGxv\":[\"Generar ahora\"],\"GWUJ9X\":[\"Generar ahora\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"DXr0zk\":[\"Pantalla completa\"],\"iWpEwy\":[\"Ir al inicio\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Ir al portal de comentarios\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+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\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Concepto específico resaltado\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Inicio\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Cómo funciona:\"],\"h9n8Kn\":[\"How seats work\"],\"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?\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Incluir enlace del portal\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Información\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instrucciones\"],\"MSVCjk\":[\"Instrucciones para generar el resultado de la verificación\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Dirección IP\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"5dxEAB\":[\"Parece que aún no tiene un informe para este proyecto. Genere uno para obtener una descripción general de sus conversaciones.\"],\"JsWQuM\":[\"Parece que aún no tienes un informe para este proyecto. Genera uno para obtener un resumen de tus conversaciones. Opcionalmente puedes enfocar el informe en un tema específico.\"],\"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.\"],\"Lj7sBL\":[\"Italiano\"],\"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.\"],\"GaQMyV\":[\"Únete a \",[\"0\"],\" en dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Únete a la comunidad de Slack\"],\"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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Un momento\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"Justo ahora\"],\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Idioma\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Último\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Háganos saber!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"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\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"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\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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.\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"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\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo eliminado\"],\"MjfaMh\":[\"Logo actualizado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Cerrar sesión\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Más largo primero\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mis plantillas\"],\"b85Pfh\":[\"Mínimo 8 caracteres\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"más\"],\"JcD7qf\":[\"Más acciones\"],\"zMx0gF\":[\"Más templates\"],\"y1ypMV\":[\"Más populares\"],\"7BgchI\":[\"Más utilizadas\"],\"QWdKwH\":[\"Mover\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Mover Conversación\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Debe ser al menos 10 minutos en el futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mis plantillas\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"Nuevas conversaciones disponibles — actualiza tu informe\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"3RC8Um\":[\"Se han añadido nuevas conversaciones desde tu último informe. Genera un informe actualizado para incluirlas. Tu informe anterior seguirá siendo accesible.\"],\"QgiaQ8\":[\"Nueva fecha y hora\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"Nueva contraseña\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Nuevo informe\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Más recientes\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Más nuevos primero\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No se encontraron acciones\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"S8FeaY\":[\"Aún no hay plantillas de la comunidad. Comparte las tuyas para empezar.\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"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.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Aun no hay conversaciones. Puede programar un informe ahora y las conversaciones se incluiran una vez que se agreguen.\"],\"ax9iz4\":[\"Aún no hay plantillas. Crea una para empezar.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"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\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"1iQvuD\":[\"Aún no hay informes\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"Sin enfoque específico\"],\"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}\"],\"kaDUQs\":[\"Aún no hay plantillas. Crea la tuya o explora Todas las plantillas.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"Aún no hay workspaces en esta organización.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Ahora\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"En curso\"],\"conversation.ongoing\":[\"En curso\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"Dw7aQc\":[\"Solo se aplica cuando el informe está publicado\"],\"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.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"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.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Abrir Documentación\"],\"QTXl9z\":[\"Abrir portal de comentarios\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Abrir guía del host\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Opcional (recurre al inglés)\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Otros hosts pueden ver y copiar tu plantilla. Puedes retirarla en cualquier momento.\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pausar\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Seleccionar fecha y hora\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Elige uno o más ángulos\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Fijar\"],\"u8qC4w\":[\"Fijar proyecto\"],\"S+WiJ3\":[\"Fije plantillas aquí para acceso rápido.\"],\"lepv9z\":[\"Fijar a la barra de chat\"],\"fr2ggG\":[\"fijados\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Fijados está lleno (máx. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Plantillas fijadas\"],\"Atb9XB\":[\"Fijado a la barra de chat\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"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)\"],\"gEEhkM\":[\"Graba tu respuesta haciendo clic en el botón \\\"Record\\\" de abajo. También puedes responder por texto haciendo clic en el icono de texto.\\n**Mantén esta pantalla encendida**\\n(pantalla negra = no está grabando)\\nTu transcripción será anonimizada y tu anfitrión no podrá escuchar tu grabación.\"],\"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.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"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\"],\"Tx36sk\":[\"Enlace del portal\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Propulsado por\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"¿Prefiere chatear directamente? <0>Reserve una llamada conmigo\"],\"Q6hhn8\":[\"Preferencias\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/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.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"S8ugMC\":[\"Imprimir informe\"],\"ANWB5x\":[\"Imprimir este informe\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacidad y Seguridad\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Proyecto creado\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"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.\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"Valores predeterminados del proyecto\"],\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Vista General del Proyecto | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publicar\"],\"vsX8VJ\":[\"Publique este informe primero para mostrar el enlace del portal\"],\"GwOmnT\":[\"Publique este informe para habilitar la impresión\"],\"ZSi2AK\":[\"Publique este informe para habilitar el uso compartido\"],\"IHzoSN\":[\"Publique este informe para obtener un enlace para compartir\"],\"u3wRF+\":[\"Publicado\"],\"4R3R74\":[\"Publicado en la comunidad\"],\"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.\"],\"9iShh/\":[\"Acceso rápido (máx. 5)\"],\"utRRxm\":[\"Acceso rápido lleno (máx 5)\"],\"dN0qso\":[\"Acceso rápido:\"],\"eWLklq\":[\"Citas\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Calificar este prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"DqXVNZ\":[\"Listo para generar\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.s3check.reconnect\":[\"Reconectar\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerar\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"PpFJd2\":[\"Regenerar resumen\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"HPitDS\":[\"Registrar | dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"/PACVa\":[\"Notas de versión\"],\"7dZnmw\":[\"Relevancia\"],\"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\"],\"hTDMBB\":[\"Recargar Página\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Eliminar avatar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Quitar de favoritos\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Quitar de acceso rápido\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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?\"],\"nVEhnc\":[\"Removed from organisation\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"6PsaMr\":[\"Renombrar chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Informe\"],\"UZ6fKH\":[\"Acciones del informe\"],\"e/MQa5\":[\"El informe ya se está generando\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"hh/mvZ\":[\"Generación del informe cancelada\"],\"sSy8vA\":[\"Generación del informe en curso...\"],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"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\"],\"mgTmvC\":[\"Estructura del informe\"],\"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\"],\"uLZGK+\":[\"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\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"TMLAx2\":[\"Requerido\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reprogramar\"],\"6eIR/n\":[\"Reprogramar para\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"9uplIY\":[\"Restablecer Contraseña | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Recursos\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Estado de la ejecución:\"],\"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!\"],\"RgyKxd\":[\"Guardar acceso rápido\"],\"5dVjYt\":[\"Guardar plantilla\"],\"zaYZWH\":[\"Guardar en mis plantillas\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Guardando...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Escanee o haga clic para abrir el portal de comentarios\"],\"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\"],\"QS1Nla\":[\"Programar para después\"],\"wCGy0o\":[\"Programar informe\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Busca y selecciona las conversaciones para este chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"Hasta pronto\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segmentos\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Enviar\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Envía un mensaje para iniciar una ejecución agentica.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentimiento\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"BVRW7i\":[\"Configuración | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Compartir\"],\"OuFYHU\":[\"Compartir informe\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Compartir este informe\"],\"lRZMol\":[\"Compartir con la comunidad\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Compartir con la comunidad\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"nnWGzO\":[\"Comparta sus ideas con nuestro equipo\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"4o0klJ\":[\"Comparta su voz escaneando el codigo QR\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Mostrar un enlace para que los participantes puedan contribuir\"],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Mostrar duración\"],\"YbxwRo\":[\"Mostrar sugerencias generadas\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"8Lpud3\":[\"Mostrando su informe completado más reciente.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"6Uau97\":[\"Omitir\"],\"participant.button.verify_prompt.skip\":[\"Omitir\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Comunidad de Slack\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"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.\"],\"zazql1\":[\"Algo salió mal al generar tu último informe. Se muestra tu informe completado más reciente.\"],\"2WNFmv\":[\"Algo salió mal al generar su informe.\"],\"a75OAp\":[\"Algo salió mal al generar tu informe. Puedes intentarlo de nuevo a continuación.\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"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\"]],\"u7yVRn\":[\"Fuentes:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"vf1Tc/\":[\"Specific Details necesita al menos una conversación.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Éxito\"],\"aG+cH9\":[\"Sugerir sugerencias dinámicas basadas en su conversación.\"],\"aZJj7n\":[\"Sugerencias de prompts basadas en tus conversaciones\"],\"FyUg+Y\":[\"Sugerencias basadas en tus conversaciones. Envía un mensaje para verlo en acción.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"6xSPmn\":[\"Suggested project goal\"],\"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\"],\"F1nkJm\":[\"Resumir\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"Sistema\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Etiquetas\"],\"DhO+ei\":[\"Tags (máx. 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Contenido del prompt...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Plantillas\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"No se pudo cargar el reportador de problemas integrado. Aún puede informarnos de lo que salió mal a través de nuestro portal de comentarios. Nos ayuda a solucionar las cosas más rápido que no enviar un informe.\"],\"gtMB2A\":[\"No se pudo cargar el reportador de problemas integrado. Aún puede informarnos de lo que salió mal a través de nuestro portal de comentarios. Nos ayuda a solucionar las cosas más rápido que no enviar un informe.\"],\"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\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"No se pudo cargar el reportador de problemas. Por favor, use el portal de comentarios para informarnos de lo que salió mal. Nos ayuda a solucionar las cosas más rápido que no enviar un informe.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"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.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"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.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"Esta información está anónima\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"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\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Hora\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"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.\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribiendo...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ucraniano\"],\"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\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Razón desconocida\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Desfijar\"],\"vSdeRU\":[\"Desancla primero un proyecto (máx. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Desancla primero un proyecto (máx. 3)\"],\"dFIzZ6\":[\"Desfijar de la barra de chat\"],\"dx+iaL\":[\"Desanclar proyecto\"],\"KyKziT\":[\"Retirar de la comunidad\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Actualizar Informe\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Actualizado\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Actualizar\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Subir Audio\"],\"AIGPM8\":[\"Subir avatar\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Utilizar\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Temas de verificación\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Artefactos verificados\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vista\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"Ver anuncios leídos\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"Ver tus respuestas\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"vistas\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Esperando a que terminen las conversaciones antes de generar un informe.\"],\"tCfopB\":[\"¿Desea estructuras de informe personalizadas?\"],\"VKMCO0\":[\"¿Quieres añadir una plantilla a \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"v8z9fL\":[\"¿Desea personalizar la apariencia de su informe?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"2ZUkkL\":[\"Estamos diseñando esta función y nos encantaría recibir sus comentarios.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"¡Bienvenido a dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"pVIWuw\":[\"¿Qué debe ECHO analizar o generar a partir de las conversaciones?\"],\"ZsEVar\":[\"¿En qué debe centrarse este informe?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"Ul3erb\":[\"What you can reach\"],\"3ePd3I\":[\"¿Qué hay de nuevo?\"],\"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.\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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ú\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"ORA5nz\":[\"Puede intentarlo de nuevo a continuación.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Su nombre\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Tuya\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"ACjxWW\":[\"Zoom\"],\"IDeRjd\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"GSQ8We\":[\"Habilitar Echo\"],\"GpCBCW\":[\"Habilitar ECHO\"],\"IHqkFL\":[\"Habilitar Respuesta\"],\"7DwYDY\":[\"Activar Verify\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Profundizar\"],\"participant.button.make.concrete\":[\"Concretar\"],\"select.all.modal.skip.reason\":[\"algunas pueden omitirse debido a transcripción vacía o límite de contexto\"],\"participant.modal.interruption.issue.description\":[\"Guardamos tu grabación hasta <0>\",[\"formattedDuration\"],\" pero perdimos el resto, lo sentimos. <1/> Presiona abajo para reconectarte, luego presiona grabar para continuar.\"],\"participant.modal.refine.info.title.go.deeper\":[\"profundizar\"],\"participant.modal.refine.info.title.concrete\":[\"concretar\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refinar\\\" Disponible pronto\"],\"participant.modal.refine.info.title\":[\"Función disponible pronto\"],\"participant.refine.go.deeper\":[\"Profundizar\"],\"participant.concrete.artefact.error.description\":[\"Parece que no pudimos cargar este artefacto. Esto podría ser un problema temporal. Puedes intentar recargar o volver para seleccionar un tema diferente.\"],\"dashboard.dembrane.concrete.title\":[\"Hacerlo concreto\"],\"participant.refine.make.concrete\":[\"Hacerlo concreto\"],\"participant.button.refine\":[\"Refinar\"],\"participant.concrete.regenerating.artefact\":[\"Regenerando el artefacto\"],\"dashboard.dembrane.concrete.topic.select\":[\"Selecciona qué temas pueden usar los participantes para verificación.\"],\"participant.go.deeper.generic.error.message\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.concrete.artefact.error.title\":[\"No se pudo cargar el artefacto\"],\"participant.modal.refine.info.reason\":[\"Necesitamos un poco más de contexto para ayudarte a refinar de forma efectiva. Continúa grabando para que podamos darte mejores sugerencias.\"],\"dashboard.dembrane.concrete.description\":[\"Activa esta función para permitir a los participantes crear y verificar resultados concretos durante sus conversaciones.\"],\"participant.concrete.instructions.approve.artefact\":[\"Si estás satisfecho con el \",[\"objectLabel\"],\", haz clic en \\\"Aprobar\\\" para mostrar que te sientes escuchado.\"],\"participant.concrete.instructions.loading\":[\"Cargando\"],\"participant.concrete.selection.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.button.next\":[\"Siguiente\"],\"participant.concrete.instructions.revise.artefact\":[\"Una vez que hayas discutido, presiona \\\"revisar\\\" para ver cómo el \",[\"objectLabel\"],\" cambia para reflejar tu discusión.\"],\"participant.concrete.instructions.read.aloud\":[\"Una vez que recibas el \",[\"objectLabel\"],\", léelo en voz alta y comparte en voz alta lo que deseas cambiar, si es necesario.\"],\"dashboard.dembrane.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para la verificación.\"],\"participant.concrete.selection.title\":[\"¿Qué quieres verificar?\"],\"participant.concrete.instructions.receive.artefact\":[\"Pronto recibirás \",[\"objectLabel\"],\" para verificar.\"],\"participant.concrete.instructions.approval.helps\":[\"¡Tu aprobación nos ayuda a entender lo que realmente piensas!\"],\"participant.anonymization.notice\":[\"Tu transcripción será anonimizada y tu anfitrión no podrá escuchar tu grabación.\"],\"announcements\":[\"anuncios\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(para procesamiento de audio mejorado)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(opcional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" listo\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"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\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversaciones • Editado \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"uSTZVH\":[[\"conversationTotal\"],\" incluidas\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\" días atrás\"],\"bT6AxW\":[[\"diffInHours\"],\" horas atrás\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutos y \",[\"seconds\"],\" segundos\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" segundos\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Espera \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 incluida\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 vista\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ miembros han se unido\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. Cuando ocurre un evento de conversación, enviamos automáticamente los datos de la conversación a tu URL\"],\"L9boOH\":[\"2. Cuando ocurre un evento de conversación o informe, enviamos automáticamente los datos a tu URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"Cuenta y seguridad\"],\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Añadir a favoritos\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"MIWKYQ\":[\"Añadir a acceso rápido\"],\"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\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"DtI2tD\":[\"Añadir el tuyo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Añadidas\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Añadiendo Contexto:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"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\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Avanzado (Consejos y trucos)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Ejecución guiada por herramientas\"],\"VHg3DX\":[\"Chat Agentic\"],\"N40H+G\":[\"Todo\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"Cmt62w\":[\"Todas las conversaciones están listas\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"baQJ1t\":[\"Todos los Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"Todas las plantillas\"],\"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?\"],\"G54oFr\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"zqhMd0\":[\"Ha ocurrido un error inesperado. Recargar la página o volver al inicio suele ayudar.\"],\"QX6zrA\":[\"Análisis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"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\"],\"1mXYsL\":[\"Host anónimo\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Apariencia\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Aplicar\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Aplicar plantilla\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Aprobado\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"¿Estás seguro de que quieres eliminar este proyecto?\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"B8ymes\":[\"¿Estás seguro de que quieres eliminar esta grabación?\"],\"ELQ+fw\":[\"¿Estás seguro de que quieres eliminar este informe? Esta acción no se puede deshacer.\"],\"G2gLnJ\":[\"¿Estás seguro de que quieres eliminar esta etiqueta?\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"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?\"],\"xu5cdS\":[\"¿Estás seguro de que quieres terminar?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"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.\"],\"JHgUuT\":[\"¡Artefacto aprobado exitosamente!\"],\"IbpaM+\":[\"¡Artefacto recargado exitosamente!\"],\"Qcm/Tb\":[\"¡Artefacto revisado exitosamente!\"],\"uCzCO2\":[\"¡Artefacto actualizado exitosamente!\"],\"KYehbE\":[\"artefactos\"],\"jrcxHy\":[\"Artefactos\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Pedir a los participantes que proporcionen su nombre cuando inicien una conversación\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"El asistente está escribiendo...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"Tienes que seleccionar al menos un tema para activar Hacerlo concreto\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La reproducción de audio no está disponible para conversaciones anónimas\"],\"DMBYlw\":[\"Procesamiento de audio en progreso\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Las grabaciones de audio están programadas para eliminarse después de 30 días desde la fecha de grabación\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Consejo de audio\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Seleccionar automáticamente\"],\"3D5FPO\":[\"Seleccionar automáticamente desactivado\"],\"ajAMbT\":[\"Seleccionar automáticamente activado\"],\"jEqKwR\":[\"Seleccionar fuentes para añadir al chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Incluye automáticamente conversaciones relevantes para el análisis sin selección manual\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"csDS2L\":[\"Disponible\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"¡Comenzar!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Visión general\"],\"vZERag\":[\"Visión general - Temas y patrones\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Reserve una llamada para compartir sus comentarios\"],\"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.\"],\"CzeGfZ\":[\"Explorar y compartir plantillas con otros hosts\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Integradas\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"Al eliminar este proyecto, eliminarás todos los datos asociados con él. Esta acción no se puede deshacer. ¿Estás ABSOLUTAMENTE seguro de que quieres eliminar este proyecto?\"],\"IqudIv\":[\"Al eliminar este proyecto, eliminará todos los datos asociados. Esta acción no se puede deshacer. ¿Está completamente seguro?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancelar programación\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Los cambios se guardan automáticamente mientras continúas usando la aplicación. <0/>Una vez que tengas cambios sin guardar, puedes hacer clic en cualquier lugar para guardar los cambios. <1/>También verás un botón para Cancelar los cambios.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Nombre del chat\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Comprobando...\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citar las siguientes fuentes\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"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\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Próximamente — comparta sus ideas\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"chL5IG\":[\"Comunidad\"],\"TVpZgL\":[\"Plantillas de comunidad\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"CfO59/\":[\"Comparar y Contrastar Insights\"],\"jlZul5\":[\"Compara y contrasta los siguientes elementos proporcionados en el contexto.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Completar\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Temas concretos\"],\"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\"],\"p2/GCq\":[\"Confirmar Contraseña\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contactar a ventas\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contacta a tu representante de ventas para activar esta función hoy!\"],\"4b3oEV\":[\"Contenido\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"aVvy3Y\":[\"Límite de contexto alcanzado\"],\"JX3KT4\":[\"Sugerencias contextuales\"],\"xGVfLh\":[\"Continuar\"],\"participant.button.continue\":[\"Continuar\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversación\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"ggJDqH\":[\"Audio de la conversación\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"BsHMTb\":[\"Conversación Terminada\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Procesando conversación\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"TQ8ecW\":[\"Conversaciones desde código QR\"],\"nmB3V3\":[\"Conversaciones desde subida\"],\"Np+C87\":[\"Conversaciones:\"],\"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\"],\"Dj+aS5\":[\"Copiar enlace para compartir este informe\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copiar contenido del informe\"],\"vAkFou\":[\"Copiar secreto\"],\"RGCCrg\":[\"Copiar enlace para compartir\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"rG2gDo\":[\"Copiar transcripción\"],\"OvEjsP\":[\"Copiando...\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Crear una Cuenta\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Crear biblioteca\"],\"O671Oh\":[\"Crear Biblioteca\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"vY2Gfm\":[\"Crear nueva vista\"],\"uVzvzz\":[\"Crear ahora\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Crear informe\"],\"A5hiCy\":[\"Crear plantilla\"],\"s7XwOU\":[\"Crear plantilla\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Creado \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Creado el\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Recortar avatar\"],\"udBqWc\":[\"Recortar imagen\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recortar logo\"],\"yOrQ4N\":[\"Logo actual\"],\"Pn2B7/\":[\"Contraseña actual\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"personalizado\"],\"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.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Personalice la estructura de su informe. Esta función estará disponible pronto.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"Zona de Peligro\"],\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Eliminar Tema Personalizado\"],\"mp235G\":[\"Eliminar proyecto\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"rUWrSE\":[\"Eliminar informe\"],\"MlrelG\":[\"Eliminar informe\"],\"qr0gpK\":[\"Eliminar etiqueta\"],\"DFjdv0\":[\"Eliminar plantilla\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane funciona con IA. Revisa bien las respuestas.\"],\"QMogcD\":[\"Respuesta\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe cómo es útil esta plantilla...\"],\"Fs/0D5\":[\"Describe lo que el modelo de lenguaje debe extraer o resumir de la conversación...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determina bajo qué base legal de GDPR se procesan los datos personales. Esto afecta a los flujos de consentimiento, los derechos de los sujetos de datos y las obligaciones de retención.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Mostrar sugerencias contextuales en el chat\"],\"pfa8F0\":[\"Nombre para mostrar\"],\"vU/Hht\":[\"Distribución\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"¿Quieres contribuir a este proyecto?\"],\"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\"],\"5154Ap\":[\"Descargar Todas las Transcripciones\"],\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"p. ej. mañana a las 9:00\"],\"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.\"],\"5oD9f/\":[\"Anteriores\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"Echo\"],\"rH6cQt\":[\"Echo está impulsado por IA. Por favor, verifica las respuestas.\"],\"o6tfKZ\":[\"ECHO está impulsado por IA. Por favor, verifica las respuestas.\"],\"/IJH/2\":[\"¡ECHO!\"],\"lgm7y2\":[\"editar\"],\"ePK91l\":[\"Editar\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Editar Conversación\"],\"Y/3VME\":[\"Editar Tema Personalizado\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Editar Recurso\"],\"report.editor.description\":[\"Edita el contenido del informe usando el editor de texto enriquecido a continuación. Puede formatear texto, agregar enlaces, imágenes y más.\"],\"nP7CdQ\":[\"Editar Webhook\"],\"gGx5tM\":[\"Editando\"],\"F6H6Lg\":[\"Modo de edición\"],\"O3oNi5\":[\"Correo electrónico\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Verificación de Correo Electrónico\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Verificación de Correo Electrónico | dembrane\"],\"iF3AC2\":[\"Correo electrónico verificado con éxito. Serás redirigido a la página de inicio de sesión en 5 segundos. Si no eres redirigido, por favor haz clic <0>aquí.\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji mostrado junto al tema, por ejemplo: 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Vacío\"],\"DCRKbe\":[\"Activar 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"+ljZfM\":[\"Activar Profundizar\"],\"wGA7d4\":[\"Activar Hacerlo concreto\"],\"4KKbfZ\":[\"Habilitar participación\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"Idlt6y\":[\"Habilita esta función para permitir a los participantes recibir notificaciones cuando se publica o actualiza un informe. Los participantes pueden ingresar su correo electrónico para suscribirse a actualizaciones y permanecer informados.\"],\"g2qGhy\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Echo\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"pB03mG\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"ECHO\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, fomentando una reflexión más profunda y mayor participación. Se aplica un período de enfriamiento entre solicitudes.\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dWv3hs\":[\"Habilite esta función para permitir a los participantes solicitar respuestas AI durante su conversación. Los participantes pueden hacer clic en \\\"Get Reply\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Un período de enfriamiento aplica entre solicitudes.\"],\"rkE6uN\":[\"Activa esta función para que los participantes puedan pedir respuestas con IA durante su conversación. Después de grabar lo que piensan, pueden hacer clic en \\\"Profundizar\\\" para recibir feedback contextual que invita a reflexionar más y a implicarse más. Hay un tiempo de espera entre peticiones.\"],\"dashboard.dembrane.feature.verify.description\":[\"Active esta función para permitir que los participantes verifiquen y aprueben \\\"resultados\\\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"IxzwiB\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Introduzca la contraseña actual\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"vT+QoP\":[\"Ingresa un nuevo nombre para el chat:\"],\"VpwcSk\":[\"Introduzca la nueva contraseña\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"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.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"S2MVUN\":[\"Error al cargar los anuncios\"],\"xcUDac\":[\"Error al cargar los insights\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"3Uoj83\":[\"Error al cargar las citas\"],\"4kVRov\":[\"Ocurrió un error\"],\"z05QRC\":[\"Error al actualizar el informe\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"/PykH1\":[\"Todo parece bien – puedes continuar.\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explora temas y patrones en todas las conversaciones\"],\"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\"],\"9GMUFh\":[\"Error al aprobar el artefacto. Por favor, inténtalo de nuevo.\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"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\"],\"p+a077\":[\"Error al desactivar la selección automática para este chat\"],\"iS9Cfc\":[\"Error al activar la selección automática para este chat\"],\"C6KoMG\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo o inicia una nueva conversación.\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"DKxr+e\":[\"Error al obtener los anuncios\"],\"TSt/Iq\":[\"Error al obtener la última notificación\"],\"D4Bwkb\":[\"Error al obtener el número de notificaciones no leídas\"],\"AXRzV1\":[\"Error al cargar el audio o el audio no está disponible\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"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.\"],\"hhLiKu\":[\"Error al revisar el artefacto. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Error al iniciar una nueva conversación. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"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\"],\"wH6wcG\":[\"Error al verificar el estado del correo electrónico. Por favor, inténtalo de nuevo.\"],\"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\"],\"o7J4JM\":[\"Filtrar\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"3AFOMQ\":[\"Filter by name or id\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Encontrar contradicciones y sugerir preguntas de seguimiento\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"JmZ/+d\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finalizado\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"Nombre\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Enfoque\"],\"wD4aF6\":[\"Enfoca tu informe (opcional)\"],\"MKEPCY\":[\"Seguir\"],\"JnPIOr\":[\"Seguir reproducción\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"de \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"3qkggm\":[\"Pantalla completa\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generar\"],\"EIdJgG\":[\"Generar un nuevo informe\"],\"oADIO6\":[\"Genera un nuevo informe. Los informes anteriores seguirán siendo accesibles.\"],\"QsUhrf\":[\"Generar un informe\"],\"GRy59I\":[\"Generar un resumen primero\"],\"tSA0hO\":[\"Generar perspectivas a partir de tus conversaciones\"],\"MWSGhX\":[\"Generar biblioteca\"],\"5SWGxv\":[\"Generar ahora\"],\"GWUJ9X\":[\"Generar ahora\"],\"QqIxfi\":[\"Generar secreto\"],\"tM4cbZ\":[\"Generar notas estructuradas de la reunión basadas en los siguientes puntos de discusión proporcionados en el contexto.\"],\"gitFA/\":[\"Generar Resumen\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"IL8LH3\":[\"Profundizar\"],\"DXr0zk\":[\"Pantalla completa\"],\"iWpEwy\":[\"Ir al inicio\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Ir al portal de comentarios\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Vista de cuadrícula\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+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\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Ayúdanos a traducir\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hola, \",[\"0\"]],\"D+zLDD\":[\"Oculto\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"LqWHk1\":[\"Ocultar \",[\"0\"]],\"u5xmYC\":[\"Ocultar todo\"],\"txCbc+\":[\"Ocultar todos los insights\"],\"0lRdEo\":[\"Ocultar Conversaciones Sin Contenido\"],\"eHo/Jc\":[\"Ocultar datos\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Concepto específico resaltado\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Inicio\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Cómo funciona:\"],\"h9n8Kn\":[\"How seats work\"],\"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?\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identifica y analiza los temas recurrentes en este contenido. Por favor:\\n\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"Si eres un usuario avanzado configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"Para navegar mejor por las citas, crea vistas adicionales. Las citas se agruparán según tu vista.\"],\"IJUcvx\":[\"Mientras tanto, si quieres analizar las conversaciones que aún están en proceso, puedes usar la función de Chat\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Incluir enlace del portal\"],\"aOhF9L\":[\"Incluir enlace al portal en el informe\"],\"Dvf4+M\":[\"Incluir marcas de tiempo\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Información\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Biblioteca de Insights\"],\"ZVY8fB\":[\"Insight no encontrado\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instrucciones\"],\"MSVCjk\":[\"Instrucciones para generar el resultado de la verificación\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Token inválido. Por favor intenta de nuevo.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Dirección IP\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"5dxEAB\":[\"Parece que aún no tiene un informe para este proyecto. Genere uno para obtener una descripción general de sus conversaciones.\"],\"JsWQuM\":[\"Parece que aún no tienes un informe para este proyecto. Genera uno para obtener un resumen de tus conversaciones. Opcionalmente puedes enfocar el informe en un tema específico.\"],\"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.\"],\"Lj7sBL\":[\"Italiano\"],\"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.\"],\"GaQMyV\":[\"Únete a \",[\"0\"],\" en dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Únete a la comunidad de Slack\"],\"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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Un momento\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"Justo ahora\"],\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Idioma\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Apellido\"],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Último\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Háganos saber!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Vamos a asegurarnos de que podemos escucharte\"],\"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\"],\"yUQgLY\":[\"La biblioteca está siendo procesada\"],\"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\"],\"3gvJj+\":[\"Publicación LinkedIn (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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\"],\"TkFXaN\":[\"Nivel de audio en vivo:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Cargando\"],\"yQE2r9\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"ATTcN8\":[\"Cargando temas concretos…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"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\"],\"Wd2LTk\":[\"Iniciar sesión como usuario existente\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo eliminado\"],\"MjfaMh\":[\"Logo actualizado\"],\"WXSxpf\":[\"Logo actualizado correctamente\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Cerrar sesión\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Más largo primero\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mis plantillas\"],\"b85Pfh\":[\"Mínimo 8 caracteres\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"más\"],\"JcD7qf\":[\"Más acciones\"],\"zMx0gF\":[\"Más templates\"],\"y1ypMV\":[\"Más populares\"],\"7BgchI\":[\"Más utilizadas\"],\"QWdKwH\":[\"Mover\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Mover Conversación\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Debe ser al menos 10 minutos en el futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mis plantillas\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"Nuevas conversaciones disponibles — actualiza tu informe\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"P/+jkp\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"3RC8Um\":[\"Se han añadido nuevas conversaciones desde tu último informe. Genera un informe actualizado para incluirlas. Tu informe anterior seguirá siendo accesible.\"],\"QgiaQ8\":[\"Nueva fecha y hora\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"Nueva contraseña\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"Nuevo Proyecto\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Nuevo informe\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Más recientes\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Más nuevos primero\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.next\":[\"Siguiente\"],\"participant.ready.to.begin.button.text\":[\"¿Listo para comenzar?\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No se encontraron acciones\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No hay anuncios disponibles\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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\\\".\"],\"YM6Wft\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"S8FeaY\":[\"Aún no hay plantillas de la comunidad. Comparte las tuyas para empezar.\"],\"zMt5AM\":[\"No hay temas concretos disponibles.\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"zM3DDm\":[\"No hay conversaciones disponibles para crear la biblioteca. Por favor añade algunas conversaciones para comenzar.\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"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.\"],\"meAa31\":[\"No hay conversaciones aún\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Aun no hay conversaciones. Puede programar un informe ahora y las conversaciones se incluiran una vez que se agreguen.\"],\"ax9iz4\":[\"Aún no hay plantillas. Crea una para empezar.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No hay insights disponibles. Genera insights para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"Aún no se han añadido términos clave o nombres propios. Añádelos usando el campo de entrada de arriba para mejorar la precisión de la transcripción.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"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\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No hay citas disponibles. Genera citas para esta conversación visitando\"],\"yalI52\":[\"No hay citas disponibles. Genera citas para esta conversación visitando<0><1> la biblioteca del proyecto.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"1iQvuD\":[\"Aún no hay informes\"],\"EhV94J\":[\"No se encontraron recursos.\"],\"Ev2r9A\":[\"Sin resultados\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"Sin enfoque específico\"],\"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}\"],\"kaDUQs\":[\"Aún no hay plantillas. Crea la tuya o explora Todas las plantillas.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"TmTivZ\":[\"No hay transcripción disponible para esta conversación.\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"MPZkyF\":[\"No hay transcripciones seleccionadas para este chat\"],\"AotzsU\":[\"Sin tutorial (solo declaraciones de privacidad)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"Aún no hay workspaces en esta organización.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Ahora\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"En curso\"],\"conversation.ongoing\":[\"En curso\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Conversaciones en Curso\"],\"Dw7aQc\":[\"Solo se aplica cuando el informe está publicado\"],\"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.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Solo las \",[\"0\"],\" conversaciones finalizadas \",[\"1\"],\" serán incluidas en el informe en este momento. \"],\"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.\"],\"J17dTs\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Abrir Documentación\"],\"QTXl9z\":[\"Abrir portal de comentarios\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"¿Abierto para Participación?\"],\"Z7K0px\":[\"Abrir guía\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Abrir guía del host\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Opcional (recurre al inglés)\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Otros hosts pueden ver y copiar tu plantilla. Puedes retirarla en cualquier momento.\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Proteger el portal con contraseña (solicitar función)\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pausar\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Seleccionar fecha y hora\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Elige uno o más ángulos\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Fijar\"],\"u8qC4w\":[\"Fijar proyecto\"],\"S+WiJ3\":[\"Fije plantillas aquí para acceso rápido.\"],\"lepv9z\":[\"Fijar a la barra de chat\"],\"fr2ggG\":[\"fijados\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Fijados está lleno (máx. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Plantillas fijadas\"],\"Atb9XB\":[\"Fijado a la barra de chat\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"3flRk2\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"S6iyis\":[\"Por favor, no cierres su navegador\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"iMWXJN\":[\"Mantén esta pantalla encendida (pantalla negra = sin grabación)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Por favor, inicia sesión para continuar.\"],\"mUGRqu\":[\"Por favor, proporciona un resumen conciso de los siguientes elementos proporcionados en el contexto.\"],\"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)\"],\"gEEhkM\":[\"Graba tu respuesta haciendo clic en el botón \\\"Record\\\" de abajo. También puedes responder por texto haciendo clic en el icono de texto.\\n**Mantén esta pantalla encendida**\\n(pantalla negra = no está grabando)\\nTu transcripción será anonimizada y tu anfitrión no podrá escuchar tu grabación.\"],\"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.\"],\"ps5D2F\":[\"Por favor, graba tu respuesta haciendo clic en el botón \\\"Grabar\\\" de abajo. También puedes elegir responder en texto haciendo clic en el icono de texto. \\n**Por favor, mantén esta pantalla encendida** \\n(pantalla negra = no está grabando)\"],\"TsuUyf\":[\"Por favor, registra tu respuesta haciendo clic en el botón \\\"Iniciar Grabación\\\" de abajo. También puedes responder en texto haciendo clic en el icono de texto.\"],\"4TVnP7\":[\"Por favor, selecciona un idioma para tu informe\"],\"N63lmJ\":[\"Por favor, selecciona un idioma para tu informe actualizado\"],\"XvD4FK\":[\"Por favor, selecciona al menos una fuente\"],\"hxTGLS\":[\"Selecciona conversaciones en la barra lateral para continuar\"],\"GXZvZ7\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro eco.\"],\"Am5V3+\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro Echo.\"],\"CE1Qet\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otro ECHO.\"],\"Fx1kHS\":[\"Por favor, espera \",[\"timeStr\"],\" antes de solicitar otra respuesta.\"],\"MgJuP2\":[\"Por favor, espera mientras generamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"ei5r44\":[\"Por favor, espera mientras actualizamos tu informe. Serás redirigido automáticamente a la página del informe.\"],\"j5KznP\":[\"Por favor, espera mientras verificamos tu dirección de correo electrónico.\"],\"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\"],\"Tx36sk\":[\"Enlace del portal\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Propulsado por\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"¿Prefiere chatear directamente? <0>Reserve una llamada conmigo\"],\"Q6hhn8\":[\"Preferencias\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparando tus conversaciones... Esto puede tardar un momento.\"],\"/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.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"S8ugMC\":[\"Imprimir informe\"],\"ANWB5x\":[\"Imprimir este informe\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacidad y Seguridad\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Declaraciones de Privacidad\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"stk3Hv\":[\"procesando\"],\"vrnnn9\":[\"Procesando\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"kvs/6G\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat.\"],\"q11K6L\":[\"El procesamiento de esta conversación ha fallado. Esta conversación no estará disponible para análisis y chat. Último estado conocido: \",[\"0\"]],\"NQiPr4\":[\"Procesando Transcripción\"],\"48px15\":[\"Procesando tu informe...\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Proyecto creado\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"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.\"],\"0qmd8V\":[\"Predeterminado del proyecto: habilitado. Esto reemplazará la información personalmente identificable con .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"Valores predeterminados del proyecto\"],\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Vista General del Proyecto | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Inicio de Proyectos\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publicar\"],\"vsX8VJ\":[\"Publique este informe primero para mostrar el enlace del portal\"],\"GwOmnT\":[\"Publique este informe para habilitar la impresión\"],\"ZSi2AK\":[\"Publique este informe para habilitar el uso compartido\"],\"IHzoSN\":[\"Publique este informe para obtener un enlace para compartir\"],\"u3wRF+\":[\"Publicado\"],\"4R3R74\":[\"Publicado en la comunidad\"],\"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.\"],\"9iShh/\":[\"Acceso rápido (máx. 5)\"],\"utRRxm\":[\"Acceso rápido lleno (máx 5)\"],\"dN0qso\":[\"Acceso rápido:\"],\"eWLklq\":[\"Citas\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Calificar este prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"DqXVNZ\":[\"Listo para generar\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.s3check.reconnect\":[\"Reconectar\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Grabar\"],\"w80YWM\":[\"Grabar\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"9aloPG\":[\"Referencias\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerar\"],\"844H5I\":[\"Regenerar Biblioteca\"],\"PpFJd2\":[\"Regenerar resumen\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"HPitDS\":[\"Registrar | dembrane\"],\"w3qEvq\":[\"Registrar como nuevo usuario\"],\"/PACVa\":[\"Notas de versión\"],\"7dZnmw\":[\"Relevancia\"],\"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\"],\"hTDMBB\":[\"Recargar Página\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Eliminar avatar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Quitar de favoritos\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Quitar de acceso rápido\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"2wxgft\":[\"Renombrar\"],\"6PsaMr\":[\"Renombrar chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Informe\"],\"UZ6fKH\":[\"Acciones del informe\"],\"e/MQa5\":[\"El informe ya se está generando\"],\"Q3LOVJ\":[\"Reportar un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"hh/mvZ\":[\"Generación del informe cancelada\"],\"sSy8vA\":[\"Generación del informe en curso...\"],\"KFQLa2\":[\"La generación de informes está actualmente en fase beta y limitada a proyectos con menos de 10 horas de grabación.\"],\"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\"],\"mgTmvC\":[\"Estructura del informe\"],\"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\"],\"uLZGK+\":[\"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\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"MepchF\":[\"Solicitando acceso al micrófono para detectar dispositivos disponibles...\"],\"TMLAx2\":[\"Requerido\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reprogramar\"],\"6eIR/n\":[\"Reprogramar para\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Restablecer\"],\"xeMrqw\":[\"Restablecer todas las opciones\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"9uplIY\":[\"Restablecer Contraseña | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Recursos\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Estado de la ejecución:\"],\"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!\"],\"RgyKxd\":[\"Guardar acceso rápido\"],\"5dVjYt\":[\"Guardar plantilla\"],\"zaYZWH\":[\"Guardar en mis plantillas\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Guardando...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Escanee o haga clic para abrir el portal de comentarios\"],\"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\"],\"QS1Nla\":[\"Programar para después\"],\"wCGy0o\":[\"Programar informe\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Busca y selecciona las conversaciones para este chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Buscar etiquetas\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Buscando en las fuentes más relevantes\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"Eyh9/O\":[\"Ver detalles del estado de la conversación\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"Hasta pronto\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segmentos\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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\"],\"vKH1Ye\":[\"Selecciona tu micrófono:\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Enviar\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Envía un mensaje para iniciar una ejecución agentica.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentimiento\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Configurando tu primer proyecto\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"BVRW7i\":[\"Configuración | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Compartir\"],\"OuFYHU\":[\"Compartir informe\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Compartir este informe\"],\"lRZMol\":[\"Compartir con la comunidad\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Compartir con la comunidad\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"nnWGzO\":[\"Comparta sus ideas con nuestro equipo\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Compartir tu voz\"],\"4o0klJ\":[\"Comparta su voz escaneando el codigo QR\"],\"swzLuF\":[\"Comparte tu voz escaneando el código QR de abajo.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"h8lzfw\":[\"Mostrar \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Mostrar un enlace para que los participantes puedan contribuir\"],\"lZw9AX\":[\"Mostrar todo\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Mostrar duración\"],\"YbxwRo\":[\"Mostrar sugerencias generadas\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Mostrar línea de tiempo en el informe (solicitar función)\"],\"DLEIpN\":[\"Mostrar marcas de tiempo (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"8Lpud3\":[\"Mostrando su informe completado más reciente.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Iniciar sesión con Google\"],\"6Uau97\":[\"Omitir\"],\"participant.button.verify_prompt.skip\":[\"Omitir\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"lH0eLz\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona el consentimiento)\"],\"b6NHjr\":[\"Omitir diapositiva de privacidad (El anfitrión gestiona la base legal)\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Comunidad de Slack\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Algunas conversaciones aún están siendo procesadas. La selección automática funcionará de manera óptima una vez que se complete el procesamiento de audio.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"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.\"],\"zazql1\":[\"Algo salió mal al generar tu último informe. Se muestra tu informe completado más reciente.\"],\"2WNFmv\":[\"Algo salió mal al generar su informe.\"],\"a75OAp\":[\"Algo salió mal al generar tu informe. Puedes intentarlo de nuevo a continuación.\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"JOKTb4\":[\"Algo salió mal al subir el archivo: \",[\"0\"]],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"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\"]],\"u7yVRn\":[\"Fuentes:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Español\"],\"zuoIYL\":[\"Locutor\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"vf1Tc/\":[\"Specific Details necesita al menos una conversación.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Iniciar Nueva Conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Iniciar Grabación\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Enviado via entrada de texto\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Éxito\"],\"aG+cH9\":[\"Sugerir sugerencias dinámicas basadas en su conversación.\"],\"aZJj7n\":[\"Sugerencias de prompts basadas en tus conversaciones\"],\"FyUg+Y\":[\"Sugerencias basadas en tus conversaciones. Envía un mensaje para verlo en acción.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"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\"],\"4ZpfGe\":[\"Resume las ideas clave de mis entrevistas\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"g6o+7L\":[\"Resumen generado.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Resumen no disponible todavía\"],\"OUi+O3\":[\"Resumen regenerado.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"Sistema\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Etiquetas\"],\"DhO+ei\":[\"Tags (máx. 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Contenido del prompt...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Plantillas\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"No se pudo cargar el reportador de problemas integrado. Aún puede informarnos de lo que salió mal a través de nuestro portal de comentarios. Nos ayuda a solucionar las cosas más rápido que no enviar un informe.\"],\"gtMB2A\":[\"No se pudo cargar el reportador de problemas integrado. Aún puede informarnos de lo que salió mal a través de nuestro portal de comentarios. Nos ayuda a solucionar las cosas más rápido que no enviar un informe.\"],\"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\"],\"nO942E\":[\"La conversación no pudo ser cargada. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"No se pudo cargar el reportador de problemas. Por favor, use el portal de comentarios para informarnos de lo que salió mal. Nos ayuda a solucionar las cosas más rápido que no enviar un informe.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"El Portal es el sitio web que se carga cuando los participantes escanean el código QR.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"la biblioteca del proyecto.\"],\"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.\"],\"iV8+33\":[\"El resumen está siendo regenerado. Por favor, espera hasta que el nuevo resumen esté disponible.\"],\"AgC2rn\":[\"El resumen está siendo regenerado. Por favor, espera hasta 2 minutos para que el nuevo resumen esté disponible.\"],\"PTNxDe\":[\"La transcripción de esta conversación se está procesando. Por favor, revisa más tarde.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"Hubo un error al generar tu informe. En el tiempo, puedes analizar todos tus datos usando la biblioteca o seleccionar conversaciones específicas para conversar.\"],\"7qENSx\":[\"Hubo un error al actualizar tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"V7zEnY\":[\"Hubo un error al verificar tu correo electrónico. Por favor, inténtalo de nuevo.\"],\"gtlVJt\":[\"Estas son algunas plantillas útiles para que te pongas en marcha.\"],\"sd848K\":[\"Estas son tus plantillas de vista predeterminadas. Una vez que crees tu biblioteca, estas serán tus primeras dos vistas.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"dt1MDy\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto.\"],\"5ZpZXq\":[\"Esta conversación aún está siendo procesada. Estará disponible para análisis y chat pronto. \"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"JtPxD5\":[\"Este correo electrónico ya está suscrito a notificaciones.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"Esta información está anónima\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"Biblioteca\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Esta es tu biblioteca del proyecto. Actualmente,\",[\"0\"],\" conversaciones están esperando ser procesadas.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"Este idioma se usará para el Portal del Participante y transcripción.\"],\"BAUPL8\":[\"Este idioma se usará para el Portal del Participante y transcripción. Para cambiar el idioma de esta aplicación, por favor use el selector de idioma en las configuraciones de la cabecera.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"Esta biblioteca del proyecto se generó el\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"Este resumen es generado por IA y es breve, para un análisis detallado, usa el Chat o la Biblioteca.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"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\"],\"n4l4/n\":[\"Esto reemplazará la información personal identificable con .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Hora\"],\"Ww6cQ8\":[\"Fecha de Creación\"],\"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.\"],\"5h7Z+m\":[\"Para asignar una nueva etiqueta, primero crea una en la vista general del proyecto.\"],\"o3rowT\":[\"Para generar un informe, por favor comienza agregando conversaciones en tu proyecto\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribiendo...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcripción\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcripción no disponible\"],\"N/50DC\":[\"Configuración de Transcripción\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcripción en progreso…\"],\"0l9syB\":[\"Transcripción en progreso…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transforma estas transcripciones en una publicación de LinkedIn que corta el ruido. Por favor:\\n\\nExtrae los insights más convincentes - salta todo lo que suena como consejos comerciales estándar\\nEscribe como un líder experimentado que desafía ideas convencionales, no un poster motivador\\nEncuentra una observación realmente inesperada que haría que incluso profesionales experimentados se detuvieran\\nMantén el rigor analítico mientras sigues siendo atractivo\\n\\nNota: Si el contenido no contiene insights sustanciales, por favor házmelo saber, necesitamos material de fuente más fuerte.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Intentar de nuevo\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Escribe un mensaje...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ucraniano\"],\"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\"],\"8vqTzl\":[\"No se pudo cargar el artefacto generado. Por favor, inténtalo de nuevo.\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Razón desconocida\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Desfijar\"],\"vSdeRU\":[\"Desancla primero un proyecto (máx. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Desancla primero un proyecto (máx. 3)\"],\"dFIzZ6\":[\"Desfijar de la barra de chat\"],\"dx+iaL\":[\"Desanclar proyecto\"],\"KyKziT\":[\"Retirar de la comunidad\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"anuncio sin leer\"],\"0pinHa\":[\"anuncios sin leer\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Actualizar Informe\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Actualiza el informe para incluir los datos más recientes\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Actualiza tu informe para incluir los cambios más recientes en tu proyecto. El enlace para compartir el informe permanecerá el mismo.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Actualizado\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Actualizar\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Actualiza para desbloquear la selección automática y analizar 10 veces más conversaciones en la mitad del tiempo—sin selección manual, solo insights más profundos instantáneamente.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Subir Audio\"],\"AIGPM8\":[\"Subir avatar\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"Wft2yh\":[\"Cargando...\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Cargar recursos\"],\"3wG7HI\":[\"Subido\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Utilizar\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Usar funciones experimentales\"],\"rmMdgZ\":[\"Usar redaction de PII\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Temas de verificación\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Artefactos verificados\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vista\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"Ver detalles de la conversación\"],\"H1e6Hv\":[\"Ver estado de la conversación\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"Ver anuncios leídos\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"Ver tus respuestas\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"vistas\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Espera \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Esperando a que terminen las conversaciones antes de generar un informe.\"],\"tCfopB\":[\"¿Desea estructuras de informe personalizadas?\"],\"VKMCO0\":[\"¿Quieres añadir una plantilla a \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Quieres añadir una plantilla a ECHO?\"],\"v8z9fL\":[\"¿Desea personalizar la apariencia de su informe?\"],\"r6y+jM\":[\"Advertencia\"],\"pUTmp1\":[\"Advertencia: Has añadido \",[\"0\"],\" términos clave. Solo los primeros \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" serán utilizados por el motor de transcripción.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"No pudimos cargar el audio. Por favor, inténtalo de nuevo más tarde.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado.\"],\"9qYWL7\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a evelien@dembrane.com\"],\"3fS27S\":[\"Te hemos enviado un correo electrónico con los pasos siguientes. Si no lo ves, revisa tu carpeta de correo no deseado. Si aún no lo ves, por favor contacta a jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"tQtKw5\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"2ZUkkL\":[\"Estamos diseñando esta función y nos encantaría recibir sus comentarios.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Bienvenido al modo Big Picture! Tengo resúmenes de todas tus conversaciones cargados. Pregúntame sobre patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Específico.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"¡Bienvenido a dembrane Chat! Usa la barra lateral para seleccionar recursos y conversaciones que quieras analizar. Luego, puedes hacer preguntas sobre los recursos y conversaciones seleccionados.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"¡Bienvenido a dembrane!\"],\"TACmoL\":[\"Bienvenido al modo Overview. Tengo cargados resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, empieza un chat nuevo en el modo Deep Dive.\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"Bck6Du\":[\"¡Bienvenido a los informes!\"],\"aEpQkt\":[\"¡Bienvenido a Tu Inicio! Aquí puedes ver todos tus proyectos y acceder a recursos de tutorial. Actualmente, no tienes proyectos. Haz clic en \\\"Crear\\\" para configurar para comenzar!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"¡Bienvenido!\"],\"Tfxjl5\":[\"¿Cuáles son los temas principales en todas las conversaciones?\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"fyMvis\":[\"¿Qué patrones salen de los datos?\"],\"pVIWuw\":[\"¿Qué debe ECHO analizar o generar a partir de las conversaciones?\"],\"ZsEVar\":[\"¿En qué debe centrarse este informe?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"Ul3erb\":[\"What you can reach\"],\"3ePd3I\":[\"¿Qué hay de nuevo?\"],\"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.\"],\"LEYli4\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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ú\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"Aún puedes usar la función Preguntar para chatear con cualquier conversación\"],\"ORA5nz\":[\"Puede intentarlo de nuevo a continuación.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Tu conversación está siendo transcribida. Por favor, revisa más tarde.\"],\"OFDbfd\":[\"Tus Conversaciones\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Tu biblioteca está vacía. Crea una biblioteca para ver tus primeros insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Su nombre\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"wurHZF\":[\"Tus respuestas\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lZNgiw\":[\"Tus Vistas\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Tuya\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"ACjxWW\":[\"Zoom\"],\"IDeRjd\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversaciones\"],\"hWszgU\":[\"La fuente fue eliminada\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"GSQ8We\":[\"Habilitar Echo\"],\"GpCBCW\":[\"Habilitar ECHO\"],\"IHqkFL\":[\"Habilitar Respuesta\"],\"7DwYDY\":[\"Activar Verify\"],\"qwmGiT\":[\"Contactar a ventas\"],\"ZWDkP4\":[\"Actualmente, \",[\"finishedConversationsCount\"],\" conversaciones están listas para ser analizadas. \",[\"unfinishedConversationsCount\"],\" aún en proceso.\"],\"/NTvqV\":[\"Biblioteca no disponible\"],\"p18xrj\":[\"Biblioteca regenerada\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pausar\"],\"ilKuQo\":[\"Reanudar\"],\"SqNXSx\":[\"Detener\"],\"yfZBOp\":[\"Detener\"],\"cic45J\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"CvZqsN\":[\"Algo salió mal. Por favor, inténtalo de nuevo, presionando el botón <0>ECHO, o contacta al soporte si el problema persiste.\"],\"P+lUAg\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"hh87/E\":[\"\\\"Profundizar\\\" Disponible pronto\"],\"RMxlMe\":[\"\\\"Concretar\\\" Disponible pronto\"],\"7UJhVX\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"RDsML8\":[\"¿Estás seguro de que quieres detener la conversación?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Cancelar\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la lista • Todas las \",[\"0\"],\" conversaciones cargadas\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/fr-FR.po b/echo/frontend/src/locales/fr-FR.po index 82cda7e87..07906509d 100644 --- a/echo/frontend/src/locales/fr-FR.po +++ b/echo/frontend/src/locales/fr-FR.po @@ -755,11 +755,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:191 +#: src/components/chat/AgenticChatPanel.tsx:193 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:190 +#: src/components/chat/AgenticChatPanel.tsx:192 msgid "{name}'s transcript excerpt" msgstr "" @@ -1082,6 +1082,10 @@ msgstr "" msgid "A friendly name to identify this webhook" msgstr "Un nom convivial pour identifier ce webhook" +#: src/components/project/ProjectExperimentalSection.tsx:52 +msgid "A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed." +msgstr "" + #: src/routes/project/report/ProjectReportRoute.tsx:564 msgid "A new report will be automatically generated and published at the scheduled time." msgstr "Un nouveau rapport sera automatiquement généré et publié à l'heure prévue." @@ -1179,7 +1183,7 @@ msgstr "" #: src/routes/workspaces/CreateWorkspaceRoute.tsx:702 #: src/routes/project/CreateProjectRoute.tsx:256 #: src/routes/project/CreateProjectRoute.tsx:345 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:117 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:120 #: src/components/project/ProjectUsageAndSharing.tsx:190 #: src/components/layout/ProjectOverviewLayout.tsx:52 msgid "Access" @@ -1319,6 +1323,7 @@ msgstr "Filtres actifs" #: src/routes/organisation/OrganisationRoute.tsx:2054 #: src/routes/organisation/OrganisationRoute.tsx:2077 #: src/components/project/ProjectSharingModal.tsx:252 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:191 #: src/components/billing/BillingManager.tsx:1461 msgid "Add" msgstr "Ajouter" @@ -1479,6 +1484,7 @@ msgstr "Ajouter votre premier webhook" #~ msgstr "Ajouter le vôtre" #: src/components/project/ProjectSharingModal.tsx:68 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:145 msgid "Added" msgstr "" @@ -1655,8 +1661,8 @@ msgstr "Paramètres avancés" #~ msgid "Agent is working..." #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:287 -#: src/components/chat/AgenticChatPanel.tsx:314 +#: src/components/chat/AgenticChatPanel.tsx:289 +#: src/components/chat/AgenticChatPanel.tsx:316 msgid "Agent run failed" msgstr "" @@ -1975,6 +1981,7 @@ msgstr "" #: src/components/view/CreateViewForm.tsx:153 #: src/components/goal/GoalSuggestionCard.tsx:122 #: src/components/common/ImageCropModal.tsx:148 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:223 #: src/components/chat/CanvasSuggestionCard.tsx:361 msgid "Apply" msgstr "Appliquer" @@ -2145,7 +2152,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1481 +#: src/components/chat/AgenticChatPanel.tsx:1494 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 "" @@ -2165,7 +2172,7 @@ msgstr "" msgid "Ask about your conversations, or type to find an earlier chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1739 +#: src/components/chat/AgenticChatPanel.tsx:1766 msgid "Ask about your conversations..." msgstr "" @@ -2489,6 +2496,7 @@ msgstr "Paramètres de base" #: src/components/report/CreateReportForm.tsx:235 #: src/components/project/ProjectPortalEditor.tsx:1483 #: src/components/project/ProjectPortalEditor.tsx:1564 +#: src/components/project/ProjectExperimentalSection.tsx:48 #: src/components/conversation/RetranscribeConversation.tsx:151 #: src/components/chat/ChatModeSelector.tsx:158 #: src/components/chat/ChatModeBanner.tsx:45 @@ -2738,7 +2746,7 @@ msgstr "" #: src/components/common/ImageCropModal.tsx:145 #: src/components/common/FeedbackPortalModal.tsx:124 #: src/components/common/ConfirmModal.tsx:44 -#: src/components/chat/AgenticChatPanel.tsx:1708 +#: src/components/chat/AgenticChatPanel.tsx:1735 msgid "Cancel" msgstr "Annuler" @@ -2771,7 +2779,7 @@ msgstr "Annuler" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1696 +#: src/components/chat/AgenticChatPanel.tsx:1723 msgid "Cancel current run" msgstr "" @@ -2972,7 +2980,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:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Chat" msgstr "Discussion" @@ -3037,7 +3045,7 @@ msgstr "" msgid "Checked {checkedAgo}. Nothing new since your last conversation. Updated {updatedAgo}." msgstr "" -#: src/components/chat/agenticToolActivity.ts:123 +#: src/components/chat/agenticToolActivity.ts:125 msgid "Checking live conversations" msgstr "" @@ -3451,7 +3459,7 @@ msgstr "Tags de conversation" msgid "conversations" msgstr "conversations" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:111 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:114 #: src/components/workspace/OrganisationProjectsTable.tsx:219 #: src/components/project/ProjectUsageAndSharing.tsx:453 #: src/components/conversation/ProjectConversationsPanel.tsx:725 @@ -3567,6 +3575,10 @@ msgstr "Copier dans le presse-papiers" msgid "Copying..." msgstr "Copie en cours..." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:102 +msgid "Could not apply all the tag changes." +msgstr "" + #: src/components/chat/ProjectUpdateSuggestionCard.tsx:182 msgid "Could not apply the changes. Nothing was saved." msgstr "" @@ -3653,7 +3665,7 @@ msgstr "" msgid "Could not save tags" msgstr "" -#: src/components/project/hooks/index.ts:450 +#: src/components/project/hooks/index.ts:460 msgid "Could not save the host guide" msgstr "" @@ -4439,6 +4451,7 @@ msgid "Dismiss" msgstr "" #: src/components/goal/GoalSuggestionCard.tsx:86 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:173 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:249 #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:113 #: src/components/chat/CanvasSuggestionCard.tsx:256 @@ -4499,7 +4512,7 @@ msgstr "" #: src/routes/onboarding/OnboardingRoute.tsx:525 #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 -#: src/components/chat/AgenticChatPanel.tsx:333 +#: src/components/chat/AgenticChatPanel.tsx:335 msgid "Done" msgstr "" @@ -4649,6 +4662,10 @@ msgstr "" #~ msgid "Earlier" #~ msgstr "Plus anciennes" +#: src/components/project/ProjectExperimentalSection.tsx:25 +msgid "Early features you can try on this project before they are ready for everyone." +msgstr "" + #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:1065 msgid "participant.button.echo" @@ -4967,7 +4984,7 @@ msgstr "Entrez le code à 6 chiffres de votre application d'authentification." msgid "Enter the current six-digit code from your authenticator app." msgstr "Entrez le code actuel à six chiffres de votre application d'authentification." -#: src/components/chat/AgenticChatPanel.tsx:1756 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Enter to send, Shift+Enter for a new line" msgstr "" @@ -4996,8 +5013,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:371 -#: src/components/chat/AgenticChatPanel.tsx:338 -#: src/components/chat/AgenticChatPanel.tsx:1427 +#: src/components/chat/AgenticChatPanel.tsx:340 +#: src/components/chat/AgenticChatPanel.tsx:1440 msgid "Error" msgstr "Erreur" @@ -5017,10 +5034,10 @@ msgstr "Erreur lors de la création du rapport" #~ msgid "Error loading insights" #~ msgstr "Erreur lors du chargement des perspectives" -#: src/routes/project/ProjectRoutes.tsx:81 -#: src/routes/project/ProjectRoutes.tsx:168 -#: src/routes/project/ProjectRoutes.tsx:270 -#: src/routes/project/ProjectRoutes.tsx:309 +#: src/routes/project/ProjectRoutes.tsx:83 +#: src/routes/project/ProjectRoutes.tsx:177 +#: src/routes/project/ProjectRoutes.tsx:279 +#: src/routes/project/ProjectRoutes.tsx:318 msgid "Error loading project" msgstr "Erreur lors du chargement du projet" @@ -5154,10 +5171,9 @@ msgstr "Quitter le plein écran" msgid "Expand workspaces" msgstr "" -#: src/components/report/UpdateReportModalButton.tsx:191 -#: src/components/report/CreateReportForm.tsx:198 -#~ msgid "Experimental" -#~ msgstr "Expérimental" +#: src/components/project/ProjectExperimentalSection.tsx:23 +msgid "Experimental" +msgstr "Expérimental" #: src/components/billing/BillingManager.tsx:182 msgid "Expired" @@ -5288,7 +5304,7 @@ msgstr "Échec de la copie du chat. Veuillez réessayer." msgid "Failed to copy transcript. Please try again." msgstr "Échec de la copie de la transcription. Réessaie." -#: src/components/project/hooks/index.ts:583 +#: src/components/project/hooks/index.ts:593 msgid "Failed to create custom topic" msgstr "Échec de la création du sujet personnalisé" @@ -5300,7 +5316,7 @@ msgstr "" msgid "Failed to delete chat" msgstr "" -#: src/components/project/hooks/index.ts:635 +#: src/components/project/hooks/index.ts:645 msgid "Failed to delete custom topic" msgstr "Échec de la suppression du sujet personnalisé" @@ -5312,7 +5328,7 @@ msgstr "" msgid "Failed to delete response" msgstr "Échec de la suppression de la réponse" -#: src/components/project/hooks/index.ts:331 +#: src/components/project/hooks/index.ts:341 msgid "Failed to delete tag" msgstr "" @@ -5441,15 +5457,15 @@ 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:1299 +#: src/components/chat/AgenticChatPanel.tsx:1312 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1258 +#: src/components/chat/AgenticChatPanel.tsx:1271 msgid "Failed to submit agentic message" msgstr "" -#: src/components/project/hooks/index.ts:610 +#: src/components/project/hooks/index.ts:620 msgid "Failed to update custom topic" msgstr "Échec de la mise à jour du sujet personnalisé" @@ -5712,7 +5728,7 @@ msgstr "" #~ msgid "Forecast: ~{0}" #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:157 +#: src/components/chat/agenticToolActivity.ts:160 msgid "Forgetting a saved memory" msgstr "" @@ -6149,7 +6165,7 @@ msgstr "" msgid "Hide revision data" msgstr "Masquer les données de révision" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Hide steps" msgstr "" @@ -6174,7 +6190,7 @@ msgid "host guide" msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:167 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:101 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:104 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:53 msgid "Host guide" msgstr "" @@ -6238,11 +6254,11 @@ msgstr "" #~ msgid "I accept the <0>terms" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1567 +#: src/components/chat/AgenticChatPanel.tsx:1594 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1583 +#: src/components/chat/AgenticChatPanel.tsx:1610 msgid "I applied the goal." msgstr "" @@ -6320,7 +6336,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1505 +#: src/components/chat/AgenticChatPanel.tsx:1518 msgid "Improve my setup" msgstr "" @@ -7035,7 +7051,7 @@ msgstr "" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 #: src/routes/project/library/LibraryRoute.tsx:132 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:94 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:97 msgid "Library" msgstr "Bibliothèque" @@ -7104,7 +7120,7 @@ msgstr "Lien vers la politique de confidentialité de votre organisation qui ser #~ msgid "LinkedIn Post (Experimental)" #~ msgstr "Publication LinkedIn (Expérimental)" -#: src/components/chat/AgenticChatPanel.tsx:1495 +#: src/components/chat/AgenticChatPanel.tsx:1508 msgid "List my conversations" msgstr "" @@ -7112,15 +7128,15 @@ msgstr "" #~ msgid "List project conversations" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1496 +#: src/components/chat/AgenticChatPanel.tsx:1509 msgid "List the conversations in this project." msgstr "" -#: src/components/chat/agenticToolActivity.ts:121 +#: src/components/chat/agenticToolActivity.ts:123 msgid "Listing conversations" msgstr "" -#: src/components/chat/agenticToolActivity.ts:117 +#: src/components/chat/agenticToolActivity.ts:119 msgid "Listing documentation pages" msgstr "" @@ -7172,10 +7188,14 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:986 +#: src/components/chat/AgenticChatPanel.tsx:999 msgid "Live stream interrupted. Falling back to polling." msgstr "" +#: src/components/project/ProjectExperimentalSection.tsx:45 +msgid "Living canvas" +msgstr "" + #: src/components/chat/agenticToolActivity.ts:120 #~ msgid "Load conversation summary" #~ msgstr "" @@ -7251,7 +7271,7 @@ msgstr "" #~ msgid "Loading projects…" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1438 +#: src/components/chat/AgenticChatPanel.tsx:1451 msgid "Loading this chat..." msgstr "" @@ -7320,7 +7340,7 @@ msgstr "" msgid "Log out and use the invited email" msgstr "" -#: src/components/chat/agenticToolActivity.ts:160 +#: src/components/chat/agenticToolActivity.ts:163 msgid "Logging this with the dembrane team" msgstr "" @@ -8488,6 +8508,7 @@ msgid "Not available" msgstr "Non disponible" #: src/routes/invite/AcceptInviteRoute.tsx:568 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:214 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:353 msgid "Not now" msgstr "" @@ -8571,7 +8592,7 @@ msgstr "" msgid "Notify participants when a report is published." msgstr "Notifier les participants lorsqu'un rapport est publié." -#: src/components/chat/agenticToolActivity.ts:149 +#: src/components/chat/agenticToolActivity.ts:152 msgid "Noting this for the dembrane team" msgstr "" @@ -8902,7 +8923,7 @@ msgstr "" msgid "Open the chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1414 +#: src/components/chat/AgenticChatPanel.tsx:1427 msgid "Open the old chat experience" msgstr "" @@ -9953,7 +9974,7 @@ msgstr "" #~ msgid "Preferences" #~ msgstr "Préférences" -#: src/components/chat/agenticToolActivity.ts:107 +#: src/components/chat/agenticToolActivity.ts:109 msgid "Preparing a navigation shortcut" msgstr "" @@ -10396,7 +10417,7 @@ msgstr "" #~ msgstr "Citations" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:510 +#: src/components/chat/AgenticChatPanel.tsx:514 msgid "Ran {0} steps at once" msgstr "" @@ -10442,36 +10463,36 @@ msgid "Read-only" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:133 +#: src/components/chat/agenticToolActivity.ts:135 msgid "Reading {0}'s summary" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:138 +#: src/components/chat/agenticToolActivity.ts:140 msgid "Reading {0}'s transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:134 +#: src/components/chat/agenticToolActivity.ts:136 msgid "Reading a conversation summary" msgstr "" -#: src/components/chat/agenticToolActivity.ts:115 +#: src/components/chat/agenticToolActivity.ts:117 msgid "Reading a skill" msgstr "" -#: src/components/chat/agenticToolActivity.ts:139 +#: src/components/chat/agenticToolActivity.ts:141 msgid "Reading a transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:119 +#: src/components/chat/agenticToolActivity.ts:121 msgid "Reading project context" msgstr "" -#: src/components/chat/agenticToolActivity.ts:109 +#: src/components/chat/agenticToolActivity.ts:111 msgid "Reading project settings" msgstr "" -#: src/components/chat/agenticToolActivity.ts:113 +#: src/components/chat/agenticToolActivity.ts:115 msgid "Reading the documentation" msgstr "" @@ -10725,6 +10746,7 @@ msgstr "" #: src/components/organisation/InviteEmailList.tsx:58 #: src/components/memory/MemoryList.tsx:98 #: src/components/memory/MemoryList.tsx:118 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:199 msgid "Remove" msgstr "Supprimer" @@ -10808,6 +10830,10 @@ msgstr "" msgid "Remove this memory?" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:153 +msgid "Removed" +msgstr "" + #: src/routes/organisation/OrganisationRoute.tsx:522 msgid "Removed from organisation" msgstr "" @@ -10825,7 +10851,7 @@ msgstr "Renommer" #~ msgstr "Renommer" #: src/components/chat/ChatAccordion.tsx:158 -#: src/components/chat/AgenticChatPanel.tsx:1370 +#: src/components/chat/AgenticChatPanel.tsx:1383 msgid "Rename chat" msgstr "Renommer le chat" @@ -10864,7 +10890,7 @@ msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:175 #: src/routes/project/report/ProjectReportRoute.tsx:185 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:106 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:109 #: src/components/report/ReportRenderer.tsx:75 #: src/components/report/ReportModalNavigationButton.tsx:92 msgid "Report" @@ -11167,7 +11193,7 @@ msgstr "" msgid "retracted for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:153 +#: src/components/chat/agenticToolActivity.ts:156 msgid "Retracting a note for the dembrane team" msgstr "" @@ -11246,7 +11272,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Examiner les fichiers avant le téléchargement" -#: src/components/chat/AgenticChatPanel.tsx:1506 +#: src/components/chat/AgenticChatPanel.tsx:1519 msgid "Review my project settings and suggest improvements." msgstr "" @@ -11326,7 +11352,7 @@ msgstr "Lignes par page" #~ msgid "Run status:" #~ msgstr "Statut de l'exécution:" -#: src/components/chat/AgenticChatPanel.tsx:343 +#: src/components/chat/AgenticChatPanel.tsx:345 msgid "Running" msgstr "" @@ -11605,16 +11631,16 @@ msgstr "" msgid "Searched through the most relevant sources" msgstr "Recherché parmi les sources les plus pertinentes" -#: src/components/chat/agenticToolActivity.ts:129 +#: src/components/chat/agenticToolActivity.ts:131 msgid "Searching conversations" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:128 +#: src/components/chat/agenticToolActivity.ts:130 msgid "Searching conversations for \"{0}\"" msgstr "" -#: src/components/chat/agenticToolActivity.ts:111 +#: src/components/chat/agenticToolActivity.ts:113 msgid "Searching the documentation" msgstr "" @@ -11622,12 +11648,12 @@ msgstr "" #~ msgid "Searching through the most relevant sources" #~ msgstr "Recherche parmi les sources les plus pertinentes" -#: src/components/chat/agenticToolActivity.ts:144 +#: src/components/chat/agenticToolActivity.ts:146 msgid "Searching transcripts" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:143 +#: src/components/chat/agenticToolActivity.ts:145 msgid "Searching transcripts for \"{0}\"" msgstr "" @@ -11845,7 +11871,7 @@ msgid "Self-serve" msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:1024 -#: src/components/chat/AgenticChatPanel.tsx:1776 +#: src/components/chat/AgenticChatPanel.tsx:1803 msgid "Send" msgstr "Envoyer" @@ -11986,7 +12012,7 @@ msgstr "" #: src/features/sidebar/views/workspace/WorkspaceHomeView.tsx:80 #: src/features/sidebar/views/user/UserSettingsView.tsx:34 #: src/features/sidebar/views/project/ProjectSettingsView.tsx:18 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:129 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:132 #: src/features/sidebar/views/org/OrgSettingsView.tsx:26 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 @@ -12190,7 +12216,7 @@ msgstr "Afficher les références" msgid "Show revision data" msgstr "Afficher les données de révision" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Show steps" msgstr "" @@ -12629,6 +12655,10 @@ msgstr "" msgid "Suggested project goal" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:169 +msgid "Suggested tag changes for your project" +msgstr "" + #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:109 msgid "Suggested verification prompt" msgstr "" @@ -12638,15 +12668,15 @@ msgstr "" msgid "Suggested:" msgstr "Suggéré:" -#: src/components/chat/agenticToolActivity.ts:103 +#: src/components/chat/agenticToolActivity.ts:105 msgid "Suggesting a canvas" msgstr "" -#: src/components/chat/agenticToolActivity.ts:105 +#: src/components/chat/agenticToolActivity.ts:107 msgid "Suggesting a project goal" msgstr "" -#: src/components/chat/agenticToolActivity.ts:101 +#: src/components/chat/agenticToolActivity.ts:103 msgid "Suggesting a verification prompt" msgstr "" @@ -12654,6 +12684,10 @@ msgstr "" msgid "Suggesting project changes" msgstr "" +#: src/components/chat/agenticToolActivity.ts:101 +msgid "Suggesting tag changes" +msgstr "" + #: src/components/chat/templates.ts:26 msgid "Summarize" msgstr "Résumer" @@ -12758,7 +12792,7 @@ msgstr "Système" msgid "System status" msgstr "" -#: src/components/project/hooks/index.ts:328 +#: src/components/project/hooks/index.ts:338 msgid "Tag deleted" msgstr "" @@ -12776,6 +12810,14 @@ msgstr "Étiquettes" #~ msgid "Tags (max 3)" #~ msgstr "Tags (max 3)" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:180 +msgid "Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply." +msgstr "" + +#: src/components/chat/TagsUpdateSuggestionCard.tsx:99 +msgid "Tags updated. You can fine-tune them anytime in the portal editor." +msgstr "" + #: src/routes/invite/AcceptInviteRoute.tsx:483 #: src/routes/invite/AcceptInviteRoute.tsx:523 msgid "Take me to {resolvedWorkspaceName}" @@ -13148,6 +13190,10 @@ msgstr "Ces modèles de vue par défaut seront générés lorsque vous créerez msgid "These settings are read-only. Only organisation administrators can modify project defaults." msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:132 +msgid "These tag changes are applied to your project." +msgstr "" + #: src/components/invite/InviteModal.tsx:654 msgid "These workspaces are billed separately. Each person you add takes a seat in {billingContextCount} billing contexts, each invoiced on its own." msgstr "" @@ -13284,7 +13330,7 @@ msgstr "C'est un exemple des données JSON envoyées à votre URL de webhook lor msgid "This is not saved yet." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1402 +#: src/components/chat/AgenticChatPanel.tsx:1415 msgid "This is the new chat experience" msgstr "" @@ -13626,11 +13672,11 @@ msgstr "Trop long" msgid "Tool" msgstr "" -#: src/components/project/hooks/index.ts:591 +#: src/components/project/hooks/index.ts:601 msgid "Topic created successfully" msgstr "Sujet créé avec succès" -#: src/components/project/hooks/index.ts:643 +#: src/components/project/hooks/index.ts:653 msgid "Topic deleted successfully" msgstr "Sujet supprimé avec succès" @@ -13638,7 +13684,7 @@ msgstr "Sujet supprimé avec succès" msgid "Topic label" msgstr "Étiquette de sujet" -#: src/components/project/hooks/index.ts:618 +#: src/components/project/hooks/index.ts:628 msgid "Topic updated successfully" msgstr "Sujet mis à jour avec succès" @@ -13723,7 +13769,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcription en cours..." -#: src/components/chat/AgenticChatPanel.tsx:194 +#: src/components/chat/AgenticChatPanel.tsx:196 msgid "transcript" msgstr "" @@ -13739,7 +13785,7 @@ msgstr "Transcription" msgid "Transcript copied to clipboard" msgstr "Transcription copiée dans le presse-papiers" -#: src/components/chat/AgenticChatPanel.tsx:193 +#: src/components/chat/AgenticChatPanel.tsx:195 msgid "transcript excerpt" msgstr "" @@ -14204,15 +14250,15 @@ msgstr "" #~ msgid "Updates every few minutes." #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:151 +#: src/components/chat/agenticToolActivity.ts:154 msgid "Updating a note for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:155 +#: src/components/chat/agenticToolActivity.ts:158 msgid "Updating a saved memory" msgstr "" -#: src/components/chat/agenticToolActivity.ts:146 +#: src/components/chat/agenticToolActivity.ts:149 msgid "Updating project tags" msgstr "" @@ -14388,7 +14434,7 @@ msgstr "L'URL est requise" msgid "URL must start with http:// or https://" msgstr "L'URL doit commencer par http:// ou https://" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:122 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:125 #: src/features/sidebar/views/org/OrgSettingsView.tsx:37 #: src/components/project/ProjectUsageAndSharing.tsx:415 #: src/components/layout/ProjectOverviewLayout.tsx:53 @@ -14919,7 +14965,7 @@ msgstr "Webhooks" msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "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." -#: src/routes/project/ProjectRoutes.tsx:182 +#: src/routes/project/ProjectRoutes.tsx:191 msgid "Webhooks are not enabled for this environment." msgstr "" @@ -15026,11 +15072,11 @@ msgstr "Que doit ECHO analyser ou générer à partir des conversations ?" #~ msgid "What should this report focus on?" #~ msgstr "Sur quoi ce rapport doit-il se concentrer ?" -#: src/components/chat/AgenticChatPanel.tsx:1501 +#: src/components/chat/AgenticChatPanel.tsx:1514 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1500 +#: src/components/chat/AgenticChatPanel.tsx:1513 msgid "What themes came up?" msgstr "" @@ -15116,7 +15162,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:358 -#: src/components/chat/AgenticChatPanel.tsx:1478 +#: src/components/chat/AgenticChatPanel.tsx:1491 msgid "Where would you like to start?" msgstr "" @@ -15183,15 +15229,15 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:511 +#: src/components/chat/AgenticChatPanel.tsx:515 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1332 +#: src/components/chat/AgenticChatPanel.tsx:1345 msgid "Working on your answer..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:506 +#: src/components/chat/AgenticChatPanel.tsx:510 msgid "Working..." msgstr "" diff --git a/echo/frontend/src/locales/fr-FR.ts b/echo/frontend/src/locales/fr-FR.ts index 6a9506494..24e5ba238 100644 --- a/echo/frontend/src/locales/fr-FR.ts +++ b/echo/frontend/src/locales/fr-FR.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"participant.anonymization.notice\":[\"Votre transcription sera anonymisée et votre hôte ne pourra pas écouter votre enregistrement.\"],\"announcements\":[\"annonces\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(facultatif)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"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\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversations • Modifié \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"uSTZVH\":[[\"conversationTotal\"],\" incluses\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 incluse\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 vue\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ membres ont rejoint\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"L9boOH\":[\"2. Lorsqu'un événement de conversation ou de rapport se produit, nous envoyons automatiquement les données à votre URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"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é.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"Compte et sécurité\"],\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Ajouter aux favoris\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"MIWKYQ\":[\"Ajouter à l'accès rapide\"],\"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\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"DtI2tD\":[\"Ajouter le vôtre\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Ajoutées\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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 :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"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\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Exécution guidée par les outils\"],\"VHg3DX\":[\"Chat Agentic\"],\"N40H+G\":[\"Tout\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"Tous les modèles\"],\"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 ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"zqhMd0\":[\"Une erreur inattendue s'est produite. Recharger la page ou revenir à l'accueil aide souvent.\"],\"QX6zrA\":[\"Analyse\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"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\"],\"1mXYsL\":[\"Hôte anonyme\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Apparence\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Appliquer\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Appliquer le modèle\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approuvé\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"ELQ+fw\":[\"Êtes-vous sûr de vouloir supprimer ce rapport ? Cette action est irréversible.\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"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 ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"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.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"L'assistant écrit...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La lecture de l'audio n'est pas disponible pour les conversations anonymisées\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Conseil audio\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Commencer !\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Réservez un appel pour partager vos commentaires\"],\"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.\"],\"CzeGfZ\":[\"Parcourir et partager des modèles avec d'autres hosts\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Intégrés\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"IqudIv\":[\"En supprimant ce projet, vous supprimerez toutes les données associées. Cette action est irréversible. Êtes-vous absolument sûr ?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Annuler la planification\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"OqbSPC\":[\"Discussion | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Nom du chat\"],\"8Q+lLG\":[\"Discussions\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"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.\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"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\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Bientôt disponible — partagez vos idées\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"chL5IG\":[\"Communauté\"],\"TVpZgL\":[\"Modèles communautaires\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"CfO59/\":[\"Comparer & Contraster Insights\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Terminé\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Sujets concrets\"],\"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\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"4b3oEV\":[\"Contenu\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"JX3KT4\":[\"Suggestions contextuelles\"],\"xGVfLh\":[\"Continuer\"],\"participant.button.continue\":[\"Continuer\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"Np+C87\":[\"Conversations :\"],\"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\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copier le contenu du rapport\"],\"vAkFou\":[\"Copier le secret\"],\"RGCCrg\":[\"Copier le lien de partage\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Créer un compte\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"uVzvzz\":[\"Créer maintenant\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Créer un rapport\"],\"A5hiCy\":[\"Créer un modèle\"],\"s7XwOU\":[\"Créer un template\"],\"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\"],\"/iFtGl\":[\"Créé \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Créé le\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Recadrer l'avatar\"],\"udBqWc\":[\"Recadrer l'image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recadrer le logo\"],\"yOrQ4N\":[\"Logo actuel\"],\"Pn2B7/\":[\"Mot de passe actuel\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"personnalisé\"],\"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.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Personnalisez la structure de votre rapport. Cette fonctionnalité arrive bientôt.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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é)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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é\"],\"948GTz\":[\"Supprimer le sujet personnalisé\"],\"mp235G\":[\"Supprimer le projet\"],\"++iDlT\":[\"Supprimer le projet\"],\"rUWrSE\":[\"Supprimer le rapport\"],\"MlrelG\":[\"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.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"QMogcD\":[\"Réponse\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Décrivez l'utilité de ce template...\"],\"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\"],\"ozaega\":[\"Détermine sous quelle base juridique de GDPR les données personnelles sont traitées. Cela affecte les flux de consentement, les droits des sujets des données et les obligations de conservation.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Afficher les suggestions contextuelles dans le chat\"],\"pfa8F0\":[\"Nom d'affichage\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"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\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"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é\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"p. ex. demain à 9h00\"],\"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.\"],\"5oD9f/\":[\"Plus anciennes\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"modifier\"],\"ePK91l\":[\"Modifier\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Modifier la conversation\"],\"Y/3VME\":[\"Modifier le sujet personnalisé\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"gGx5tM\":[\"Édition\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Vérification de l'e-mail | dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji affiché à côté du sujet, par exemple : 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \\\"résultats\\\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Saisir le mot de passe actuel\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"VpwcSk\":[\"Saisir le nouveau mot de passe\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"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\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"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\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"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.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"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\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"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é\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"+FLjBo\":[\"Filter by organisation 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\"],\"JmZ/+d\":[\"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\"],\"kODvZJ\":[\"Prénom\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Orientez votre rapport (optionnel)\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"de \",[\"0\"]],\"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\"],\"oADIO6\":[\"Générez un nouveau rapport. Les rapports précédents resteront accessibles.\"],\"QsUhrf\":[\"Générer un rapport\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"MWSGhX\":[\"Générer la bibliothèque\"],\"5SWGxv\":[\"Générer maintenant\"],\"GWUJ9X\":[\"Générer maintenant\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"DXr0zk\":[\"Plein écran\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Accéder au portail de commentaires\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Vue en grille\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+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\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"dN/wNN\":[\"Hide steps\"],\"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\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Comment ça marche :\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Inclure le lien du portail\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions pour générer le résultat de la vérification\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Adresse IP\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"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.\"],\"JsWQuM\":[\"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. Vous pouvez optionnellement orienter le rapport sur un sujet spécifique.\"],\"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.\"],\"Lj7sBL\":[\"Italien\"],\"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.\"],\"GaQMyV\":[\"Rejoindre \",[\"0\"],\" sur dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Rejoindre la communauté de Slack\"],\"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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Un instant\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"Juste maintenant\"],\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Langue\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Dernier\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"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\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"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\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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.\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Connexion\"],\"LM/dWU\":[\"Connexion | dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo supprimé\"],\"MjfaMh\":[\"Logo mis à jour\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Déconnexion\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Plus long en premier\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Les miens\"],\"b85Pfh\":[\"Minimum 8 caractères\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"autres\"],\"JcD7qf\":[\"Plus d'actions\"],\"zMx0gF\":[\"Plus de templates\"],\"y1ypMV\":[\"Plus populaires\"],\"7BgchI\":[\"Plus utilisés\"],\"QWdKwH\":[\"Déplacer\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Déplacer\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Doit etre au moins 10 minutes dans le futur\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mes modèles\"],\"+O1YmH\":[\"Mes templates\"],\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"Nouvelles conversations disponibles — mettez à jour votre 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.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"3RC8Um\":[\"De nouvelles conversations ont été ajoutées depuis votre dernier rapport. Générez un rapport mis à jour pour les inclure. Votre rapport précédent restera accessible.\"],\"QgiaQ8\":[\"Nouvelle date et heure\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"Nouveau mot de passe\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"Nouveau projet\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Nouveau rapport\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Plus récents\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Plus récent en premier\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Aucune action trouvée\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"S8FeaY\":[\"Pas encore de templates communautaires. Partagez le vôtre pour commencer.\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"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.\"],\"meAa31\":[\"Aucune conversation\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Pas encore de conversations. Vous pouvez planifier un rapport maintenant et les conversations seront incluses une fois ajoutees.\"],\"ax9iz4\":[\"Pas encore de templates. Créez-en un pour commencer.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"1iQvuD\":[\"Pas encore de rapports\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"Pas de focus spécifique\"],\"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}\"],\"kaDUQs\":[\"Aucun modèle pour le moment. Créez le vôtre ou parcourez Tous les modèles.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"Aucun workspace dans cette organisation pour l'instant.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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é.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Maintenant\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"En cours\"],\"conversation.ongoing\":[\"En cours\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Conversations en cours\"],\"Dw7aQc\":[\"S'applique uniquement lorsque le rapport est publié\"],\"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.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"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.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"QTXl9z\":[\"Ouvrir le portail de commentaires\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optionnel (retour à l'anglais)\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"D'autres hôtes peuvent voir et copier votre template. Vous pouvez le retirer à tout moment.\"],\"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\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Choisir la date et l'heure\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Choisissez un ou plusieurs angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Épingler\"],\"u8qC4w\":[\"Épingler le projet\"],\"S+WiJ3\":[\"Épinglez des modèles ici pour un accès rapide.\"],\"lepv9z\":[\"Épingler à la barre de chat\"],\"fr2ggG\":[\"épinglé\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Épinglés est plein (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Modèles épinglés\"],\"Atb9XB\":[\"Épinglé à la barre de chat\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"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)\"],\"gEEhkM\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Record\\\" ci-dessous. Vous pouvez également répondre par texte en cliquant sur l'icône 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.\"],\"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.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"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\"],\"Tx36sk\":[\"Lien du portail\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Propulsé par\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Vous préférez discuter directement ? <0>Réservez un appel avec moi\"],\"Q6hhn8\":[\"Préférences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/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.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"S8ugMC\":[\"Imprimer le rapport\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Confidentialité et Sécurité\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projet créé\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"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.\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"Valeurs par défaut du projet\"],\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Aperçu du projet | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Accueil des projets\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publier\"],\"vsX8VJ\":[\"Publiez ce rapport d'abord pour afficher le lien du portail\"],\"GwOmnT\":[\"Publiez ce rapport pour activer l'impression\"],\"ZSi2AK\":[\"Publiez ce rapport pour activer le partage\"],\"IHzoSN\":[\"Publiez ce rapport pour obtenir un lien de partage\"],\"u3wRF+\":[\"Publié\"],\"4R3R74\":[\"Publié dans la communauté\"],\"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.\"],\"9iShh/\":[\"Accès rapide (max 5)\"],\"utRRxm\":[\"Accès rapide plein (max 5)\"],\"dN0qso\":[\"Accès rapide :\"],\"eWLklq\":[\"Citations\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Évaluer ce prompt :\"],\"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 →\"],\"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\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"DqXVNZ\":[\"Prêt à générer\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.s3check.reconnect\":[\"Reconnecter\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Régénérer\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"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\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"/PACVa\":[\"Notes de version\"],\"7dZnmw\":[\"Pertinence\"],\"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\"],\"hTDMBB\":[\"Recharger la page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Supprimer l'avatar\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Retirer des favoris\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Retirer de l'accès rapide\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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?\"],\"nVEhnc\":[\"Removed from organisation\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"6PsaMr\":[\"Renommer le chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de réponse\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Rapport\"],\"UZ6fKH\":[\"Actions du rapport\"],\"e/MQa5\":[\"Rapport déjà en cours de génération\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"hh/mvZ\":[\"Génération du rapport annulée\"],\"sSy8vA\":[\"Génération du rapport en cours...\"],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"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é\"],\"mgTmvC\":[\"Structure du rapport\"],\"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\"],\"uLZGK+\":[\"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\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"TMLAx2\":[\"Requis\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reprogrammer\"],\"6eIR/n\":[\"Replanifier pour\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"9uplIY\":[\"Réinitialiser le Mot de Passe | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Ressources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Statut de l'exécution:\"],\"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 !\"],\"RgyKxd\":[\"Enregistrer l'accès rapide\"],\"5dVjYt\":[\"Enregistrer le modèle\"],\"zaYZWH\":[\"Enregistrer dans mes modèles\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Enregistrement...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scannez ou cliquez pour ouvrir le portail de commentaires\"],\"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\"],\"QS1Nla\":[\"Programmer pour plus tard\"],\"wCGy0o\":[\"Programmer le rapport\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Recherchez et sélectionnez les conversations pour ce chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"À bientôt\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Envoyer\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Envoyez un message pour démarrer une exécution agentique.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nom de la Séance\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"BVRW7i\":[\"Paramètres | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Partager\"],\"OuFYHU\":[\"Partager le rapport\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Partager ce rapport\"],\"lRZMol\":[\"Partager avec la communauté\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Partager avec la communauté\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"nnWGzO\":[\"Partagez vos idées avec notre équipe\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Partager votre voix\"],\"4o0klJ\":[\"Partagez votre voix en scannant le code QR\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Afficher un lien pour que les participants puissent contribuer\"],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Afficher la durée\"],\"YbxwRo\":[\"Afficher les suggestions générées\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"8Lpud3\":[\"Affichage de votre dernier rapport terminé.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"6Uau97\":[\"Passer\"],\"participant.button.verify_prompt.skip\":[\"Passer\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Communauté Slack\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"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.\"],\"zazql1\":[\"Une erreur est survenue lors de la génération de votre dernier rapport. Affichage de votre rapport le plus récent.\"],\"2WNFmv\":[\"Un problème est survenu lors de la génération de votre rapport.\"],\"a75OAp\":[\"Une erreur est survenue lors de la génération de votre rapport. Vous pouvez réessayer ci-dessous.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"vf1Tc/\":[\"Specific Details nécessite au moins une conversation.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Succès\"],\"aG+cH9\":[\"Suggérer des suggestions dynamiques basées sur votre conversation.\"],\"aZJj7n\":[\"Suggestions de prompts basées sur vos conversations\"],\"FyUg+Y\":[\"Suggestions de prompts basées sur vos conversations. Essayez d'envoyer un message pour voir.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"6xSPmn\":[\"Suggested project goal\"],\"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\"],\"F1nkJm\":[\"Résumer\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"Système\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Étiquettes\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Contenu du prompt...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Modèles\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"Le signalement de problème intégré n'a pas pu être chargé. Vous pouvez toujours nous informer de ce qui s'est passé via notre portail de commentaires. Cela nous aide à résoudre les problèmes plus rapidement que de ne pas soumettre de rapport.\"],\"gtMB2A\":[\"Le signalement de problème intégré n'a pas pu être chargé. Vous pouvez toujours nous informer de ce qui s'est passé via notre portail de commentaires. Cela nous aide à résoudre les problèmes plus rapidement que de ne pas soumettre de rapport.\"],\"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.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"Le signalement de problème n'a pas pu être chargé. Veuillez utiliser le portail de commentaires pour nous informer de ce qui s'est passé. Cela nous aide à résoudre les problèmes plus rapidement que de ne pas soumettre de rapport.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"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.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"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.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"Ces informations sont anonymisées\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"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\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Heure\"],\"Ww6cQ8\":[\"Date de création\"],\"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.\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcription en cours...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"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\"],\"qJb6G2\":[\"Réessayer\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainien\"],\"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\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Raison inconnue\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"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)\"],\"dFIzZ6\":[\"Détacher de la barre de chat\"],\"dx+iaL\":[\"Désépingler le projet\"],\"KyKziT\":[\"Retirer de la communauté\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Mis à jour\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Mettre à niveau\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"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\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Utiliser\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Sujets de vérification\"],\"c242dc\":[\"vérifié\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vue\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"Voir les annonces lues\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"Voir vos réponses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"vues\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"En attente de la fin des conversations avant de générer un rapport.\"],\"tCfopB\":[\"Vous souhaitez des structures de rapport personnalisées ?\"],\"VKMCO0\":[\"Tu veux ajouter un template à « dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"v8z9fL\":[\"Vous souhaitez personnaliser l'apparence de votre rapport ?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"2ZUkkL\":[\"Nous concevons cette fonctionnalité et aimerions avoir votre avis.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Bienvenue sur dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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 ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"pVIWuw\":[\"Que doit ECHO analyser ou générer à partir des conversations ?\"],\"ZsEVar\":[\"Sur quoi ce rapport doit-il se concentrer ?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"Ul3erb\":[\"What you can reach\"],\"3ePd3I\":[\"Qu'est-ce qui est nouveau ?\"],\"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.\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation\"],\"ORA5nz\":[\"Vous pouvez réessayer ci-dessous.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Votre nom\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Le vôtre\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"ACjxWW\":[\"Zoom\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"IDeRjd\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"GSQ8We\":[\"Activer Echo\"],\"GpCBCW\":[\"Activer ECHO\"],\"IHqkFL\":[\"Activer la réponse\"],\"7DwYDY\":[\"Activer Verify\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"dashboard.dembrane.concrete.experimental\"],\"participant.button.go.deeper\":[\"Va plus profond\"],\"participant.button.make.concrete\":[\"Rends-le concret\"],\"select.all.modal.skip.reason\":[\"certaines peuvent être ignorées en raison d'une transcription vide ou d'une limite de contexte\"],\"participant.modal.interruption.issue.description\":[\"Nous avons sauvegardé votre enregistrement jusqu'à <0>\",[\"formattedDuration\"],\" mais le reste a été perdu, désolé. <1/> Appuyez ci-dessous pour vous reconnecter, puis sur enregistrer pour continuer.\"],\"participant.modal.refine.info.title.go.deeper\":[\"Approfondir\"],\"participant.modal.refine.info.title.concrete\":[\"Concrétiser\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" Bientôt disponible\"],\"participant.modal.refine.info.title\":[\"Feature Bientôt disponible\"],\"participant.refine.go.deeper\":[\"Va plus profond\"],\"participant.concrete.artefact.error.description\":[\"Il semble que nous n'ayons pas pu charger cet artefact. Cela pourrait être un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"dashboard.dembrane.concrete.title\":[\"Rends-le concret\"],\"participant.refine.make.concrete\":[\"Rends-le concret\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Régénération de l'artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour « Rends-le concret ».\"],\"participant.go.deeper.generic.error.message\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton Va plus profond, ou contactez le support si le problème persiste.\"],\"participant.concrete.artefact.error.title\":[\"Impossible de charger l'artefact\"],\"participant.modal.refine.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour t'aider à affiner efficacement. Continue d'enregistrer pour que nous puissions formuler de meilleures suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Activez cette fonctionnalité pour permettre aux participants de créer et d'approuver des \\\"objets concrets\\\" à partir de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des objets concrets et les examiner dans l'aperçu.\"],\"participant.concrete.instructions.approve.artefact\":[\"Valide cet artefact si tout est bon pour toi.\"],\"participant.concrete.instructions.loading\":[\"Chargement\"],\"participant.concrete.selection.button.next\":[\"Suivant\"],\"participant.concrete.instructions.button.next\":[\"Suivant\"],\"participant.concrete.instructions.revise.artefact\":[\"Une fois que tu as discuté, clique sur « réviser » pour voir \",[\"objectLabel\"],\" changer pour refléter ta discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Une fois que tu as reçu \",[\"objectLabel\"],\", lis-le à haute voix et partage à voix haute ce que tu souhaites changer, si besoin.\"],\"dashboard.dembrane.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour la vérification.\"],\"participant.concrete.selection.title\":[\"Qu'est-ce que tu veux rendre concret ?\"],\"participant.concrete.instructions.receive.artefact\":[\"Tu recevras bientôt \",[\"objectLabel\"],\" pour les rendre concrets.\"],\"participant.concrete.instructions.approval.helps\":[\"Ton approbation nous aide à comprendre ce que tu penses vraiment !\"],\"participant.anonymization.notice\":[\"Votre transcription sera anonymisée et votre hôte ne pourra pas écouter votre enregistrement.\"],\"announcements\":[\"annonces\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(pour un traitement audio amélioré)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(facultatif)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" prêt\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"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\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversations • Modifié \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"uSTZVH\":[[\"conversationTotal\"],\" incluses\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\" jours\"],\"bT6AxW\":[[\"diffInHours\"],\" heures\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" secondes\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Attendre \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 incluse\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 vue\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ membres ont rejoint\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. Lorsqu'un événement de conversation se produit, nous envoyons automatiquement les données de la conversation à votre URL\"],\"L9boOH\":[\"2. Lorsqu'un événement de conversation ou de rapport se produit, nous envoyons automatiquement les données à votre URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"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é.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"Compte et sécurité\"],\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Ajouter aux favoris\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"MIWKYQ\":[\"Ajouter à l'accès rapide\"],\"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\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"DtI2tD\":[\"Ajouter le vôtre\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Ajoutées\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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 :\"],\"SJCAsQ\":[\"Ajout du contexte :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"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\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Exécution guidée par les outils\"],\"VHg3DX\":[\"Chat Agentic\"],\"N40H+G\":[\"Tout\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"Cmt62w\":[\"Toutes les conversations sont prêtes\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"baQJ1t\":[\"Toutes les perspectives\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"Tous les modèles\"],\"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 ?\"],\"G54oFr\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"zqhMd0\":[\"Une erreur inattendue s'est produite. Recharger la page ou revenir à l'accueil aide souvent.\"],\"QX6zrA\":[\"Analyse\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"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\"],\"1mXYsL\":[\"Hôte anonyme\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Apparence\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Appliquer\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Appliquer le modèle\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approuvé\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Êtes-vous sûr de vouloir supprimer ce projet ?\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"B8ymes\":[\"Êtes-vous sûr de vouloir supprimer cet enregistrement ?\"],\"ELQ+fw\":[\"Êtes-vous sûr de vouloir supprimer ce rapport ? Cette action est irréversible.\"],\"G2gLnJ\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ?\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"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 ?\"],\"xu5cdS\":[\"Êtes-vous sûr de vouloir terminer ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"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.\"],\"JHgUuT\":[\"Artefact approuvé avec succès !\"],\"IbpaM+\":[\"Artefact rechargé avec succès !\"],\"Qcm/Tb\":[\"Artefact révisé avec succès !\"],\"uCzCO2\":[\"Artefact mis à jour avec succès !\"],\"KYehbE\":[\"Artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Demander aux participants de fournir leur nom lorsqu'ils commencent une conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"L'assistant écrit...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"Sélectionne au moins un sujet pour activer Rends-le concret\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La lecture de l'audio n'est pas disponible pour les conversations anonymisées\"],\"DMBYlw\":[\"Traitement audio en cours\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Les enregistrements audio seront supprimés après 30 jours à partir de la date d'enregistrement\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Conseil audio\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Sélection automatique\"],\"3D5FPO\":[\"Sélection automatique désactivée\"],\"ajAMbT\":[\"Sélection automatique activée\"],\"jEqKwR\":[\"Sélectionner les sources à ajouter à la conversation\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Inclut automatiquement les conversations pertinentes pour l'analyse sans sélection manuelle\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"csDS2L\":[\"Disponible\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Commencer !\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Vue d’ensemble\"],\"vZERag\":[\"Vue d’ensemble - Thèmes et tendances\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Réservez un appel pour partager vos commentaires\"],\"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.\"],\"CzeGfZ\":[\"Parcourir et partager des modèles avec d'autres hosts\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Intégrés\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"En supprimant ce projet, vous supprimerez toutes les données qui y sont associées. Cette action ne peut pas être annulée. Êtes-vous ABSOLUMENT sûr de vouloir supprimer ce projet ?\"],\"IqudIv\":[\"En supprimant ce projet, vous supprimerez toutes les données associées. Cette action est irréversible. Êtes-vous absolument sûr ?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Annuler la planification\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Les modifications sont enregistrées automatiquement pendant que vous utilisez l'application. <0/>Une fois que vous avez des modifications non enregistrées, vous pouvez cliquer n'importe où pour les sauvegarder. <1/>Vous verrez également un bouton pour annuler les modifications.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"AHZflp\":[\"Discussion\"],\"OqbSPC\":[\"Discussion | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Nom du chat\"],\"8Q+lLG\":[\"Discussions\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"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.\"],\"pWT04I\":[\"Vérification...\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citation des sources suivantes\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"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\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Bientôt disponible — partagez vos idées\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"chL5IG\":[\"Communauté\"],\"TVpZgL\":[\"Modèles communautaires\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"CfO59/\":[\"Comparer & Contraster Insights\"],\"jlZul5\":[\"Comparez et contrastez les éléments suivants fournis dans le contexte.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Terminé\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Sujets concrets\"],\"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\"],\"p2/GCq\":[\"Confirmer le mot de passe\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contactez votre représentant commercial\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contactez votre représentant commercial pour activer cette fonction aujourd'hui !\"],\"4b3oEV\":[\"Contenu\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"aVvy3Y\":[\"Limite de contexte atteinte\"],\"JX3KT4\":[\"Suggestions contextuelles\"],\"xGVfLh\":[\"Continuer\"],\"participant.button.continue\":[\"Continuer\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"ggJDqH\":[\"Audio de la conversation\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"BsHMTb\":[\"Conversation terminée\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Traitement de la conversation\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"7Ljafh\":[\"Tags de conversation\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations à partir du QR Code\"],\"nmB3V3\":[\"Conversations à partir du téléchargement\"],\"Np+C87\":[\"Conversations :\"],\"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\"],\"Dj+aS5\":[\"Copier le lien pour partager ce rapport\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copier le contenu du rapport\"],\"vAkFou\":[\"Copier le secret\"],\"RGCCrg\":[\"Copier le lien de partage\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"rG2gDo\":[\"Copier la transcription\"],\"OvEjsP\":[\"Copie en cours...\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Créer un compte\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Créer une bibliothèque\"],\"O671Oh\":[\"Créer une bibliothèque\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"vY2Gfm\":[\"Créer une nouvelle vue\"],\"uVzvzz\":[\"Créer maintenant\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Créer un rapport\"],\"A5hiCy\":[\"Créer un modèle\"],\"s7XwOU\":[\"Créer un template\"],\"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\"],\"/iFtGl\":[\"Créé \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Créé le\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Recadrer l'avatar\"],\"udBqWc\":[\"Recadrer l'image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recadrer le logo\"],\"yOrQ4N\":[\"Logo actuel\"],\"Pn2B7/\":[\"Mot de passe actuel\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"personnalisé\"],\"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.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Personnalisez la structure de votre rapport. Cette fonctionnalité arrive bientôt.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"Zone dangereuse\"],\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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é)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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é\"],\"948GTz\":[\"Supprimer le sujet personnalisé\"],\"mp235G\":[\"Supprimer le projet\"],\"++iDlT\":[\"Supprimer le projet\"],\"rUWrSE\":[\"Supprimer le rapport\"],\"MlrelG\":[\"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.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane est propulsé par l’IA. Vérifie bien les réponses.\"],\"QMogcD\":[\"Réponse\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Décrivez l'utilité de ce template...\"],\"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\"],\"ozaega\":[\"Détermine sous quelle base juridique de GDPR les données personnelles sont traitées. Cela affecte les flux de consentement, les droits des sujets des données et les obligations de conservation.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Afficher les suggestions contextuelles dans le chat\"],\"pfa8F0\":[\"Nom d'affichage\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Voulez-vous contribuer à ce projet ?\"],\"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\"],\"5154Ap\":[\"Télécharger toutes les transcriptions\"],\"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é\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"p. ex. demain à 9h00\"],\"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.\"],\"5oD9f/\":[\"Plus anciennes\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ÉCHO\"],\"rH6cQt\":[\"Echo est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"o6tfKZ\":[\"ECHO est optimisé par l'IA. Veuillez vérifier les réponses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"modifier\"],\"ePK91l\":[\"Modifier\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Modifier la conversation\"],\"Y/3VME\":[\"Modifier le sujet personnalisé\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Modifier la ressource\"],\"report.editor.description\":[\"Modifier le contenu du rapport en utilisant l'éditeur de texte enrichi ci-dessous. Vous pouvez formater le texte, ajouter des liens, des images et plus encore.\"],\"nP7CdQ\":[\"Modifier le webhook\"],\"gGx5tM\":[\"Édition\"],\"F6H6Lg\":[\"Mode d'édition\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Vérification de l'e-mail\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Vérification de l'e-mail | dembrane\"],\"iF3AC2\":[\"E-mail vérifié avec succès. Vous serez redirigé vers la page de connexion dans 5 secondes. Si vous n'êtes pas redirigé, veuillez cliquer <0>ici.\"],\"g2N9MJ\":[\"email@travail.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji affiché à côté du sujet, par exemple : 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Vide\"],\"DCRKbe\":[\"Activer 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Activer Explorer\"],\"+ljZfM\":[\"Activer Va plus profond\"],\"wGA7d4\":[\"Activer Rends-le concret\"],\"4KKbfZ\":[\"Activer la participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"Idlt6y\":[\"Activez cette fonctionnalité pour permettre aux participants de recevoir des notifications lorsqu'un rapport est publié ou mis à jour. Les participants peuvent entrer leur e-mail pour s'abonner aux mises à jour et rester informés.\"],\"g2qGhy\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Echo\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"pB03mG\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"ECHO\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dWv3hs\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses AI pendant leur conversation. Les participants peuvent cliquer sur \\\"dembrane Réponse\\\" après avoir enregistre leurs pensées pour recevoir un feedback contextuel, encourager une réflexion plus profonde et une engagement plus élevé. Une période de cooldown s'applique entre les demandes.\"],\"rkE6uN\":[\"Active cette fonction pour que les participants puissent demander des réponses générées par l’IA pendant leur conversation. Après avoir enregistré leurs idées, ils peuvent cliquer sur « Va plus profond » pour recevoir un feedback contextuel qui les aide à aller plus loin dans leur réflexion et leur engagement. Un délai s’applique entre deux demandes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \\\"résultats\\\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"IxzwiB\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Saisir le mot de passe actuel\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"vT+QoP\":[\"Entrez un nouveau nom pour la discussion :\"],\"VpwcSk\":[\"Saisir le nouveau mot de passe\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"S2MVUN\":[\"Erreur lors du chargement des annonces\"],\"xcUDac\":[\"Erreur lors du chargement des perspectives\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"3Uoj83\":[\"Erreur lors du chargement des citations\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"z05QRC\":[\"Erreur lors de la mise à jour du rapport\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"/PykH1\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore les thèmes et les tendances de toutes les conversations\"],\"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\"],\"9GMUFh\":[\"Échec de l'approbation de l'artefact. Veuillez réessayer.\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"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\"],\"p+a077\":[\"Échec de la désactivation de la sélection automatique pour cette discussion\"],\"iS9Cfc\":[\"Échec de l'activation de la sélection automatique pour cette discussion\"],\"C6KoMG\":[\"Échec de la fin de la conversation. Veuillez réessayer ou commencer une nouvelle conversation.\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"DKxr+e\":[\"Échec de la récupération des annonces\"],\"TSt/Iq\":[\"Échec de la récupération de la dernière annonce\"],\"D4Bwkb\":[\"Échec de la récupération du nombre d'annonces non lues\"],\"AXRzV1\":[\"Échec du chargement de l’audio ou l’audio n’est pas disponible\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"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.\"],\"hhLiKu\":[\"Échec de la révision de l'artefact. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Échec de la création d'une nouvelle conversation. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"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\"],\"wH6wcG\":[\"Échec de la vérification de l'état de l'e-mail. Veuillez réessayer.\"],\"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é\"],\"o7J4JM\":[\"Filtrer\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"+FLjBo\":[\"Filter by organisation 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\"],\"JmZ/+d\":[\"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\"],\"kODvZJ\":[\"Prénom\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Orientez votre rapport (optionnel)\"],\"MKEPCY\":[\"Suivre\"],\"JnPIOr\":[\"Suivre la lecture\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"de \",[\"0\"]],\"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\"],\"oADIO6\":[\"Générez un nouveau rapport. Les rapports précédents resteront accessibles.\"],\"QsUhrf\":[\"Générer un rapport\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"tSA0hO\":[\"Générer des perspectives à partir de vos conversations\"],\"MWSGhX\":[\"Générer la bibliothèque\"],\"5SWGxv\":[\"Générer maintenant\"],\"GWUJ9X\":[\"Générer maintenant\"],\"QqIxfi\":[\"Générer un secret\"],\"tM4cbZ\":[\"Générer des notes de réunion structurées basées sur les points de discussion suivants fournis dans le contexte.\"],\"gitFA/\":[\"Générer un résumé\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"IL8LH3\":[\"Va plus profond\"],\"DXr0zk\":[\"Plein écran\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Accéder au portail de commentaires\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Vue en grille\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+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\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Aidez-nous à traduire\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Bonjour, \",[\"0\"]],\"D+zLDD\":[\"Masqué\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"LqWHk1\":[\"Masquer \",[\"0\"]],\"u5xmYC\":[\"Tout masquer\"],\"txCbc+\":[\"Masquer toutes les perspectives\"],\"0lRdEo\":[\"Masquer les conversations sans contenu\"],\"eHo/Jc\":[\"Masquer les données\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"dN/wNN\":[\"Hide steps\"],\"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\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Comment ça marche :\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identifiez et analysez les thèmes récurrents dans ce contenu. Veuillez:\\n\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"Si vous êtes un utilisateur avancé configurant des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"Pour mieux naviguer dans les citations, créez des vues supplémentaires. Les citations seront ensuite regroupées en fonction de votre vue.\"],\"IJUcvx\":[\"En attendant, si vous souhaitez analyser les conversations qui sont encore en cours de traitement, vous pouvez utiliser la fonction Chat\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Inclure le lien du portail\"],\"aOhF9L\":[\"Inclure le lien vers le portail dans le rapport\"],\"Dvf4+M\":[\"Inclure les horodatages\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Bibliothèque de perspectives\"],\"ZVY8fB\":[\"Perspective non trouvée\"],\"sJa5f4\":[\"perspectives\"],\"3hJypY\":[\"Perspectives\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions pour générer le résultat de la vérification\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Jeton invalide. Veuillez réessayer.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Adresse IP\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"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.\"],\"JsWQuM\":[\"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. Vous pouvez optionnellement orienter le rapport sur un sujet spécifique.\"],\"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.\"],\"Lj7sBL\":[\"Italien\"],\"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.\"],\"GaQMyV\":[\"Rejoindre \",[\"0\"],\" sur dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Rejoindre la communauté de Slack\"],\"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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Un instant\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"Juste maintenant\"],\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Langue\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Nom\"],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Dernier\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Laissez-nous savoir!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Vérifions que nous pouvons vous entendre\"],\"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\"],\"yUQgLY\":[\"La bibliothèque est en cours de traitement\"],\"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\"],\"3gvJj+\":[\"Publication LinkedIn (Expérimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Niveau audio en direct:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Chargement\"],\"yQE2r9\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"ATTcN8\":[\"Chargement des sujets concrets…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Connexion\"],\"LM/dWU\":[\"Connexion | dembrane\"],\"Wd2LTk\":[\"Se connecter en tant qu'utilisateur existant\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo supprimé\"],\"MjfaMh\":[\"Logo mis à jour\"],\"WXSxpf\":[\"Logo mis à jour avec succès\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Déconnexion\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Plus long en premier\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Les miens\"],\"b85Pfh\":[\"Minimum 8 caractères\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"autres\"],\"JcD7qf\":[\"Plus d'actions\"],\"zMx0gF\":[\"Plus de templates\"],\"y1ypMV\":[\"Plus populaires\"],\"7BgchI\":[\"Plus utilisés\"],\"QWdKwH\":[\"Déplacer\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Déplacer\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Doit etre au moins 10 minutes dans le futur\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mes modèles\"],\"+O1YmH\":[\"Mes templates\"],\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"Nouvelles conversations disponibles — mettez à jour votre 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.\"],\"P/+jkp\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"3RC8Um\":[\"De nouvelles conversations ont été ajoutées depuis votre dernier rapport. Générez un rapport mis à jour pour les inclure. Votre rapport précédent restera accessible.\"],\"QgiaQ8\":[\"Nouvelle date et heure\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"Nouveau mot de passe\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"Nouveau projet\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"Nouveau rapport\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Plus récents\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Plus récent en premier\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.next\":[\"Suivant\"],\"participant.ready.to.begin.button.text\":[\"Prêt à commencer\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Aucune action trouvée\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"Aucune annonce disponible\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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\\\".\"],\"YM6Wft\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"S8FeaY\":[\"Pas encore de templates communautaires. Partagez le vôtre pour commencer.\"],\"zMt5AM\":[\"Aucun sujet concret disponible.\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"zM3DDm\":[\"Aucune conversation disponible pour créer la bibliothèque. Veuillez ajouter des conversations pour commencer.\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"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.\"],\"meAa31\":[\"Aucune conversation\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Pas encore de conversations. Vous pouvez planifier un rapport maintenant et les conversations seront incluses une fois ajoutees.\"],\"ax9iz4\":[\"Pas encore de templates. Créez-en un pour commencer.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"Aucune perspective disponible. Générez des perspectives pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"Aucun terme clé ou nom propre n'a encore été ajouté. Ajoutez-en en utilisant le champ ci-dessus pour améliorer la précision de la transcription.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant\"],\"yalI52\":[\"Aucune citation disponible. Générez des citations pour cette conversation en visitant<0><1> la bibliothèque du projet.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"1iQvuD\":[\"Pas encore de rapports\"],\"EhV94J\":[\"Aucune ressource trouvée.\"],\"Ev2r9A\":[\"Aucun résultat\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"Pas de focus spécifique\"],\"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}\"],\"kaDUQs\":[\"Aucun modèle pour le moment. Créez le vôtre ou parcourez Tous les modèles.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"TmTivZ\":[\"Aucune transcription disponible pour cette conversation.\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"MPZkyF\":[\"Aucune transcription n'est sélectionnée pour cette conversation\"],\"AotzsU\":[\"Pas de tutoriel (uniquement les déclarations de confidentialité)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"Aucun workspace dans cette organisation pour l'instant.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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é.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Maintenant\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"En cours\"],\"conversation.ongoing\":[\"En cours\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Conversations en cours\"],\"Dw7aQc\":[\"S'applique uniquement lorsque le rapport est publié\"],\"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.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Seules les \",[\"0\"],\" conversations terminées \",[\"1\"],\" seront incluses dans le rapport en ce moment. \"],\"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.\"],\"J17dTs\":[\"Oups ! Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Ouvrir la documentation\"],\"QTXl9z\":[\"Ouvrir le portail de commentaires\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Ouvert à la participation ?\"],\"Z7K0px\":[\"Ouvrir le guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Ouvrir le guide de l'hôte\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optionnel (retour à l'anglais)\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"D'autres hôtes peuvent voir et copier votre template. Vous pouvez le retirer à tout moment.\"],\"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\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Protéger le portail avec un mot de passe (demande de fonctionnalité)\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Choisir la date et l'heure\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Choisissez un ou plusieurs angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Épingler\"],\"u8qC4w\":[\"Épingler le projet\"],\"S+WiJ3\":[\"Épinglez des modèles ici pour un accès rapide.\"],\"lepv9z\":[\"Épingler à la barre de chat\"],\"fr2ggG\":[\"épinglé\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Épinglés est plein (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Modèles épinglés\"],\"Atb9XB\":[\"Épinglé à la barre de chat\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"3flRk2\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"S6iyis\":[\"Veuillez ne fermer votre navigateur\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"iMWXJN\":[\"Veuillez garder cet écran allumé. (écran noir = pas d'enregistrement)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Veuillez vous connecter pour continuer.\"],\"mUGRqu\":[\"Veuillez fournir un résumé succinct des éléments suivants fournis dans le contexte.\"],\"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)\"],\"gEEhkM\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Record\\\" ci-dessous. Vous pouvez également répondre par texte en cliquant sur l'icône 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.\"],\"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.\"],\"ps5D2F\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également choisir de répondre par texte en cliquant sur l'icône texte. \\n**Veuillez garder cet écran allumé** \\n(écran noir = pas d'enregistrement)\"],\"TsuUyf\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Démarrer l'enregistrement\\\" ci-dessous. Vous pouvez également répondre en texte en cliquant sur l'icône texte.\"],\"4TVnP7\":[\"Veuillez sélectionner une langue pour votre rapport\"],\"N63lmJ\":[\"Veuillez sélectionner une langue pour votre rapport mis à jour\"],\"XvD4FK\":[\"Veuillez sélectionner au moins une source\"],\"hxTGLS\":[\"Sélectionne des conversations dans la barre latérale pour continuer\"],\"GXZvZ7\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre écho.\"],\"Am5V3+\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre Echo.\"],\"CE1Qet\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander un autre ECHO.\"],\"Fx1kHS\":[\"Veuillez attendre \",[\"timeStr\"],\" avant de demander une autre réponse.\"],\"MgJuP2\":[\"Veuillez patienter pendant que nous générons votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"ei5r44\":[\"Veuillez patienter pendant que nous mettons à jour votre rapport. Vous serez automatiquement redirigé vers la page du rapport.\"],\"j5KznP\":[\"Veuillez patienter pendant que nous vérifions votre adresse e-mail.\"],\"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\"],\"Tx36sk\":[\"Lien du portail\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Propulsé par\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Vous préférez discuter directement ? <0>Réservez un appel avec moi\"],\"Q6hhn8\":[\"Préférences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Préparation de tes conversations... Ça peut prendre un moment.\"],\"/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.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"S8ugMC\":[\"Imprimer le rapport\"],\"ANWB5x\":[\"Imprimer ce rapport\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Confidentialité et Sécurité\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Déclarations de confidentialité\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"stk3Hv\":[\"traitement\"],\"vrnnn9\":[\"Traitement\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"kvs/6G\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat.\"],\"q11K6L\":[\"Le traitement de cette conversation a échoué. Cette conversation ne sera pas disponible pour l'analyse et le chat. Dernier statut connu : \",[\"0\"]],\"NQiPr4\":[\"Traitement de la transcription\"],\"48px15\":[\"Traitement de votre rapport...\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projet créé\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"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.\"],\"0qmd8V\":[\"Projet par défaut : activé. Cela remplacera les informations personnelles identifiables avec .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"Valeurs par défaut du projet\"],\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Aperçu du projet | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Accueil des projets\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publier\"],\"vsX8VJ\":[\"Publiez ce rapport d'abord pour afficher le lien du portail\"],\"GwOmnT\":[\"Publiez ce rapport pour activer l'impression\"],\"ZSi2AK\":[\"Publiez ce rapport pour activer le partage\"],\"IHzoSN\":[\"Publiez ce rapport pour obtenir un lien de partage\"],\"u3wRF+\":[\"Publié\"],\"4R3R74\":[\"Publié dans la communauté\"],\"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.\"],\"9iShh/\":[\"Accès rapide (max 5)\"],\"utRRxm\":[\"Accès rapide plein (max 5)\"],\"dN0qso\":[\"Accès rapide :\"],\"eWLklq\":[\"Citations\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Évaluer ce prompt :\"],\"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 →\"],\"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\"],\"ZKOO0I\":[\"Prêt à commencer ?\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"DqXVNZ\":[\"Prêt à générer\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.s3check.reconnect\":[\"Reconnecter\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Enregistrer\"],\"w80YWM\":[\"Enregistrer\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"9aloPG\":[\"Références\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Régénérer\"],\"844H5I\":[\"Régénérer la bibliothèque\"],\"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\"],\"w3qEvq\":[\"S'enregistrer en tant qu'utilisateur nouveau\"],\"/PACVa\":[\"Notes de version\"],\"7dZnmw\":[\"Pertinence\"],\"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\"],\"hTDMBB\":[\"Recharger la page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Supprimer l'avatar\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Retirer des favoris\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Retirer de l'accès rapide\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"2wxgft\":[\"Renommer\"],\"6PsaMr\":[\"Renommer le chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de réponse\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Rapport\"],\"UZ6fKH\":[\"Actions du rapport\"],\"e/MQa5\":[\"Rapport déjà en cours de génération\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"hh/mvZ\":[\"Génération du rapport annulée\"],\"sSy8vA\":[\"Génération du rapport en cours...\"],\"KFQLa2\":[\"La génération de rapports est actuellement en version bêta et limitée aux projets avec moins de 10 heures d'enregistrement.\"],\"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é\"],\"mgTmvC\":[\"Structure du rapport\"],\"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\"],\"uLZGK+\":[\"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\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"MepchF\":[\"Demande d'accès au microphone pour détecter les appareils disponibles...\"],\"TMLAx2\":[\"Requis\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"iE/mLK\":[\"Requires changemaker tier or above\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reprogrammer\"],\"6eIR/n\":[\"Replanifier pour\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Réinitialiser\"],\"xeMrqw\":[\"Réinitialiser toutes les options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"9uplIY\":[\"Réinitialiser le Mot de Passe | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Ressources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Statut de l'exécution:\"],\"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 !\"],\"RgyKxd\":[\"Enregistrer l'accès rapide\"],\"5dVjYt\":[\"Enregistrer le modèle\"],\"zaYZWH\":[\"Enregistrer dans mes modèles\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Enregistrement...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scannez ou cliquez pour ouvrir le portail de commentaires\"],\"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\"],\"QS1Nla\":[\"Programmer pour plus tard\"],\"wCGy0o\":[\"Programmer le rapport\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Recherchez et sélectionnez les conversations pour ce chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Rechercher des tags\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Recherche parmi les sources les plus pertinentes\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"Eyh9/O\":[\"Voir les détails du statut de la conversation\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"À bientôt\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Envoyer\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Envoyez un message pour démarrer une exécution agentique.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nom de la Séance\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Configuration de votre premier projet\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"BVRW7i\":[\"Paramètres | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Partager\"],\"OuFYHU\":[\"Partager le rapport\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Partager ce rapport\"],\"lRZMol\":[\"Partager avec la communauté\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Partager avec la communauté\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"nnWGzO\":[\"Partagez vos idées avec notre équipe\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Partager votre voix\"],\"4o0klJ\":[\"Partagez votre voix en scannant le code QR\"],\"swzLuF\":[\"Partager votre voix en scanant le code QR ci-dessous.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"h8lzfw\":[\"Afficher \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Afficher un lien pour que les participants puissent contribuer\"],\"lZw9AX\":[\"Afficher tout\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Afficher la durée\"],\"YbxwRo\":[\"Afficher les suggestions générées\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Afficher la chronologie dans le rapport (demande de fonctionnalité)\"],\"DLEIpN\":[\"Afficher les horodatages (expérimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"8Lpud3\":[\"Affichage de votre dernier rapport terminé.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Se connecter avec Google\"],\"6Uau97\":[\"Passer\"],\"participant.button.verify_prompt.skip\":[\"Passer\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"lH0eLz\":[\"Passer la carte de confidentialité (L'hôte gère la consentement)\"],\"b6NHjr\":[\"Passer la carte de confidentialité (L'hôte gère la base légale)\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Communauté Slack\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Certaines conversations sont encore en cours de traitement. La sélection automatique fonctionnera de manière optimale une fois le traitement audio terminé.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"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.\"],\"zazql1\":[\"Une erreur est survenue lors de la génération de votre dernier rapport. Affichage de votre rapport le plus récent.\"],\"2WNFmv\":[\"Un problème est survenu lors de la génération de votre rapport.\"],\"a75OAp\":[\"Une erreur est survenue lors de la génération de votre rapport. Vous pouvez réessayer ci-dessous.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"JOKTb4\":[\"Une erreur s'est produite lors de l'envoi du fichier : \",[\"0\"]],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Espagnol\"],\"zuoIYL\":[\"Orateur\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"vf1Tc/\":[\"Specific Details nécessite au moins une conversation.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Démarrer l'enregistrement\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Succès\"],\"aG+cH9\":[\"Suggérer des suggestions dynamiques basées sur votre conversation.\"],\"aZJj7n\":[\"Suggestions de prompts basées sur vos conversations\"],\"FyUg+Y\":[\"Suggestions de prompts basées sur vos conversations. Essayez d'envoyer un message pour voir.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"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\"],\"4ZpfGe\":[\"Résume les principaux enseignements de mes entretiens\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"g6o+7L\":[\"Résumé généré.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Résumé non disponible pour le moment\"],\"OUi+O3\":[\"Résumé régénéré.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"Système\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Étiquettes\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Contenu du prompt...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Modèles\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"Le signalement de problème intégré n'a pas pu être chargé. Vous pouvez toujours nous informer de ce qui s'est passé via notre portail de commentaires. Cela nous aide à résoudre les problèmes plus rapidement que de ne pas soumettre de rapport.\"],\"gtMB2A\":[\"Le signalement de problème intégré n'a pas pu être chargé. Vous pouvez toujours nous informer de ce qui s'est passé via notre portail de commentaires. Cela nous aide à résoudre les problèmes plus rapidement que de ne pas soumettre de rapport.\"],\"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.\"],\"nO942E\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"mK5NUZ\":[\"L'endpoint où nous enverrons les données. Obtenez cela de votre service de réception (par exemple, Zapier, Make, ou votre propre serveur).\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"Le signalement de problème n'a pas pu être chargé. Veuillez utiliser le portail de commentaires pour nous informer de ce qui s'est passé. Cela nous aide à résoudre les problèmes plus rapidement que de ne pas soumettre de rapport.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"Le Portail est le site web qui s'ouvre lorsque les participants scan le code QR.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"la bibliothèque du projet.\"],\"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.\"],\"iV8+33\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à ce que le nouveau résumé soit disponible.\"],\"AgC2rn\":[\"Le résumé est en cours de régénération. Veuillez patienter jusqu'à 2 minutes pour que le nouveau résumé soit disponible.\"],\"PTNxDe\":[\"La transcription de cette conversation est en cours de traitement. Veuillez vérifier plus tard.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"Il y avait une erreur lors de la génération de votre rapport. En attendant, vous pouvez analyser tous vos données à l'aide de la bibliothèque ou sélectionner des conversations spécifiques pour discuter.\"],\"7qENSx\":[\"Il y avait une erreur lors de la mise à jour de votre rapport. Veuillez réessayer ou contacter le support.\"],\"V7zEnY\":[\"Il y avait une erreur lors de la vérification de votre e-mail. Veuillez réessayer.\"],\"gtlVJt\":[\"Voici quelques modèles prédéfinis pour vous aider à démarrer.\"],\"sd848K\":[\"Voici vos modèles de vue par défaut. Une fois que vous avez créé votre bibliothèque, ces deux vues seront vos premières.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"dt1MDy\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu.\"],\"5ZpZXq\":[\"Cette conversation est encore en cours de traitement. Elle sera disponible pour l'analyse et le chat sous peu. \"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"JtPxD5\":[\"Cette e-mail est déjà abonnée aux notifications.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"Ces informations sont anonymisées\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"Bibliothèque\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"Cette est votre bibliothèque de projet. Actuellement,\",[\"0\"],\" conversations sont en attente d'être traitées.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription.\"],\"BAUPL8\":[\"Cette langue sera utilisée pour le Portail du participant et la transcription. Pour changer la langue de cette application, veuillez utiliser le sélecteur de langue dans les paramètres en haut à droite.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"Cette bibliothèque de projet a été générée le\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"Ce résumé est généré par l'IA et succinct, pour une analyse approfondie, utilisez le Chat ou la Bibliothèque.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"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\"],\"n4l4/n\":[\"Cela remplacera les informations personnelles identifiables avec .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Heure\"],\"Ww6cQ8\":[\"Date de création\"],\"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.\"],\"5h7Z+m\":[\"Pour assigner une nouvelle étiquette, veuillez la créer d'abord dans l'aperçu du projet.\"],\"o3rowT\":[\"Pour générer un rapport, veuillez commencer par ajouter des conversations dans votre projet\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcription en cours...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcription\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcription non disponible\"],\"N/50DC\":[\"Paramètres de transcription\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription en cours...\"],\"0l9syB\":[\"Transcription en cours…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transformez ces transcriptions en une publication LinkedIn qui coupe le bruit. Veuillez :\\n\\nExtrayez les insights les plus captivants - sautez tout ce qui ressemble à des conseils commerciaux standard\\nÉcrivez-le comme un leader expérimenté qui défie les idées conventionnelles, pas un poster motivant\\nTrouvez une observation vraiment inattendue qui ferait même des professionnels expérimentés se poser\\nRestez profond et direct tout en étant rafraîchissant\\nUtilisez des points de données qui réellement contredisent les hypothèses\\nGardez le formatage propre et professionnel (peu d'emojis, espace pensée)\\nFaites un ton qui suggère à la fois une expertise profonde et une expérience pratique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"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\"],\"qJb6G2\":[\"Réessayer\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Tapez un message...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainien\"],\"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\"],\"8vqTzl\":[\"Impossible de charger l'artefact généré. Veuillez réessayer.\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Raison inconnue\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"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)\"],\"dFIzZ6\":[\"Détacher de la barre de chat\"],\"dx+iaL\":[\"Désépingler le projet\"],\"KyKziT\":[\"Retirer de la communauté\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"annonce non lue\"],\"0pinHa\":[\"annonces non lues\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Mettre à jour le rapport\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Mettre à jour le rapport pour inclure les données les plus récentes\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Mettre à jour votre rapport pour inclure les dernières modifications de votre projet. Le lien pour partager le rapport restera le même.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Mis à jour\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Mettre à niveau\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Mettre à niveau pour débloquer la sélection automatique et analyser 10 fois plus de conversations en moitié du temps — plus de sélection manuelle, juste des insights plus profonds instantanément.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Télécharger l'audio\"],\"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\"],\"Wft2yh\":[\"Téléchargement en cours\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Télécharger des ressources\"],\"3wG7HI\":[\"Téléchargé\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Utiliser\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Utiliser les fonctionnalités expérimentales\"],\"rmMdgZ\":[\"Utiliser la rédaction PII\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Sujets de vérification\"],\"c242dc\":[\"vérifié\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vue\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"Voir les détails de la conversation\"],\"H1e6Hv\":[\"Voir le statut de la conversation\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"Voir les annonces lues\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"Voir vos réponses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"vues\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Attendez \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"En attente de la fin des conversations avant de générer un rapport.\"],\"tCfopB\":[\"Vous souhaitez des structures de rapport personnalisées ?\"],\"VKMCO0\":[\"Tu veux ajouter un template à « dembrane » ?\"],\"bO5RNo\":[\"Voulez-vous ajouter un modèle à ECHO?\"],\"v8z9fL\":[\"Vous souhaitez personnaliser l'apparence de votre rapport ?\"],\"r6y+jM\":[\"Attention\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"Nous n'avons pas pu charger l'audio. Veuillez réessayer plus tard.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam.\"],\"9qYWL7\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter evelien@dembrane.com\"],\"3fS27S\":[\"Nous vous avons envoyé un e-mail avec les étapes suivantes. Si vous ne le voyez pas, vérifiez votre dossier de spam. Si vous ne le voyez toujours pas, veuillez contacter jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"tQtKw5\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"2ZUkkL\":[\"Nous concevons cette fonctionnalité et aimerions avoir votre avis.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Bienvenue sur dembrane Chat ! Utilisez la barre latérale pour sélectionner les ressources et les conversations que vous souhaitez analyser. Ensuite, vous pouvez poser des questions sur les ressources et les conversations sélectionnées.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Bienvenue sur dembrane!\"],\"TACmoL\":[\"Bienvenue dans le mode Overview ! J’ai les résumés de toutes tes conversations. Pose-moi des questions sur les patterns, les thèmes et les insights dans tes données. Pour des citations exactes, démarre un nouveau chat en mode Deep Dive.\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"Bck6Du\":[\"Bienvenue dans les rapports !\"],\"aEpQkt\":[\"Bienvenue sur votre Accueil! Ici, vous pouvez voir tous vos projets et accéder aux ressources de tutoriel. Actuellement, vous n'avez aucun projet. Cliquez sur \\\"Créer\\\" pour configurer pour commencer !\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Bienvenue !\"],\"Tfxjl5\":[\"Quels sont les principaux thèmes de toutes les conversations ?\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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 ?\"],\"fyMvis\":[\"Quelles tendances se dégagent des données ?\"],\"pVIWuw\":[\"Que doit ECHO analyser ou générer à partir des conversations ?\"],\"ZsEVar\":[\"Sur quoi ce rapport doit-il se concentrer ?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"Ul3erb\":[\"What you can reach\"],\"3ePd3I\":[\"Qu'est-ce qui est nouveau ?\"],\"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.\"],\"LEYli4\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"Vous pouvez toujours utiliser la fonction dembrane Ask pour discuter avec n'importe quelle conversation\"],\"ORA5nz\":[\"Vous pouvez réessayer ci-dessous.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Votre conversation est en cours de transcription. Veuillez vérifier plus tard.\"],\"OFDbfd\":[\"Vos conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Votre bibliothèque est vide. Créez une bibliothèque pour voir vos premières perspectives.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Votre nom\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"wurHZF\":[\"Vos réponses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lZNgiw\":[\"Vos vues\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Le vôtre\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"ACjxWW\":[\"Zoom\"],\"participant.modal.interruption.description\":[\"Ne vous inquiétez pas, nous avons enregistré tout ce que vous avez enregistré jusqu'à présent. Vous pouvez terminer la conversation ou commencer une nouvelle conversation.\"],\"participant.button.interruption.finish\":[\"Terminer\"],\"participant.button.interruption.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"IDeRjd\":[\"At least one topic must be selected to enable Verify\"],\"2wg92j\":[\"Conversations\"],\"hWszgU\":[\"La source a été supprimée\"],\"GSV2Xq\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"7qaVXm\":[\"Experimental\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Select which topics participants can use for verification.\"],\"GSQ8We\":[\"Activer Echo\"],\"GpCBCW\":[\"Activer ECHO\"],\"IHqkFL\":[\"Activer la réponse\"],\"7DwYDY\":[\"Activer Verify\"],\"qwmGiT\":[\"Contactez votre représentant commercial\"],\"ZWDkP4\":[\"Actuellement, \",[\"finishedConversationsCount\"],\" conversations sont prêtes à être analysées. \",[\"unfinishedConversationsCount\"],\" sont encore en cours de traitement.\"],\"/NTvqV\":[\"Bibliothèque non disponible\"],\"p18xrj\":[\"Bibliothèque régénérée\"],\"hOtk0x\":[\"Echo\"],\"JsSzzl\":[\"ECHO\"],\"SUkFIX\":[\"Pause\"],\"ilKuQo\":[\"Reprendre\"],\"SqNXSx\":[\"Non\"],\"yfZBOp\":[\"Oui\"],\"cic45J\":[\"Nous ne pouvons pas traiter cette requête en raison de la politique de contenu du fournisseur de LLM.\"],\"CvZqsN\":[\"Une erreur s'est produite. Veuillez réessayer en appuyant sur le bouton <0>ECHO, ou contacter le support si le problème persiste.\"],\"P+lUAg\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"hh87/E\":[\"\\\"Va plus profond\\\" Bientôt disponible\"],\"RMxlMe\":[\"\\\"Rends-le concret\\\" Bientôt disponible\"],\"7UJhVX\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"RDsML8\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"IaLTNH\":[\"Approve\"],\"+f3bIA\":[\"Cancel\"],\"qgx4CA\":[\"Revise\"],\"E+5M6v\":[\"Save\"],\"Q82shL\":[\"Go back\"],\"yOp5Yb\":[\"Reload Page\"],\"tw+Fbo\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"oTCD07\":[\"Unable to Load Artefact\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Your approval helps us understand what you really think!\"],\"M5oorh\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"RZXkY+\":[\"Annuler\"],\"86aTqL\":[\"Next\"],\"pdifRH\":[\"Loading\"],\"Ep029+\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"fKeatI\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"8b+uSr\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"iodqGS\":[\"Loading artefact\"],\"NpZmZm\":[\"This will just take a moment\"],\"wklhqE\":[\"Regenerating the artefact\"],\"LYTXJp\":[\"This will just take a few moments\"],\"CjjC6j\":[\"Next\"],\"q885Ym\":[\"What do you want to verify?\"],\"AWBvkb\":[\"Fin de la liste • Toutes les \",[\"0\"],\" conversations chargées\"],\"llwJyZ\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/it-IT.po b/echo/frontend/src/locales/it-IT.po index 4b92f5890..7b7144520 100644 --- a/echo/frontend/src/locales/it-IT.po +++ b/echo/frontend/src/locales/it-IT.po @@ -925,11 +925,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:191 +#: src/components/chat/AgenticChatPanel.tsx:193 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:190 +#: src/components/chat/AgenticChatPanel.tsx:192 msgid "{name}'s transcript excerpt" msgstr "" @@ -1256,6 +1256,10 @@ msgstr "" msgid "A friendly name to identify this webhook" msgstr "A friendly name to identify this webhook" +#: src/components/project/ProjectExperimentalSection.tsx:52 +msgid "A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed." +msgstr "" + #: src/routes/project/report/ProjectReportRoute.tsx:564 msgid "A new report will be automatically generated and published at the scheduled time." msgstr "A new report will be automatically generated and published at the scheduled time." @@ -1353,7 +1357,7 @@ msgstr "" #: src/routes/workspaces/CreateWorkspaceRoute.tsx:702 #: src/routes/project/CreateProjectRoute.tsx:256 #: src/routes/project/CreateProjectRoute.tsx:345 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:117 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:120 #: src/components/project/ProjectUsageAndSharing.tsx:190 #: src/components/layout/ProjectOverviewLayout.tsx:52 msgid "Access" @@ -1493,6 +1497,7 @@ msgstr "Active filters" #: src/routes/organisation/OrganisationRoute.tsx:2054 #: src/routes/organisation/OrganisationRoute.tsx:2077 #: src/components/project/ProjectSharingModal.tsx:252 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:191 #: src/components/billing/BillingManager.tsx:1461 msgid "Add" msgstr "Add" @@ -1653,6 +1658,7 @@ msgstr "Add Your First Webhook" #~ msgstr "Add your own" #: src/components/project/ProjectSharingModal.tsx:68 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:145 msgid "Added" msgstr "" @@ -1829,8 +1835,8 @@ msgstr "Advanced Settings" #~ msgid "Agent is working..." #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:287 -#: src/components/chat/AgenticChatPanel.tsx:314 +#: src/components/chat/AgenticChatPanel.tsx:289 +#: src/components/chat/AgenticChatPanel.tsx:316 msgid "Agent run failed" msgstr "" @@ -2157,6 +2163,7 @@ msgstr "" #: src/components/view/CreateViewForm.tsx:153 #: src/components/goal/GoalSuggestionCard.tsx:122 #: src/components/common/ImageCropModal.tsx:148 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:223 #: src/components/chat/CanvasSuggestionCard.tsx:361 msgid "Apply" msgstr "Apply" @@ -2335,7 +2342,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1481 +#: src/components/chat/AgenticChatPanel.tsx:1494 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 "" @@ -2355,7 +2362,7 @@ msgstr "" msgid "Ask about your conversations, or type to find an earlier chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1739 +#: src/components/chat/AgenticChatPanel.tsx:1766 msgid "Ask about your conversations..." msgstr "" @@ -2685,6 +2692,7 @@ msgstr "Basic Settings" #: src/components/report/CreateReportForm.tsx:235 #: src/components/project/ProjectPortalEditor.tsx:1483 #: src/components/project/ProjectPortalEditor.tsx:1564 +#: src/components/project/ProjectExperimentalSection.tsx:48 #: src/components/conversation/RetranscribeConversation.tsx:151 #: src/components/chat/ChatModeSelector.tsx:158 #: src/components/chat/ChatModeBanner.tsx:45 @@ -2937,7 +2945,7 @@ msgstr "" #: src/components/common/ImageCropModal.tsx:145 #: src/components/common/FeedbackPortalModal.tsx:124 #: src/components/common/ConfirmModal.tsx:44 -#: src/components/chat/AgenticChatPanel.tsx:1708 +#: src/components/chat/AgenticChatPanel.tsx:1735 msgid "Cancel" msgstr "Cancel" @@ -2970,7 +2978,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1696 +#: src/components/chat/AgenticChatPanel.tsx:1723 msgid "Cancel current run" msgstr "" @@ -3172,7 +3180,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:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Chat" msgstr "Chat" @@ -3238,7 +3246,7 @@ msgstr "" msgid "Checked {checkedAgo}. Nothing new since your last conversation. Updated {updatedAgo}." msgstr "" -#: src/components/chat/agenticToolActivity.ts:123 +#: src/components/chat/agenticToolActivity.ts:125 msgid "Checking live conversations" msgstr "" @@ -3653,7 +3661,7 @@ msgstr "Conversation tags" msgid "conversations" msgstr "conversations" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:111 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:114 #: src/components/workspace/OrganisationProjectsTable.tsx:219 #: src/components/project/ProjectUsageAndSharing.tsx:453 #: src/components/conversation/ProjectConversationsPanel.tsx:725 @@ -3772,6 +3780,10 @@ msgstr "Copy to Clipboard" msgid "Copying..." msgstr "Copying..." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:102 +msgid "Could not apply all the tag changes." +msgstr "" + #: src/components/chat/ProjectUpdateSuggestionCard.tsx:182 msgid "Could not apply the changes. Nothing was saved." msgstr "" @@ -3858,7 +3870,7 @@ msgstr "" msgid "Could not save tags" msgstr "" -#: src/components/project/hooks/index.ts:450 +#: src/components/project/hooks/index.ts:460 msgid "Could not save the host guide" msgstr "" @@ -4638,6 +4650,7 @@ msgid "Dismiss" msgstr "" #: src/components/goal/GoalSuggestionCard.tsx:86 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:173 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:249 #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:113 #: src/components/chat/CanvasSuggestionCard.tsx:256 @@ -4698,7 +4711,7 @@ msgstr "" #: src/routes/onboarding/OnboardingRoute.tsx:525 #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 -#: src/components/chat/AgenticChatPanel.tsx:333 +#: src/components/chat/AgenticChatPanel.tsx:335 msgid "Done" msgstr "" @@ -4848,6 +4861,10 @@ msgstr "" #~ msgid "Earlier" #~ msgstr "Earlier" +#: src/components/project/ProjectExperimentalSection.tsx:25 +msgid "Early features you can try on this project before they are ready for everyone." +msgstr "" + #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:1065 msgid "participant.button.echo" @@ -5179,7 +5196,7 @@ msgstr "Enter the 6-digit code from your authenticator app." msgid "Enter the current six-digit code from your authenticator app." msgstr "Enter the current six-digit code from your authenticator app." -#: src/components/chat/AgenticChatPanel.tsx:1756 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Enter to send, Shift+Enter for a new line" msgstr "" @@ -5212,8 +5229,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:371 -#: src/components/chat/AgenticChatPanel.tsx:338 -#: src/components/chat/AgenticChatPanel.tsx:1427 +#: src/components/chat/AgenticChatPanel.tsx:340 +#: src/components/chat/AgenticChatPanel.tsx:1440 msgid "Error" msgstr "Error" @@ -5234,10 +5251,10 @@ msgstr "Error creating report" #~ msgid "Error loading insights" #~ msgstr "Error loading insights" -#: src/routes/project/ProjectRoutes.tsx:81 -#: src/routes/project/ProjectRoutes.tsx:168 -#: src/routes/project/ProjectRoutes.tsx:270 -#: src/routes/project/ProjectRoutes.tsx:309 +#: src/routes/project/ProjectRoutes.tsx:83 +#: src/routes/project/ProjectRoutes.tsx:177 +#: src/routes/project/ProjectRoutes.tsx:279 +#: src/routes/project/ProjectRoutes.tsx:318 msgid "Error loading project" msgstr "Error loading project" @@ -5377,10 +5394,9 @@ msgstr "Exit fullscreen" msgid "Expand workspaces" msgstr "" -#: src/components/report/UpdateReportModalButton.tsx:191 -#: src/components/report/CreateReportForm.tsx:198 -#~ msgid "Experimental" -#~ msgstr "Experimental" +#: src/components/project/ProjectExperimentalSection.tsx:23 +msgid "Experimental" +msgstr "Experimental" #: src/components/billing/BillingManager.tsx:182 msgid "Expired" @@ -5511,7 +5527,7 @@ msgstr "Failed to copy chat. Please try again." msgid "Failed to copy transcript. Please try again." msgstr "Failed to copy transcript. Please try again." -#: src/components/project/hooks/index.ts:583 +#: src/components/project/hooks/index.ts:593 msgid "Failed to create custom topic" msgstr "Failed to create custom topic" @@ -5523,7 +5539,7 @@ msgstr "" msgid "Failed to delete chat" msgstr "" -#: src/components/project/hooks/index.ts:635 +#: src/components/project/hooks/index.ts:645 msgid "Failed to delete custom topic" msgstr "Failed to delete custom topic" @@ -5535,7 +5551,7 @@ msgstr "" msgid "Failed to delete response" msgstr "Failed to delete response" -#: src/components/project/hooks/index.ts:331 +#: src/components/project/hooks/index.ts:341 msgid "Failed to delete tag" msgstr "" @@ -5672,15 +5688,15 @@ 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:1299 +#: src/components/chat/AgenticChatPanel.tsx:1312 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1258 +#: src/components/chat/AgenticChatPanel.tsx:1271 msgid "Failed to submit agentic message" msgstr "" -#: src/components/project/hooks/index.ts:610 +#: src/components/project/hooks/index.ts:620 msgid "Failed to update custom topic" msgstr "Failed to update custom topic" @@ -5950,7 +5966,7 @@ msgstr "" #~ msgid "Forecast: ~{0}" #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:157 +#: src/components/chat/agenticToolActivity.ts:160 msgid "Forgetting a saved memory" msgstr "" @@ -6393,7 +6409,7 @@ msgstr "" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Hide steps" msgstr "" @@ -6418,7 +6434,7 @@ msgid "host guide" msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:167 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:101 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:104 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:53 msgid "Host guide" msgstr "" @@ -6482,11 +6498,11 @@ msgstr "" #~ msgid "I accept the <0>terms" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1567 +#: src/components/chat/AgenticChatPanel.tsx:1594 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1583 +#: src/components/chat/AgenticChatPanel.tsx:1610 msgid "I applied the goal." msgstr "" @@ -6574,7 +6590,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1505 +#: src/components/chat/AgenticChatPanel.tsx:1518 msgid "Improve my setup" msgstr "" @@ -7299,7 +7315,7 @@ msgstr "" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 #: src/routes/project/library/LibraryRoute.tsx:132 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:94 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:97 msgid "Library" msgstr "Library" @@ -7358,7 +7374,7 @@ msgstr "Link to your organisation's privacy policy that will be shown to partici #~ msgid "LinkedIn Post (Experimental)" #~ msgstr "LinkedIn Post (Experimental)" -#: src/components/chat/AgenticChatPanel.tsx:1495 +#: src/components/chat/AgenticChatPanel.tsx:1508 msgid "List my conversations" msgstr "" @@ -7366,15 +7382,15 @@ msgstr "" #~ msgid "List project conversations" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1496 +#: src/components/chat/AgenticChatPanel.tsx:1509 msgid "List the conversations in this project." msgstr "" -#: src/components/chat/agenticToolActivity.ts:121 +#: src/components/chat/agenticToolActivity.ts:123 msgid "Listing conversations" msgstr "" -#: src/components/chat/agenticToolActivity.ts:117 +#: src/components/chat/agenticToolActivity.ts:119 msgid "Listing documentation pages" msgstr "" @@ -7427,10 +7443,14 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:986 +#: src/components/chat/AgenticChatPanel.tsx:999 msgid "Live stream interrupted. Falling back to polling." msgstr "" +#: src/components/project/ProjectExperimentalSection.tsx:45 +msgid "Living canvas" +msgstr "" + #: src/components/chat/agenticToolActivity.ts:120 #~ msgid "Load conversation summary" #~ msgstr "" @@ -7506,7 +7526,7 @@ msgstr "" #~ msgid "Loading projects…" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1438 +#: src/components/chat/AgenticChatPanel.tsx:1451 msgid "Loading this chat..." msgstr "" @@ -7576,7 +7596,7 @@ msgstr "" msgid "Log out and use the invited email" msgstr "" -#: src/components/chat/agenticToolActivity.ts:160 +#: src/components/chat/agenticToolActivity.ts:163 msgid "Logging this with the dembrane team" msgstr "" @@ -8756,6 +8776,7 @@ msgid "Not available" msgstr "Not available" #: src/routes/invite/AcceptInviteRoute.tsx:568 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:214 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:353 msgid "Not now" msgstr "" @@ -8839,7 +8860,7 @@ msgstr "" msgid "Notify participants when a report is published." msgstr "Notify participants when a report is published." -#: src/components/chat/agenticToolActivity.ts:149 +#: src/components/chat/agenticToolActivity.ts:152 msgid "Noting this for the dembrane team" msgstr "" @@ -9174,7 +9195,7 @@ msgstr "" msgid "Open the chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1414 +#: src/components/chat/AgenticChatPanel.tsx:1427 msgid "Open the old chat experience" msgstr "" @@ -10132,7 +10153,7 @@ msgstr "" #~ msgid "Preferences" #~ msgstr "Preferences" -#: src/components/chat/agenticToolActivity.ts:107 +#: src/components/chat/agenticToolActivity.ts:109 msgid "Preparing a navigation shortcut" msgstr "" @@ -10596,7 +10617,7 @@ msgstr "" #~ msgstr "Quotes" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:510 +#: src/components/chat/AgenticChatPanel.tsx:514 msgid "Ran {0} steps at once" msgstr "" @@ -10642,36 +10663,36 @@ msgid "Read-only" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:133 +#: src/components/chat/agenticToolActivity.ts:135 msgid "Reading {0}'s summary" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:138 +#: src/components/chat/agenticToolActivity.ts:140 msgid "Reading {0}'s transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:134 +#: src/components/chat/agenticToolActivity.ts:136 msgid "Reading a conversation summary" msgstr "" -#: src/components/chat/agenticToolActivity.ts:115 +#: src/components/chat/agenticToolActivity.ts:117 msgid "Reading a skill" msgstr "" -#: src/components/chat/agenticToolActivity.ts:139 +#: src/components/chat/agenticToolActivity.ts:141 msgid "Reading a transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:119 +#: src/components/chat/agenticToolActivity.ts:121 msgid "Reading project context" msgstr "" -#: src/components/chat/agenticToolActivity.ts:109 +#: src/components/chat/agenticToolActivity.ts:111 msgid "Reading project settings" msgstr "" -#: src/components/chat/agenticToolActivity.ts:113 +#: src/components/chat/agenticToolActivity.ts:115 msgid "Reading the documentation" msgstr "" @@ -10931,6 +10952,7 @@ msgstr "" #: src/components/organisation/InviteEmailList.tsx:58 #: src/components/memory/MemoryList.tsx:98 #: src/components/memory/MemoryList.tsx:118 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:199 msgid "Remove" msgstr "Remove" @@ -11014,6 +11036,10 @@ msgstr "" msgid "Remove this memory?" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:153 +msgid "Removed" +msgstr "" + #: src/routes/organisation/OrganisationRoute.tsx:522 msgid "Removed from organisation" msgstr "" @@ -11032,7 +11058,7 @@ msgstr "Rename" #~ msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:158 -#: src/components/chat/AgenticChatPanel.tsx:1370 +#: src/components/chat/AgenticChatPanel.tsx:1383 msgid "Rename chat" msgstr "Rename chat" @@ -11075,7 +11101,7 @@ msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:175 #: src/routes/project/report/ProjectReportRoute.tsx:185 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:106 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:109 #: src/components/report/ReportRenderer.tsx:75 #: src/components/report/ReportModalNavigationButton.tsx:92 msgid "Report" @@ -11381,7 +11407,7 @@ msgstr "" msgid "retracted for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:153 +#: src/components/chat/agenticToolActivity.ts:156 msgid "Retracting a note for the dembrane team" msgstr "" @@ -11460,7 +11486,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1506 +#: src/components/chat/AgenticChatPanel.tsx:1519 msgid "Review my project settings and suggest improvements." msgstr "" @@ -11540,7 +11566,7 @@ msgstr "Rows per page" #~ msgid "Run status:" #~ msgstr "Run status:" -#: src/components/chat/AgenticChatPanel.tsx:343 +#: src/components/chat/AgenticChatPanel.tsx:345 msgid "Running" msgstr "" @@ -11819,16 +11845,16 @@ msgstr "" msgid "Searched through the most relevant sources" msgstr "Searched through the most relevant sources" -#: src/components/chat/agenticToolActivity.ts:129 +#: src/components/chat/agenticToolActivity.ts:131 msgid "Searching conversations" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:128 +#: src/components/chat/agenticToolActivity.ts:130 msgid "Searching conversations for \"{0}\"" msgstr "" -#: src/components/chat/agenticToolActivity.ts:111 +#: src/components/chat/agenticToolActivity.ts:113 msgid "Searching the documentation" msgstr "" @@ -11836,12 +11862,12 @@ msgstr "" #~ msgid "Searching through the most relevant sources" #~ msgstr "Searching through the most relevant sources" -#: src/components/chat/agenticToolActivity.ts:144 +#: src/components/chat/agenticToolActivity.ts:146 msgid "Searching transcripts" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:143 +#: src/components/chat/agenticToolActivity.ts:145 msgid "Searching transcripts for \"{0}\"" msgstr "" @@ -12062,7 +12088,7 @@ msgid "Self-serve" msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:1024 -#: src/components/chat/AgenticChatPanel.tsx:1776 +#: src/components/chat/AgenticChatPanel.tsx:1803 msgid "Send" msgstr "Send" @@ -12204,7 +12230,7 @@ msgstr "" #: src/features/sidebar/views/workspace/WorkspaceHomeView.tsx:80 #: src/features/sidebar/views/user/UserSettingsView.tsx:34 #: src/features/sidebar/views/project/ProjectSettingsView.tsx:18 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:129 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:132 #: src/features/sidebar/views/org/OrgSettingsView.tsx:26 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 @@ -12411,7 +12437,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Show steps" msgstr "" @@ -12861,6 +12887,10 @@ msgstr "" msgid "Suggested project goal" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:169 +msgid "Suggested tag changes for your project" +msgstr "" + #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:109 msgid "Suggested verification prompt" msgstr "" @@ -12870,15 +12900,15 @@ msgstr "" msgid "Suggested:" msgstr "Suggested:" -#: src/components/chat/agenticToolActivity.ts:103 +#: src/components/chat/agenticToolActivity.ts:105 msgid "Suggesting a canvas" msgstr "" -#: src/components/chat/agenticToolActivity.ts:105 +#: src/components/chat/agenticToolActivity.ts:107 msgid "Suggesting a project goal" msgstr "" -#: src/components/chat/agenticToolActivity.ts:101 +#: src/components/chat/agenticToolActivity.ts:103 msgid "Suggesting a verification prompt" msgstr "" @@ -12886,6 +12916,10 @@ msgstr "" msgid "Suggesting project changes" msgstr "" +#: src/components/chat/agenticToolActivity.ts:101 +msgid "Suggesting tag changes" +msgstr "" + #: src/components/chat/templates.ts:26 msgid "Summarize" msgstr "Summarize" @@ -12991,7 +13025,7 @@ msgstr "System" msgid "System status" msgstr "" -#: src/components/project/hooks/index.ts:328 +#: src/components/project/hooks/index.ts:338 msgid "Tag deleted" msgstr "" @@ -13009,6 +13043,14 @@ msgstr "Tags" #~ msgid "Tags (max 3)" #~ msgstr "Tags (max 3)" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:180 +msgid "Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply." +msgstr "" + +#: src/components/chat/TagsUpdateSuggestionCard.tsx:99 +msgid "Tags updated. You can fine-tune them anytime in the portal editor." +msgstr "" + #: src/routes/invite/AcceptInviteRoute.tsx:483 #: src/routes/invite/AcceptInviteRoute.tsx:523 msgid "Take me to {resolvedWorkspaceName}" @@ -13394,6 +13436,10 @@ msgstr "These default view templates will be generated when you create your firs msgid "These settings are read-only. Only organisation administrators can modify project defaults." msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:132 +msgid "These tag changes are applied to your project." +msgstr "" + #: src/components/invite/InviteModal.tsx:654 msgid "These workspaces are billed separately. Each person you add takes a seat in {billingContextCount} billing contexts, each invoiced on its own." msgstr "" @@ -13533,7 +13579,7 @@ msgstr "This is an example of the JSON data sent to your webhook URL when a conv msgid "This is not saved yet." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1402 +#: src/components/chat/AgenticChatPanel.tsx:1415 msgid "This is the new chat experience" msgstr "" @@ -13893,11 +13939,11 @@ msgstr "Too long" msgid "Tool" msgstr "" -#: src/components/project/hooks/index.ts:591 +#: src/components/project/hooks/index.ts:601 msgid "Topic created successfully" msgstr "Topic created successfully" -#: src/components/project/hooks/index.ts:643 +#: src/components/project/hooks/index.ts:653 msgid "Topic deleted successfully" msgstr "Topic deleted successfully" @@ -13905,7 +13951,7 @@ msgstr "Topic deleted successfully" msgid "Topic label" msgstr "Topic label" -#: src/components/project/hooks/index.ts:618 +#: src/components/project/hooks/index.ts:628 msgid "Topic updated successfully" msgstr "Topic updated successfully" @@ -13990,7 +14036,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:194 +#: src/components/chat/AgenticChatPanel.tsx:196 msgid "transcript" msgstr "" @@ -14006,7 +14052,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:193 +#: src/components/chat/AgenticChatPanel.tsx:195 msgid "transcript excerpt" msgstr "" @@ -14479,15 +14525,15 @@ msgstr "" #~ msgid "Updates every few minutes." #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:151 +#: src/components/chat/agenticToolActivity.ts:154 msgid "Updating a note for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:155 +#: src/components/chat/agenticToolActivity.ts:158 msgid "Updating a saved memory" msgstr "" -#: src/components/chat/agenticToolActivity.ts:146 +#: src/components/chat/agenticToolActivity.ts:149 msgid "Updating project tags" msgstr "" @@ -14667,7 +14713,7 @@ msgstr "URL is required" msgid "URL must start with http:// or https://" msgstr "URL must start with http:// or https://" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:122 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:125 #: src/features/sidebar/views/org/OrgSettingsView.tsx:37 #: src/components/project/ProjectUsageAndSharing.tsx:415 #: src/components/layout/ProjectOverviewLayout.tsx:53 @@ -15210,7 +15256,7 @@ msgstr "Webhooks" msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." -#: src/routes/project/ProjectRoutes.tsx:182 +#: src/routes/project/ProjectRoutes.tsx:191 msgid "Webhooks are not enabled for this environment." msgstr "" @@ -15319,11 +15365,11 @@ msgstr "What should ECHO analyse or generate from the conversations?" #~ msgid "What should this report focus on?" #~ msgstr "What should this report focus on?" -#: src/components/chat/AgenticChatPanel.tsx:1501 +#: src/components/chat/AgenticChatPanel.tsx:1514 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1500 +#: src/components/chat/AgenticChatPanel.tsx:1513 msgid "What themes came up?" msgstr "" @@ -15409,7 +15455,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:358 -#: src/components/chat/AgenticChatPanel.tsx:1478 +#: src/components/chat/AgenticChatPanel.tsx:1491 msgid "Where would you like to start?" msgstr "" @@ -15476,15 +15522,15 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:511 +#: src/components/chat/AgenticChatPanel.tsx:515 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1332 +#: src/components/chat/AgenticChatPanel.tsx:1345 msgid "Working on your answer..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:506 +#: src/components/chat/AgenticChatPanel.tsx:510 msgid "Working..." msgstr "" diff --git a/echo/frontend/src/locales/it-IT.ts b/echo/frontend/src/locales/it-IT.ts index 81eacc1f3..a432098e9 100644 --- a/echo/frontend/src/locales/it-IT.ts +++ b/echo/frontend/src/locales/it-IT.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"uSTZVH\":[[\"conversationTotal\"],\" included\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 included\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ members have joined\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Add to favorites\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"MIWKYQ\":[\"Add to quick access\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Add Your First Webhook\"],\"DtI2tD\":[\"Add your own\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"VHg3DX\":[\"Agentic Chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"All templates\"],\"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?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"zqhMd0\":[\"C'è stato un errore imprevisto. Di solito basta ricaricare la pagina o tornare alla home.\"],\"QX6zrA\":[\"Analysis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymous host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Appearance\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Apply\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"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?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"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.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistant is typing...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio Tip\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Book a call to share your feedback\"],\"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.\"],\"CzeGfZ\":[\"Browse and share templates with other hosts\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Built-in\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citing the following sources\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Coming soon — share your input\"],\"bJHBId\":[\"Common use cases:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community templates\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concrete Topics\"],\"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\"],\"p2/GCq\":[\"Confirm Password\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contact sales\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"Np+C87\":[\"Conversations:\"],\"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\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"RGCCrg\":[\"Copy share link\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Create an Account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"uVzvzz\":[\"Create now instead\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"s7XwOU\":[\"Create Template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Created \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"custom\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Customize how your report is structured. This feature is coming soon.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Delete Custom Topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"MlrelG\":[\"Delete Report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane is powered by AI. Please double-check responses.\"],\"QMogcD\":[\"Reply\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe how this template is useful...\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determines under which GDPR legal basis personal data is processed. This affects consent flows, data subject rights, and retention obligations.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Display contextual suggestion pills in the chat\"],\"pfa8F0\":[\"Display name\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"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\"],\"5154Ap\":[\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"e.g. tomorrow at 9:00\"],\"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.\"],\"5oD9f/\":[\"Earlier\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"edit\"],\"ePK91l\":[\"Edit\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"gGx5tM\":[\"Editing\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Email Verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Email Verification | dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"VpwcSk\":[\"Enter new password\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"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\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"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\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"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.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Failed to start new conversation. 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\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"First Name\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus your report (optional)\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"from \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"oADIO6\":[\"Generate a new report. Previous reports will remain accessible.\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Go to feedback portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Grid view\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guidato\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help us translate\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"JsWQuM\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations. You can optionally focus the report on a specific topic.\"],\"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.\"],\"Lj7sBL\":[\"Italian\"],\"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.\"],\"GaQMyV\":[\"Join \",[\"0\"],\" on dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Join the 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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Language\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Let us know!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"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\"],\"yUQgLY\":[\"Library is currently being processed\"],\"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\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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.\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"WXSxpf\":[\"Logo updated successfully\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mine\"],\"b85Pfh\":[\"Minimum 8 characters\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"zMx0gF\":[\"More templates\"],\"y1ypMV\":[\"Most popular\"],\"7BgchI\":[\"Most used\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Deve essere almeno 10 minuti nel futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"New conversations available — update your 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.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"3RC8Um\":[\"New conversations have been added since your last report. Generate an updated report to include them. Your previous report will remain accessible.\"],\"QgiaQ8\":[\"New date and time\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"New Project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Newest\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No announcements available\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No collections found\"],\"S8FeaY\":[\"No community templates yet. Share yours to get started.\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"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.\"],\"meAa31\":[\"No conversations yet\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Ancora nessuna conversazione. Puoi programmare un report ora. Le aggiungiamo quando arrivano.\"],\"ax9iz4\":[\"No custom templates yet. Create one to get started.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"No specific focus\"],\"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}\"],\"kaDUQs\":[\"No templates yet. Create your own or browse All templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"Ancora nessun workspace in questa organizzazione.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Now\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"Dw7aQc\":[\"Only applies when report is published\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"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.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Open Documentation\"],\"QTXl9z\":[\"Open feedback portal\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Other hosts can see and copy your template. You can unpublish at any time.\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Pick date and time\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Pick one or more angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"lepv9z\":[\"Pin to chat bar\"],\"fr2ggG\":[\"pinned\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"Atb9XB\":[\"Pinned to chat bar\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"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\"],\"Tx36sk\":[\"Portal link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Prefer to chat directly? <0>Book a call with me\"],\"Q6hhn8\":[\"Preferences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"ANWB5x\":[\"Print this report\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Security\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy Statements\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projects Home\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"GwOmnT\":[\"Publish this report to enable printing\"],\"ZSi2AK\":[\"Publish this report to enable sharing\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"4R3R74\":[\"Published to community\"],\"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.\"],\"9iShh/\":[\"Quick Access (max 5)\"],\"utRRxm\":[\"Quick access is full (max 5)\"],\"dN0qso\":[\"Quick access:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Rate this prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"DqXVNZ\":[\"Ready to generate\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"844H5I\":[\"Regenerate Library\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevance\"],\"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\"],\"hTDMBB\":[\"Reload Page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Remove from favorites\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Remove from quick access\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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?\"],\"nVEhnc\":[\"Removed from organisation\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"UZ6fKH\":[\"Report actions\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"mgTmvC\":[\"Report structure\"],\"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\"],\"uLZGK+\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Riprogramma per\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Reset to default\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Resources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Run status:\"],\"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!\"],\"RgyKxd\":[\"Save Quick Access\"],\"5dVjYt\":[\"Save template\"],\"zaYZWH\":[\"Save to my templates\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scansiona o clicca per aprire il portale di feedback\"],\"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\"],\"QS1Nla\":[\"Schedule for later\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Cerca e seleziona le conversazioni per questa chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Search conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Search webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Send a message to start an agentic run.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Share\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Share this report\"],\"lRZMol\":[\"Share with community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Share with the community\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Share your voice\"],\"4o0klJ\":[\"Condividi la tua voce scansionando il codice QR\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Show a link for participants to contribute\"],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Show duration\"],\"YbxwRo\":[\"Show generated suggestions\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Sign in with Google\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"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.\"],\"zazql1\":[\"Something went wrong generating your latest report. Showing your most recent completed report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"a75OAp\":[\"Something went wrong generating your report. You can try again below.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"vf1Tc/\":[\"Specific Details richiede almeno una conversazione.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Start Recording\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Submitted via text input\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"aZJj7n\":[\"Suggest prompts based on your conversations\"],\"FyUg+Y\":[\"Suggest prompts based on your conversations. Try sending a message to see it in action.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"6xSPmn\":[\"Suggested project goal\"],\"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\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Template prompt content...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal — it helps us fix things faster.\"],\"gtMB2A\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal. It helps us fix things faster than not submitting a report.\"],\"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.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"The issue reporter could not be loaded. Please use the feedback portal to tell us what went wrong — it helps us fix things faster.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"the project library.\"],\"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.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"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.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"This information is anonymized\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"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\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Ora\"],\"Ww6cQ8\":[\"Time Created\"],\"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.\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Try Again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainian\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dFIzZ6\":[\"Unpin from chat bar\"],\"dx+iaL\":[\"Unpin project\"],\"KyKziT\":[\"Unpublish from community\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Update Report\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Updated\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Upload Audio\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Use\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"View read announcements\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"views\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"tCfopB\":[\"Want custom report structures?\"],\"VKMCO0\":[\"Want to add a template to \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"v8z9fL\":[\"Want to customize how your report looks?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"2ZUkkL\":[\"We're designing this feature and would love your input.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Benvenuto in dembrane Chat. Usa la barra laterale per scegliere risorse e conversazioni da analizzare. Poi puoi fare domande su quello che hai selezionato.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"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.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"ZsEVar\":[\"What should this report focus on?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"Ul3erb\":[\"What you can reach\"],\"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.\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Yours\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"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.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"uSTZVH\":[[\"conversationTotal\"],\" included\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 included\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ members have joined\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Add to favorites\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"MIWKYQ\":[\"Add to quick access\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Add Your First Webhook\"],\"DtI2tD\":[\"Add your own\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"VHg3DX\":[\"Agentic Chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"All templates\"],\"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?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"zqhMd0\":[\"C'è stato un errore imprevisto. Di solito basta ricaricare la pagina o tornare alla home.\"],\"QX6zrA\":[\"Analysis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymous host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Appearance\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Apply\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"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?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"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.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistant is typing...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio Tip\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Book a call to share your feedback\"],\"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.\"],\"CzeGfZ\":[\"Browse and share templates with other hosts\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Built-in\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citing the following sources\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Coming soon — share your input\"],\"bJHBId\":[\"Common use cases:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community templates\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concrete Topics\"],\"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\"],\"p2/GCq\":[\"Confirm Password\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contact sales\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"Np+C87\":[\"Conversations:\"],\"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\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"RGCCrg\":[\"Copy share link\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Create an Account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"uVzvzz\":[\"Create now instead\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"s7XwOU\":[\"Create Template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Created \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"custom\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Customize how your report is structured. This feature is coming soon.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Delete Custom Topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"MlrelG\":[\"Delete Report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane is powered by AI. Please double-check responses.\"],\"QMogcD\":[\"Reply\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe how this template is useful...\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determines under which GDPR legal basis personal data is processed. This affects consent flows, data subject rights, and retention obligations.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Display contextual suggestion pills in the chat\"],\"pfa8F0\":[\"Display name\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"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\"],\"5154Ap\":[\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"e.g. tomorrow at 9:00\"],\"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.\"],\"5oD9f/\":[\"Earlier\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"edit\"],\"ePK91l\":[\"Edit\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"gGx5tM\":[\"Editing\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Email Verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Email Verification | dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"VpwcSk\":[\"Enter new password\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"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\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"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\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"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.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Failed to start new conversation. 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\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"First Name\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus your report (optional)\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"from \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"oADIO6\":[\"Generate a new report. Previous reports will remain accessible.\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Go to feedback portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Grid view\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guidato\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help us translate\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"JsWQuM\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations. You can optionally focus the report on a specific topic.\"],\"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.\"],\"Lj7sBL\":[\"Italian\"],\"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.\"],\"GaQMyV\":[\"Join \",[\"0\"],\" on dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Join the 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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Language\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Let us know!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"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\"],\"yUQgLY\":[\"Library is currently being processed\"],\"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\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"WXSxpf\":[\"Logo updated successfully\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mine\"],\"b85Pfh\":[\"Minimum 8 characters\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"zMx0gF\":[\"More templates\"],\"y1ypMV\":[\"Most popular\"],\"7BgchI\":[\"Most used\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Deve essere almeno 10 minuti nel futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\"],\"XojC2V\":[\"New conversations available — update your 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.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"3RC8Um\":[\"New conversations have been added since your last report. Generate an updated report to include them. Your previous report will remain accessible.\"],\"QgiaQ8\":[\"New date and time\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"New Project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Newest\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No announcements available\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No collections found\"],\"S8FeaY\":[\"No community templates yet. Share yours to get started.\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"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.\"],\"meAa31\":[\"No conversations yet\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Ancora nessuna conversazione. Puoi programmare un report ora. Le aggiungiamo quando arrivano.\"],\"ax9iz4\":[\"No custom templates yet. Create one to get started.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"No specific focus\"],\"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}\"],\"kaDUQs\":[\"No templates yet. Create your own or browse All templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"Ancora nessun workspace in questa organizzazione.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Now\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"Dw7aQc\":[\"Only applies when report is published\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"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.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Open Documentation\"],\"QTXl9z\":[\"Open feedback portal\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Other hosts can see and copy your template. You can unpublish at any time.\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Pick date and time\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Pick one or more angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"lepv9z\":[\"Pin to chat bar\"],\"fr2ggG\":[\"pinned\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"Atb9XB\":[\"Pinned to chat bar\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"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\"],\"Tx36sk\":[\"Portal link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Prefer to chat directly? <0>Book a call with me\"],\"Q6hhn8\":[\"Preferences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"ANWB5x\":[\"Print this report\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Security\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy Statements\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projects Home\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"GwOmnT\":[\"Publish this report to enable printing\"],\"ZSi2AK\":[\"Publish this report to enable sharing\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"4R3R74\":[\"Published to community\"],\"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.\"],\"9iShh/\":[\"Quick Access (max 5)\"],\"utRRxm\":[\"Quick access is full (max 5)\"],\"dN0qso\":[\"Quick access:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Rate this prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"DqXVNZ\":[\"Ready to generate\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"844H5I\":[\"Regenerate Library\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevance\"],\"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\"],\"hTDMBB\":[\"Reload Page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Remove from favorites\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Remove from quick access\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"UZ6fKH\":[\"Report actions\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"mgTmvC\":[\"Report structure\"],\"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\"],\"uLZGK+\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Riprogramma per\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Reset to default\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Resources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Run status:\"],\"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!\"],\"RgyKxd\":[\"Save Quick Access\"],\"5dVjYt\":[\"Save template\"],\"zaYZWH\":[\"Save to my templates\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Scansiona o clicca per aprire il portale di feedback\"],\"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\"],\"QS1Nla\":[\"Schedule for later\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Cerca e seleziona le conversazioni per questa chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Search conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Search webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Send a message to start an agentic run.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Share\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Share this report\"],\"lRZMol\":[\"Share with community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Share with the community\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Share your voice\"],\"4o0klJ\":[\"Condividi la tua voce scansionando il codice QR\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Show a link for participants to contribute\"],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Show duration\"],\"YbxwRo\":[\"Show generated suggestions\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Sign in with Google\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"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.\"],\"zazql1\":[\"Something went wrong generating your latest report. Showing your most recent completed report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"a75OAp\":[\"Something went wrong generating your report. You can try again below.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"vf1Tc/\":[\"Specific Details richiede almeno una conversazione.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Start Recording\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Submitted via text input\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"aZJj7n\":[\"Suggest prompts based on your conversations\"],\"FyUg+Y\":[\"Suggest prompts based on your conversations. Try sending a message to see it in action.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"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\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Template prompt content...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal — it helps us fix things faster.\"],\"gtMB2A\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal. It helps us fix things faster than not submitting a report.\"],\"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.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"The issue reporter could not be loaded. Please use the feedback portal to tell us what went wrong — it helps us fix things faster.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"the project library.\"],\"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.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"This information is anonymized\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"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\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Ora\"],\"Ww6cQ8\":[\"Time Created\"],\"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.\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Try Again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainian\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dFIzZ6\":[\"Unpin from chat bar\"],\"dx+iaL\":[\"Unpin project\"],\"KyKziT\":[\"Unpublish from community\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Update Report\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Updated\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Upload Audio\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Use\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"View read announcements\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"views\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"tCfopB\":[\"Want custom report structures?\"],\"VKMCO0\":[\"Want to add a template to \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"v8z9fL\":[\"Want to customize how your report looks?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"2ZUkkL\":[\"We're designing this feature and would love your input.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Benvenuto in dembrane Chat. Usa la barra laterale per scegliere risorse e conversazioni da analizzare. Poi puoi fare domande su quello che hai selezionato.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"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.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"ZsEVar\":[\"What should this report focus on?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"Ul3erb\":[\"What you can reach\"],\"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.\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Yours\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"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 eb493a8f6..4e63b7f23 100644 --- a/echo/frontend/src/locales/nl-NL.po +++ b/echo/frontend/src/locales/nl-NL.po @@ -557,11 +557,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:191 +#: src/components/chat/AgenticChatPanel.tsx:193 msgid "{name}'s conversation" msgstr "Gesprek van {name}" -#: src/components/chat/AgenticChatPanel.tsx:190 +#: src/components/chat/AgenticChatPanel.tsx:192 msgid "{name}'s transcript excerpt" msgstr "Transcriptfragment van {name}" @@ -862,6 +862,10 @@ msgstr "" msgid "A friendly name to identify this webhook" msgstr "Een vriendelijke naam om dit webhook te identificeren" +#: src/components/project/ProjectExperimentalSection.tsx:52 +msgid "A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed." +msgstr "" + #: src/routes/project/report/ProjectReportRoute.tsx:564 msgid "A new report will be automatically generated and published at the scheduled time." msgstr "Er wordt automatisch een nieuw rapport gegenereerd en gepubliceerd op het geplande tijdstip." @@ -951,7 +955,7 @@ msgstr "" #: src/routes/workspaces/CreateWorkspaceRoute.tsx:702 #: src/routes/project/CreateProjectRoute.tsx:256 #: src/routes/project/CreateProjectRoute.tsx:345 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:117 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:120 #: src/components/project/ProjectUsageAndSharing.tsx:190 #: src/components/layout/ProjectOverviewLayout.tsx:52 msgid "Access" @@ -1086,6 +1090,7 @@ msgstr "Actieve filters" #: src/routes/organisation/OrganisationRoute.tsx:2054 #: src/routes/organisation/OrganisationRoute.tsx:2077 #: src/components/project/ProjectSharingModal.tsx:252 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:191 #: src/components/billing/BillingManager.tsx:1461 msgid "Add" msgstr "Toevoegen" @@ -1241,6 +1246,7 @@ msgstr "Voeg uw eerste webhook toe" #~ msgstr "Eigen invoer" #: src/components/project/ProjectSharingModal.tsx:68 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:145 msgid "Added" msgstr "Toegevoegd" @@ -1405,8 +1411,8 @@ msgstr "Geavanceerde instellingen" #~ msgid "Agent is working..." #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:287 -#: src/components/chat/AgenticChatPanel.tsx:314 +#: src/components/chat/AgenticChatPanel.tsx:289 +#: src/components/chat/AgenticChatPanel.tsx:316 msgid "Agent run failed" msgstr "" @@ -1727,6 +1733,7 @@ msgstr "" #: src/components/view/CreateViewForm.tsx:153 #: src/components/goal/GoalSuggestionCard.tsx:122 #: src/components/common/ImageCropModal.tsx:148 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:223 #: src/components/chat/CanvasSuggestionCard.tsx:361 msgid "Apply" msgstr "Toepassen" @@ -1899,7 +1906,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:1481 +#: src/components/chat/AgenticChatPanel.tsx:1494 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." @@ -1921,7 +1928,7 @@ msgstr "Vraag een admin van de werkruimte om een uitnodiging, of kies een andere msgid "Ask about your conversations, or type to find an earlier chat" msgstr "Vraag iets over je gesprekken, of typ om een eerdere chat te vinden" -#: src/components/chat/AgenticChatPanel.tsx:1739 +#: src/components/chat/AgenticChatPanel.tsx:1766 msgid "Ask about your conversations..." msgstr "Vraag iets over je gesprekken..." @@ -2246,6 +2253,7 @@ msgstr "Basis instellingen" #: src/components/report/CreateReportForm.tsx:235 #: src/components/project/ProjectPortalEditor.tsx:1483 #: src/components/project/ProjectPortalEditor.tsx:1564 +#: src/components/project/ProjectExperimentalSection.tsx:48 #: src/components/conversation/RetranscribeConversation.tsx:151 #: src/components/chat/ChatModeSelector.tsx:158 #: src/components/chat/ChatModeBanner.tsx:45 @@ -2482,7 +2490,7 @@ msgstr "kan lezen" #: src/components/common/ImageCropModal.tsx:145 #: src/components/common/FeedbackPortalModal.tsx:124 #: src/components/common/ConfirmModal.tsx:44 -#: src/components/chat/AgenticChatPanel.tsx:1708 +#: src/components/chat/AgenticChatPanel.tsx:1735 msgid "Cancel" msgstr "Annuleren" @@ -2515,7 +2523,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:1696 +#: src/components/chat/AgenticChatPanel.tsx:1723 msgid "Cancel current run" msgstr "" @@ -2708,7 +2716,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:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Chat" msgstr "Chat" @@ -2773,7 +2781,7 @@ msgstr "" msgid "Checked {checkedAgo}. Nothing new since your last conversation. Updated {updatedAgo}." msgstr "" -#: src/components/chat/agenticToolActivity.ts:123 +#: src/components/chat/agenticToolActivity.ts:125 msgid "Checking live conversations" msgstr "" @@ -3174,7 +3182,7 @@ msgstr "Gesprekslabels" msgid "conversations" msgstr "gesprekken" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:111 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:114 #: src/components/workspace/OrganisationProjectsTable.tsx:219 #: src/components/project/ProjectUsageAndSharing.tsx:453 #: src/components/conversation/ProjectConversationsPanel.tsx:725 @@ -3287,6 +3295,10 @@ msgstr "Kopieer naar klembord" msgid "Copying..." msgstr "Kopieren..." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:102 +msgid "Could not apply all the tag changes." +msgstr "" + #: src/components/chat/ProjectUpdateSuggestionCard.tsx:182 msgid "Could not apply the changes. Nothing was saved." msgstr "" @@ -3373,7 +3385,7 @@ msgstr "" msgid "Could not save tags" msgstr "" -#: src/components/project/hooks/index.ts:450 +#: src/components/project/hooks/index.ts:460 msgid "Could not save the host guide" msgstr "De hostgids kon niet worden opgeslagen" @@ -4141,6 +4153,7 @@ msgid "Dismiss" msgstr "" #: src/components/goal/GoalSuggestionCard.tsx:86 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:173 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:249 #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:113 #: src/components/chat/CanvasSuggestionCard.tsx:256 @@ -4209,7 +4222,7 @@ msgstr "" #: src/routes/onboarding/OnboardingRoute.tsx:525 #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 -#: src/components/chat/AgenticChatPanel.tsx:333 +#: src/components/chat/AgenticChatPanel.tsx:335 msgid "Done" msgstr "Klaar" @@ -4357,6 +4370,10 @@ msgstr "Elk nieuw lid wordt per stoel in rekening gebracht volgens je abonnement #~ msgid "Earlier" #~ msgstr "Eerder" +#: src/components/project/ProjectExperimentalSection.tsx:25 +msgid "Early features you can try on this project before they are ready for everyone." +msgstr "" + #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:1065 msgid "participant.button.echo" @@ -4656,7 +4673,7 @@ msgstr "Voer de 6-cijferige code uit je authenticator-app in." msgid "Enter the current six-digit code from your authenticator app." msgstr "Voer de huidige zescijferige code uit je authenticator-app in." -#: src/components/chat/AgenticChatPanel.tsx:1756 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Enter to send, Shift+Enter for a new line" msgstr "Enter om te versturen, Shift+Enter voor een nieuwe regel" @@ -4687,8 +4704,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:371 -#: src/components/chat/AgenticChatPanel.tsx:338 -#: src/components/chat/AgenticChatPanel.tsx:1427 +#: src/components/chat/AgenticChatPanel.tsx:340 +#: src/components/chat/AgenticChatPanel.tsx:1440 msgid "Error" msgstr "Fout" @@ -4707,10 +4724,10 @@ msgstr "Fout bij het maken van het rapport" #~ msgid "Error loading insights" #~ msgstr "Fout bij laden van inzichten" -#: src/routes/project/ProjectRoutes.tsx:81 -#: src/routes/project/ProjectRoutes.tsx:168 -#: src/routes/project/ProjectRoutes.tsx:270 -#: src/routes/project/ProjectRoutes.tsx:309 +#: src/routes/project/ProjectRoutes.tsx:83 +#: src/routes/project/ProjectRoutes.tsx:177 +#: src/routes/project/ProjectRoutes.tsx:279 +#: src/routes/project/ProjectRoutes.tsx:318 msgid "Error loading project" msgstr "Fout bij laden van project" @@ -4838,8 +4855,9 @@ msgstr "Volledig scherm sluiten" msgid "Expand workspaces" msgstr "Werkruimtes uitvouwen" -#~ msgid "Experimental" -#~ msgstr "Experimenteel" +#: src/components/project/ProjectExperimentalSection.tsx:23 +msgid "Experimental" +msgstr "Experimenteel" #: src/components/billing/BillingManager.tsx:182 msgid "Expired" @@ -4969,7 +4987,7 @@ msgstr "Fout bij het kopiëren van de chat. Probeer het opnieuw." msgid "Failed to copy transcript. Please try again." msgstr "Kopiëren van transcript is mislukt. Probeer het nog een keer." -#: src/components/project/hooks/index.ts:583 +#: src/components/project/hooks/index.ts:593 msgid "Failed to create custom topic" msgstr "Fout bij het aanmaken van het aangepaste onderwerp" @@ -4981,7 +4999,7 @@ msgstr "Project aanmaken mislukt" msgid "Failed to delete chat" msgstr "Verwijderen van chat mislukt" -#: src/components/project/hooks/index.ts:635 +#: src/components/project/hooks/index.ts:645 msgid "Failed to delete custom topic" msgstr "Fout bij het verwijderen van het aangepaste onderwerp" @@ -4993,7 +5011,7 @@ msgstr "Verwijderen van project mislukt" msgid "Failed to delete response" msgstr "Fout bij het verwijderen van de reactie" -#: src/components/project/hooks/index.ts:331 +#: src/components/project/hooks/index.ts:341 msgid "Failed to delete tag" msgstr "Verwijderen van tag mislukt" @@ -5117,15 +5135,15 @@ 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:1299 +#: src/components/chat/AgenticChatPanel.tsx:1312 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1258 +#: src/components/chat/AgenticChatPanel.tsx:1271 msgid "Failed to submit agentic message" msgstr "" -#: src/components/project/hooks/index.ts:610 +#: src/components/project/hooks/index.ts:620 msgid "Failed to update custom topic" msgstr "Fout bij het bijwerken van het aangepaste onderwerp" @@ -5378,7 +5396,7 @@ msgstr "Prognose" #~ msgid "Forecast: ~{0}" #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:157 +#: src/components/chat/agenticToolActivity.ts:160 msgid "Forgetting a saved memory" msgstr "" @@ -5803,7 +5821,7 @@ msgstr "Projecten verbergen" msgid "Hide revision data" msgstr "Revisiegegevens verbergen" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Hide steps" msgstr "" @@ -5828,7 +5846,7 @@ msgid "host guide" msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:167 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:101 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:104 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:53 msgid "Host guide" msgstr "Hostgids" @@ -5884,11 +5902,11 @@ msgstr "" #~ msgid "I accept the <0>terms" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1567 +#: src/components/chat/AgenticChatPanel.tsx:1594 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1583 +#: src/components/chat/AgenticChatPanel.tsx:1610 msgid "I applied the goal." msgstr "" @@ -5964,7 +5982,7 @@ msgstr "Als je je bij een bestaande organisatie wilt aansluiten, maak dan geen n msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1505 +#: src/components/chat/AgenticChatPanel.tsx:1518 msgid "Improve my setup" msgstr "" @@ -6646,7 +6664,7 @@ msgstr "" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 #: src/routes/project/library/LibraryRoute.tsx:132 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:94 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:97 msgid "Library" msgstr "Bibliotheek" @@ -6715,7 +6733,7 @@ msgstr "Link naar de privacyverklaring van uw organisatie die aan deelnemers wor #~ msgid "LinkedIn Post (Experimental)" #~ msgstr "LinkedIn Post (Experimenteel)" -#: src/components/chat/AgenticChatPanel.tsx:1495 +#: src/components/chat/AgenticChatPanel.tsx:1508 msgid "List my conversations" msgstr "" @@ -6723,15 +6741,15 @@ msgstr "" #~ msgid "List project conversations" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1496 +#: src/components/chat/AgenticChatPanel.tsx:1509 msgid "List the conversations in this project." msgstr "" -#: src/components/chat/agenticToolActivity.ts:121 +#: src/components/chat/agenticToolActivity.ts:123 msgid "Listing conversations" msgstr "Gesprekken op een rij zetten" -#: src/components/chat/agenticToolActivity.ts:117 +#: src/components/chat/agenticToolActivity.ts:119 msgid "Listing documentation pages" msgstr "" @@ -6783,10 +6801,14 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:986 +#: src/components/chat/AgenticChatPanel.tsx:999 msgid "Live stream interrupted. Falling back to polling." msgstr "" +#: src/components/project/ProjectExperimentalSection.tsx:45 +msgid "Living canvas" +msgstr "" + #: src/components/chat/agenticToolActivity.ts:120 #~ msgid "Load conversation summary" #~ msgstr "" @@ -6860,7 +6882,7 @@ msgstr "Projecten laden..." #~ msgid "Loading projects…" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1438 +#: src/components/chat/AgenticChatPanel.tsx:1451 msgid "Loading this chat..." msgstr "" @@ -6927,7 +6949,7 @@ msgstr "Log in bij {resolvedWorkspaceName} om verder te gaan." msgid "Log out and use the invited email" msgstr "Uitloggen en het uitgenodigde e-mailadres gebruiken" -#: src/components/chat/agenticToolActivity.ts:160 +#: src/components/chat/agenticToolActivity.ts:163 msgid "Logging this with the dembrane team" msgstr "" @@ -8044,6 +8066,7 @@ msgid "Not available" msgstr "Niet beschikbaar" #: src/routes/invite/AcceptInviteRoute.tsx:568 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:214 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:353 msgid "Not now" msgstr "Niet nu" @@ -8126,7 +8149,7 @@ msgstr "Nog niets opgeslagen. De assistent voegt hier notities toe terwijl je ch msgid "Notify participants when a report is published." msgstr "Deelnemers melden wanneer een rapport wordt gepubliceerd." -#: src/components/chat/agenticToolActivity.ts:149 +#: src/components/chat/agenticToolActivity.ts:152 msgid "Noting this for the dembrane team" msgstr "" @@ -8432,7 +8455,7 @@ msgstr "" msgid "Open the chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1414 +#: src/components/chat/AgenticChatPanel.tsx:1427 msgid "Open the old chat experience" msgstr "Open de oude chatervaring" @@ -9512,7 +9535,7 @@ msgstr "Liever de oude chat? Start een Specifieke details-chat" #~ msgid "Preferences" #~ msgstr "Voorkeuren" -#: src/components/chat/agenticToolActivity.ts:107 +#: src/components/chat/agenticToolActivity.ts:109 msgid "Preparing a navigation shortcut" msgstr "" @@ -9932,7 +9955,7 @@ msgstr "" #~ msgstr "Quotes" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:510 +#: src/components/chat/AgenticChatPanel.tsx:514 msgid "Ran {0} steps at once" msgstr "{0} stappen tegelijk uitgevoerd" @@ -9977,36 +10000,36 @@ msgid "Read-only" msgstr "Alleen-lezen" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:133 +#: src/components/chat/agenticToolActivity.ts:135 msgid "Reading {0}'s summary" msgstr "Samenvatting van {0} lezen" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:138 +#: src/components/chat/agenticToolActivity.ts:140 msgid "Reading {0}'s transcript" msgstr "Transcript van {0} lezen" -#: src/components/chat/agenticToolActivity.ts:134 +#: src/components/chat/agenticToolActivity.ts:136 msgid "Reading a conversation summary" msgstr "Een gesprekssamenvatting lezen" -#: src/components/chat/agenticToolActivity.ts:115 +#: src/components/chat/agenticToolActivity.ts:117 msgid "Reading a skill" msgstr "" -#: src/components/chat/agenticToolActivity.ts:139 +#: src/components/chat/agenticToolActivity.ts:141 msgid "Reading a transcript" msgstr "Een transcript lezen" -#: src/components/chat/agenticToolActivity.ts:119 +#: src/components/chat/agenticToolActivity.ts:121 msgid "Reading project context" msgstr "Projectcontext lezen" -#: src/components/chat/agenticToolActivity.ts:109 +#: src/components/chat/agenticToolActivity.ts:111 msgid "Reading project settings" msgstr "" -#: src/components/chat/agenticToolActivity.ts:113 +#: src/components/chat/agenticToolActivity.ts:115 msgid "Reading the documentation" msgstr "" @@ -10253,6 +10276,7 @@ msgstr "" #: src/components/organisation/InviteEmailList.tsx:58 #: src/components/memory/MemoryList.tsx:98 #: src/components/memory/MemoryList.tsx:118 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:199 msgid "Remove" msgstr "Verwijderen" @@ -10329,6 +10353,10 @@ msgstr "Het aangepaste logo verwijderen? In plaats daarvan wordt het standaardlo msgid "Remove this memory?" msgstr "Deze herinnering verwijderen?" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:153 +msgid "Removed" +msgstr "" + #: src/routes/organisation/OrganisationRoute.tsx:522 msgid "Removed from organisation" msgstr "Verwijderd uit organisatie" @@ -10345,7 +10373,7 @@ msgstr "Naam wijzigen" #~ msgstr "Naam wijzigen" #: src/components/chat/ChatAccordion.tsx:158 -#: src/components/chat/AgenticChatPanel.tsx:1370 +#: src/components/chat/AgenticChatPanel.tsx:1383 msgid "Rename chat" msgstr "Chat hernoemen" @@ -10382,7 +10410,7 @@ msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:175 #: src/routes/project/report/ProjectReportRoute.tsx:185 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:106 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:109 #: src/components/report/ReportRenderer.tsx:75 #: src/components/report/ReportModalNavigationButton.tsx:92 msgid "Report" @@ -10667,7 +10695,7 @@ msgstr "" msgid "retracted for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:153 +#: src/components/chat/agenticToolActivity.ts:156 msgid "Retracting a note for the dembrane team" msgstr "" @@ -10745,7 +10773,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Bestanden bekijken voordat u uploadt" -#: src/components/chat/AgenticChatPanel.tsx:1506 +#: src/components/chat/AgenticChatPanel.tsx:1519 msgid "Review my project settings and suggest improvements." msgstr "" @@ -10825,7 +10853,7 @@ msgstr "Rijen per pagina" #~ msgid "Run status:" #~ msgstr "Uitvoeringsstatus:" -#: src/components/chat/AgenticChatPanel.tsx:343 +#: src/components/chat/AgenticChatPanel.tsx:345 msgid "Running" msgstr "" @@ -11094,16 +11122,16 @@ msgstr "Zoek werkruimtes" msgid "Searched through the most relevant sources" msgstr "Doorzocht de meest relevante bronnen" -#: src/components/chat/agenticToolActivity.ts:129 +#: src/components/chat/agenticToolActivity.ts:131 msgid "Searching conversations" msgstr "Gesprekken doorzoeken" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:128 +#: src/components/chat/agenticToolActivity.ts:130 msgid "Searching conversations for \"{0}\"" msgstr "Gesprekken doorzoeken op \"{0}\"" -#: src/components/chat/agenticToolActivity.ts:111 +#: src/components/chat/agenticToolActivity.ts:113 msgid "Searching the documentation" msgstr "" @@ -11111,12 +11139,12 @@ msgstr "" #~ msgid "Searching through the most relevant sources" #~ msgstr "Zoeken door de meest relevante bronnen" -#: src/components/chat/agenticToolActivity.ts:144 +#: src/components/chat/agenticToolActivity.ts:146 msgid "Searching transcripts" msgstr "Transcripten doorzoeken" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:143 +#: src/components/chat/agenticToolActivity.ts:145 msgid "Searching transcripts for \"{0}\"" msgstr "Transcripten doorzoeken op \"{0}\"" @@ -11338,7 +11366,7 @@ msgid "Self-serve" msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:1024 -#: src/components/chat/AgenticChatPanel.tsx:1776 +#: src/components/chat/AgenticChatPanel.tsx:1803 msgid "Send" msgstr "Verzenden" @@ -11472,7 +11500,7 @@ msgstr "" #: src/features/sidebar/views/workspace/WorkspaceHomeView.tsx:80 #: src/features/sidebar/views/user/UserSettingsView.tsx:34 #: src/features/sidebar/views/project/ProjectSettingsView.tsx:18 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:129 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:132 #: src/features/sidebar/views/org/OrgSettingsView.tsx:26 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 @@ -11663,7 +11691,7 @@ msgstr "Toon referenties" msgid "Show revision data" msgstr "Revisiegegevens tonen" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Show steps" msgstr "" @@ -12080,6 +12108,10 @@ msgstr "" msgid "Suggested project goal" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:169 +msgid "Suggested tag changes for your project" +msgstr "" + #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:109 msgid "Suggested verification prompt" msgstr "" @@ -12089,15 +12121,15 @@ msgstr "" msgid "Suggested:" msgstr "Aanbevelingen:" -#: src/components/chat/agenticToolActivity.ts:103 +#: src/components/chat/agenticToolActivity.ts:105 msgid "Suggesting a canvas" msgstr "" -#: src/components/chat/agenticToolActivity.ts:105 +#: src/components/chat/agenticToolActivity.ts:107 msgid "Suggesting a project goal" msgstr "" -#: src/components/chat/agenticToolActivity.ts:101 +#: src/components/chat/agenticToolActivity.ts:103 msgid "Suggesting a verification prompt" msgstr "" @@ -12105,6 +12137,10 @@ msgstr "" msgid "Suggesting project changes" msgstr "" +#: src/components/chat/agenticToolActivity.ts:101 +msgid "Suggesting tag changes" +msgstr "" + #: src/components/chat/templates.ts:26 msgid "Summarize" msgstr "Samenvatten" @@ -12205,7 +12241,7 @@ msgstr "Systeem" msgid "System status" msgstr "Systeemstatus" -#: src/components/project/hooks/index.ts:328 +#: src/components/project/hooks/index.ts:338 msgid "Tag deleted" msgstr "Tag verwijderd" @@ -12222,6 +12258,14 @@ msgstr "Trefwoorden" #~ msgid "Tags (max 3)" #~ msgstr "Tags (max 3)" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:180 +msgid "Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply." +msgstr "" + +#: src/components/chat/TagsUpdateSuggestionCard.tsx:99 +msgid "Tags updated. You can fine-tune them anytime in the portal editor." +msgstr "" + #: src/routes/invite/AcceptInviteRoute.tsx:483 #: src/routes/invite/AcceptInviteRoute.tsx:523 msgid "Take me to {resolvedWorkspaceName}" @@ -12573,6 +12617,10 @@ msgstr "Deze standaardweergaven worden automatisch aangemaakt wanneer je je eers msgid "These settings are read-only. Only organisation administrators can modify project defaults." msgstr "Deze instellingen zijn alleen-lezen. Alleen organisatiebeheerders kunnen de projectstandaarden wijzigen." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:132 +msgid "These tag changes are applied to your project." +msgstr "" + #: src/components/invite/InviteModal.tsx:654 msgid "These workspaces are billed separately. Each person you add takes a seat in {billingContextCount} billing contexts, each invoiced on its own." msgstr "Deze werkruimtes worden apart gefactureerd. Elke persoon die je toevoegt neemt een plek in {billingContextCount} factureringscontexten in, die elk afzonderlijk worden gefactureerd." @@ -12710,7 +12758,7 @@ msgstr "Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden msgid "This is not saved yet." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1402 +#: src/components/chat/AgenticChatPanel.tsx:1415 msgid "This is the new chat experience" msgstr "Dit is de nieuwe chatervaring" @@ -13051,11 +13099,11 @@ msgstr "Te lang" msgid "Tool" msgstr "" -#: src/components/project/hooks/index.ts:591 +#: src/components/project/hooks/index.ts:601 msgid "Topic created successfully" msgstr "Onderwerp succesvol aangemaakt" -#: src/components/project/hooks/index.ts:643 +#: src/components/project/hooks/index.ts:653 msgid "Topic deleted successfully" msgstr "Onderwerp verwijderd" @@ -13063,7 +13111,7 @@ msgstr "Onderwerp verwijderd" msgid "Topic label" msgstr "Onderwerp label" -#: src/components/project/hooks/index.ts:618 +#: src/components/project/hooks/index.ts:628 msgid "Topic updated successfully" msgstr "Onderwerp bijgewerkt" @@ -13148,7 +13196,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcriptie wordt uitgevoerd..." -#: src/components/chat/AgenticChatPanel.tsx:194 +#: src/components/chat/AgenticChatPanel.tsx:196 msgid "transcript" msgstr "" @@ -13164,7 +13212,7 @@ msgstr "Transcriptie" msgid "Transcript copied to clipboard" msgstr "Transcript gekopieerd naar klembord" -#: src/components/chat/AgenticChatPanel.tsx:193 +#: src/components/chat/AgenticChatPanel.tsx:195 msgid "transcript excerpt" msgstr "" @@ -13617,15 +13665,15 @@ msgstr "" #~ msgid "Updates every few minutes." #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:151 +#: src/components/chat/agenticToolActivity.ts:154 msgid "Updating a note for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:155 +#: src/components/chat/agenticToolActivity.ts:158 msgid "Updating a saved memory" msgstr "" -#: src/components/chat/agenticToolActivity.ts:146 +#: src/components/chat/agenticToolActivity.ts:149 msgid "Updating project tags" msgstr "" @@ -13800,7 +13848,7 @@ msgstr "URL is vereist" msgid "URL must start with http:// or https://" msgstr "URL moet beginnen met http:// of https://" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:122 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:125 #: src/features/sidebar/views/org/OrgSettingsView.tsx:37 #: src/components/project/ProjectUsageAndSharing.tsx:415 #: src/components/layout/ProjectOverviewLayout.tsx:53 @@ -14297,7 +14345,7 @@ msgstr "Webhooks" msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \"notificatiesysteem\" voor uw andere tools." -#: src/routes/project/ProjectRoutes.tsx:182 +#: src/routes/project/ProjectRoutes.tsx:191 msgid "Webhooks are not enabled for this environment." msgstr "Webhooks zijn niet ingeschakeld voor deze omgeving." @@ -14401,11 +14449,11 @@ msgstr "Wat moet ECHO analyseren of genereren uit de gesprekken?" #~ msgid "What should this report focus on?" #~ msgstr "Waar moet dit rapport zich op richten?" -#: src/components/chat/AgenticChatPanel.tsx:1501 +#: src/components/chat/AgenticChatPanel.tsx:1514 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1500 +#: src/components/chat/AgenticChatPanel.tsx:1513 msgid "What themes came up?" msgstr "" @@ -14487,7 +14535,7 @@ msgid "Where would you like to go?" msgstr "Waar wil je naartoe?" #: src/routes/project/chat/NewChatRoute.tsx:358 -#: src/components/chat/AgenticChatPanel.tsx:1478 +#: src/components/chat/AgenticChatPanel.tsx:1491 msgid "Where would you like to start?" msgstr "Waar wil je beginnen?" @@ -14548,15 +14596,15 @@ msgid "Within my organisation" msgstr "Binnen mijn organisatie" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:511 +#: src/components/chat/AgenticChatPanel.tsx:515 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1332 +#: src/components/chat/AgenticChatPanel.tsx:1345 msgid "Working on your answer..." msgstr "Bezig met je antwoord..." -#: src/components/chat/AgenticChatPanel.tsx:506 +#: src/components/chat/AgenticChatPanel.tsx:510 msgid "Working..." msgstr "" diff --git a/echo/frontend/src/locales/nl-NL.ts b/echo/frontend/src/locales/nl-NL.ts index 4c80ce63c..abd8d29d7 100644 --- a/echo/frontend/src/locales/nl-NL.ts +++ b/echo/frontend/src/locales/nl-NL.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"ls1N1w\":[\"(ontbreekt)\"],\"B/gRsg\":[\"(geen)\"],\"NzluOx\":[\"(optioneel)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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 stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" lid\"],\"other\":[\"#\",\" leden\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" betaling\"],\"other\":[\"#\",\" betalingen\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projecten\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" opname\"],\"other\":[\"#\",\" opnames\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" geselecteerd\"],\"other\":[\"#\",\" geselecteerd\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" met fouten\"],\"other\":[\"#\",\" met fouten\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Verplaats \",\"#\",\" project naar een andere werkruimte.\"],\"other\":[\"Verplaats \",\"#\",\" projecten naar een andere werkruimte.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" verwijderd\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" uur / maand\"],\"hvF/g5\":[[\"0\"],\" uur totaal\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"nqIXFG\":[[\"0\"],\" van \",[\"1\"],\" leden zijn getraind.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" weergaven\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" werkruimtes · \",[\"1\"],\" betaalde plekken · \",[\"2\"],\" gratis waarnemers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" gratis\"],\"other\":[\"#\",\" gratis\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" gesprekken • Bewerkt \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" gesprekken geselecteerd voor deze chat\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"uSTZVH\":[[\"conversationTotal\"],\" opgenomen\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% korting toegepast\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% korting\"],\"YtOXS1\":[\"Gesprek van \",[\"name\"]],\"lJ6xri\":[\"Transcriptfragment van \",[\"name\"]],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" personen meer\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"/+py6Q\":[[\"seats\"],\" plekken\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"odzwX/\":[[\"sent\"],\" uitnodigingen verstuurd\"],\"dmKaRr\":[[\"sentCount\"],\" uitnodigingen verstuurd.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisatie\"],\"other\":[\"#\",\" organisaties\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"MqzJ2+\":[\"* stijgt naar \",[\"0\"],\" bij acceptatie\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/plek/mnd\"],\"lDyo+I\":[\"/zetel/mnd · jaarlijks gefactureerd\"],\"u5M/5B\":[\"/zetel/mnd · maandelijks gefactureerd\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" meer\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" per stuk, boven de inbegrepen \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra deelnemer\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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 history entry\"],\"0ko5Xt\":[\"1 opgenomen\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 weergave\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ leden zijn lid geworden\"],\"WehR9U\":[\"2 maanden geleden\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"L9boOH\":[\"2. Wanneer een gesprek of rapport plaatsvindt, sturen we de data automatisch naar je URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 maanden geleden\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"34Qhax\":[\"8 hours\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"Een downgrade past de downgrade-effecten uit de matrix toe en brengt werkruimtebeheerders op de hoogte.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"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.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"een werkruimte\"],\"2rz0sA\":[\"Over jou\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accepteren en deelnemen\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Toegang\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\":[\"Toegangsverzoeken\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account en beveiliging\"],\"VsyynM\":[\"Account & Beveiliging\"],\"g9NChz\":[\"Accountmanager\"],\"/8wINa\":[\"Accountmanager toegewezen.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"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\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"v7AMq1\":[\"Add an external\"],\"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\":[\"Add goal text before applying.\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Toevoegen aan favorieten\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"MIWKYQ\":[\"Toevoegen aan snelle toegang\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"P4Egjx\":[\"Toevoegen aan werkruimtes\"],\"6Xm4X2\":[\"Onderwerp toevoegen\"],\"AHaRrL\":[\"Vertalingen toevoegen\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"DtI2tD\":[\"Eigen invoer\"],\"hp8OtS\":[\"Toegevoegd\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Adres\"],\"NY/x1b\":[\"Adresregel 1\"],\"cormHa\":[\"Adresregel 2\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"U3pytU\":[\"Beheerder\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Beheerdersdashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Hier beheerder via organisatierol\"],\"2Fsr7J\":[\"Admin here via team role\"],\"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)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Tool-gestuurd uitvoering\"],\"VHg3DX\":[\"Agentisch Gesprek\"],\"N40H+G\":[\"Alles\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"Alle templates\"],\"NGO2th\":[\"Alle sjablonen\"],\"IOEBQh\":[\"Alle niveaus\"],\"dYoI9C\":[\"Alle zichtbare gesprekken geselecteerd\"],\"AWdiC+\":[\"Alle werkruimtes\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for 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?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"zqhMd0\":[\"Er ging iets onverwachts mis. Opnieuw laden of teruggaan naar home helpt meestal.\"],\"QX6zrA\":[\"Analyse\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Jaarlijkse facturering\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Transcript anonimiseren\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"YdiKaK\":[\"anoniem gesprek\"],\"iPiP6k\":[\"Anoniem gesprek\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonieme host\"],\"Pg5/xn\":[\"Anonieme deelnemer\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Een andere admin of eigenaar moet je herstellen.\"],\"6GojWN\":[\"Elke tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"1MB5rq\":[\"Iedereen in je organisatie kan deze werkruimte vinden. Organisatie-admins kunnen meedoen; organisatieleden kunnen toegang aanvragen.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Is er iets dat we beter hadden kunnen doen?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Weergave\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Toepassen\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Sjabloon toepassen\"],\"5swDY2\":[\"Bijna een limiet bereikt deze maand\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Goedkeuren\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"ELQ+fw\":[\"Weet je zeker dat je dit rapport wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"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?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"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.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Vraag een admin van de werkruimte om een uitnodiging, of kies een andere werkruimte uit je lijst.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Vraag iets over je gesprekken, of typ om een eerdere chat te vinden\"],\"9pDK3A\":[\"Vraag iets over je gesprekken...\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kaEPzR\":[\"Toewijzen\"],\"d/bvvp\":[\"Assistent\"],\"MPY6SL\":[\"Assistent-context\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"aYfeOI\":[\"Assistent-geheugen\"],\"bU39dx\":[\"Minstens 8 tekens\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio-afspelen niet beschikbaar voor anonieme gesprekken\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio-tip\"],\"QRkk6c\":[\"Audio was coming in but stopped — they may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and tags\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Beschikbaar vanaf innovator en hoger. Upgrade om te ontgrendelen.\"],\"KKfW2W\":[\"Avatar verwijderd\"],\"jSKImf\":[\"Avatar bijgewerkt\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"aBqveh\":[\"Back to 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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"K9cTJe\":[\"Jaarlijks gefactureerd\"],\"/i0ppe\":[\"jaarlijks gefactureerd · \",[\"total\"],\"/plek/jr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/yr\"],\"+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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Gefactureerd onder het abonnement van je organisatie, samen met je andere werkruimtes.\"],\"R+w/Va\":[\"Facturering\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"17Ox+q\":[\"Factuurgegevens\"],\"UQPSlS\":[\"Factuurgegevens opgeslagen.\"],\"ZQhgRe\":[\"Facturering wordt beheerd door je organisatie\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Factuurperiode\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"AQCoZS\":[\"Boek een gesprek om uw feedback te delen\"],\"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\":[\"Brief\"],\"7Ic570\":[\"Gebruik je eigen LLM\"],\"SkqeF+\":[\"Gebruik je eigen taalmodel via de MCP.\"],\"CzeGfZ\":[\"Blader en deel templates met andere hosts\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Ingebouwd\"],\"G46Sdr\":[\"door \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"IqudIv\":[\"Door dit project te verwijderen, verwijder je alle bijbehorende gegevens. Deze actie kan niet ongedaan worden gemaakt. Weet je het absoluut zeker?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"kan bewerken\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"kan lezen\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\":[\"Cancel current run\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Abonnement opzeggen\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Planning annuleren\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"XzQibx\":[\"Cancel training\"],\"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\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Kaart\"],\"SHhA6n\":[\"catch up \",[\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Toch wijzigen\"],\"U8sdJ+\":[\"Wijzigen in werkruimte-instellingen\"],\"+DEogc\":[\"Taal wijzigen\"],\"7KtLzo\":[\"Organisatierol wijzigen?\"],\"GptGxg\":[\"Wachtwoord wijzigen\"],\"Ts/A07\":[\"Betaalmethode wijzigen\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Rol wijzigen\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Niveau wijzigen\"],\"6TmAJF\":[\"Werkruimtebeheerder wijzigen\"],\"XbjzC/\":[\"Werkruimterol wijzigen?\"],\"mtseAM\":[\"Je eigen rol wijzigen?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\":[\"Chat limit reached\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chatnaam\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je 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\":[\"Je sessie wordt gecontroleerd.\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Kies een abonnement\"],\"4Jd65a\":[\"Kies eerst een organisatie\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"3wV73y\":[\"Plaats\"],\"u8JHrO\":[\"Filters wissen\"],\"V8yTm6\":[\"Zoekopdracht wissen\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"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\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Binnenkort beschikbaar — deel uw feedback\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Communitysjablonen\"],\"Wqc3zS\":[\"Vergelijk\"],\"CfO59/\":[\"Vergelijk & Contrast Insights\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"2Jg8b0\":[\"Gratis proefperiode. €0 omzet.\"],\"bUEr/M\":[\"Gratis proefperiode. Verloopt op \",[\"0\"],\". €0 omzet.\"],\"bD8I7O\":[\"Voltooid\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concreet maken\"],\"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\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"3i8TA+\":[\"Privacywijziging 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\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"mpby9d\":[\"Contact met support\"],\"E5Shm/\":[\"Neem contact op met de beheerder als dit onverwacht was.\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"4b3oEV\":[\"Inhoud\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"JX3KT4\":[\"Contextuele suggesties\"],\"xGVfLh\":[\"Doorgaan\"],\"participant.button.continue\":[\"Doorgaan\"],\"hMqszB\":[\"Doorgaan naar betaling\"],\"F1pfAy\":[\"gesprek\"],\"YyNOE7\":[\"Gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"GXkC8g\":[\"Gesprek vergrendeld, upgrade om aan chat toe te voegen\"],\"RnAZnU\":[\"Gesprek vergrendeld. Upgrade om het toe te voegen.\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"Np+C87\":[\"Gesprekken:\"],\"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\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Rapportinhoud kopiëren\"],\"vAkFou\":[\"Geheim kopiëren\"],\"RGCCrg\":[\"Deellink kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Sjabloon kon niet worden verwijderd\"],\"qFM9uZ\":[\"Er kon geen samenvatting worden gegenereerd. Probeer het opnieuw.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Betalingen konden niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"6x4YxZ\":[\"Could not load the Library.\"],\"S+kUD0\":[\"De rollup kon niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"De hostgids kon niet worden opgeslagen\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"De uitnodigings-e-mail kon niet worden verstuurd. Controleer de e-mailconfiguratie.\"],\"hpYy7A\":[\"Sjabloon kon niet worden bijgewerkt\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/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\":[\"Couldn't load live activity\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Maak een account aan\"],\"lJ+m2/\":[\"Maak een account aan om deel te nemen\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"T7gFri\":[\"Nieuwe organisatie aanmaken\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"uVzvzz\":[\"Nu aanmaken\"],\"55yNvT\":[\"Organisatie aanmaken\"],\"vPAex+\":[\"Wachtwoord aanmaken\"],\"Q7h9s/\":[\"Project aanmaken\"],\"bsfMt3\":[\"Maak rapport\"],\"A5hiCy\":[\"Template aanmaken\"],\"s7XwOU\":[\"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\"],\"/iFtGl\":[\"Aangemaakt \",[\"createdDate\"]],\"NCIYDF\":[\"Aangemaakt door\"],\"45O6zJ\":[\"Gemaakt op\"],\"QxmQob\":[\"Aanmaken in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Avatar bijsnijden\"],\"udBqWc\":[\"Afbeelding bijsnijden\"],\"8LMgB6\":[\"Logo bijsnijden\"],\"6dfVdc\":[\"Logo bijsnijden\"],\"yOrQ4N\":[\"Huidige logo\"],\"Pn2B7/\":[\"Huidig wachtwoord\"],\"A+zoTy\":[\"Huidig abonnement\"],\"a+EVO+\":[\"Huidig tarief\"],\"bfu5HZ\":[\"aangepast\"],\"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.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Pas de structuur van uw rapport aan. Deze functie komt binnenkort.\"],\"TNZKpI\":[\"Gevaar\"],\"Zz6Cxn\":[\"Gevarenzone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? You can ask them to send it again later.\"],\"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)\"],\"uRo+u9\":[\"Uitgesteld naar een eigen beoordeeld issue\"],\"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\"],\"948GTz\":[\"Aangepast onderwerp verwijderen\"],\"mp235G\":[\"Project verwijderen\"],\"++iDlT\":[\"Verwijder project\"],\"rUWrSE\":[\"Rapport verwijderen\"],\"MlrelG\":[\"Rapport verwijderen\"],\"qr0gpK\":[\"Tag verwijderen\"],\"DFjdv0\":[\"Template verwijderen\"],\"NUXYj2\":[\"Dit project in \",[\"0\"],\" verwijderen? Alle gesprekken en gegevens worden definitief verwijderd.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Deze werkruimte verwijderen\"],\"ooWc3n\":[\"Deze werkruimte verwijderen. Leden verliezen direct toegang en alle gesprekken en gegevens worden definitief verwijderd.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane kan fouten maken. Controleer antwoorden altijd even.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane draait op AI. Check de antwoorden extra goed.\"],\"QMogcD\":[\"Reactie\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Beschrijf hoe dit template nuttig is...\"],\"Fs/0D5\":[\"Beschrijf wat de taalmodel moet extraheren of samenvatten uit het gesprek...\"],\"Nu4oKW\":[\"Beschrijving\"],\"Uf+1DF\":[\"Doelwerkruimte\"],\"ozaega\":[\"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.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Deze werkruimte weggooien?\"],\"H6Ma8Z\":[\"Korting\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Vindbaar in deze organisatie\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Contextuele suggesties in de chat tonen\"],\"pfa8F0\":[\"Weergavenaam\"],\"vU/Hht\":[\"Distributie\"],\"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?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Klaar\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"SCWfsz\":[\"Alle transcripties downloaden\"],\"5154Ap\":[\"Download alle transcripten\"],\"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\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"9nchXg\":[\"bijv. Klant Alpha\"],\"o8kQWN\":[\"bijv. Klant Alpha, Q1-onderzoek\"],\"Ys/6OK\":[\"bijv. Onboardinggesprekken met klanten, Q1-productonderzoek\"],\"MR17iW\":[\"bijv. Klimaatluisteren, Q1-onderzoek\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"v9eY8A\":[\"bijv. morgen om 9:00\"],\"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.\"],\"5oD9f/\":[\"Eerder\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"bewerken\"],\"ePK91l\":[\"Bewerken\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"Y/3VME\":[\"Aangepast onderwerp bewerken\"],\"VFvVc6\":[\"Edit details\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Bewerkingsmodus\"],\"niSWGL\":[\"Opties bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"gGx5tM\":[\"Bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"E-mailadres\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Mail Pauline\"],\"LimKOG\":[\"E-mailverificatie\"],\"wwiTff\":[\"Email verificatie\"],\"QdCcsg\":[\"E-mailverificatie | dembrane\"],\"2eGHO+\":[\"Email verificatie | dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji getoond naast het onderwerp bijvoorbeeld 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dashboard.dembrane.feature.verify.description\":[\"Schakel deze functie in om deelnemers \\\"resultaten\\\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Voer het huidige wachtwoord in\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"VpwcSk\":[\"Voer het nieuwe wachtwoord in\"],\"FTDAhZ\":[\"Enter start een nieuwe chat. Je eerdere chats blijven hieronder staan.\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"od7Yaj\":[\"Enter om te versturen, Shift+Enter voor een nieuwe regel\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"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\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Iedereen kan het vinden. Admins doen direct mee, leden kunnen het aanvragen.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Iedereen in \",[\"0\"],\" kan dit project vinden en openen.\"],\"PwqyQw\":[\"Iedereen in je organisatie\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"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\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"2KAI4N\":[\"CSV exporteren\"],\"tZXz25\":[\"Extend 24h\"],\"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\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"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\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"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.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"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\":[\"Failed to update settings\"],\"S1McZh\":[\"Kan avatar niet uploaden\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het controleren van de e-mailstatus. Probeer het opnieuw.\"],\"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\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"3AFOMQ\":[\"Filter by name or id\"],\"+FLjBo\":[\"Filter op organisatie-id\"],\"MRk67a\":[\"Vind tegenstrijdigheden en voeg volgende vragen voor\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"In/BVz\":[\"Betaling afronden\"],\"Gt4mS+\":[\"Rond het instellen van je abonnement af\"],\"4dQFvz\":[\"Voltooid\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"Voornaam\"],\"kODvZJ\":[\"Voornaam\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus je rapport (optioneel)\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"Voor specifieke compliance-eisen, <0>bel ons voor een offerte.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"Voor intern gebruik\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"Voor facturen, een gedeeld contract, om een samenwerking te bespreken of voor iets op maat, mail <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"Voor jou\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Prognose\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Gratis\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Gratis, alleen-lezen. Ziet projecten, gesprekken en rapporten. Kan niet chatten of rapporten genereren.\"],\"nLC6tu\":[\"Frans\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"vanaf\"],\"wX2Tuz\":[\"van \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"3qkggm\":[\"Volledig scherm\"],\"Weq9zb\":[\"Algemeen\"],\"ziAjHi\":[\"Genereren\"],\"EIdJgG\":[\"Nieuw rapport genereren\"],\"oADIO6\":[\"Genereer een nieuw rapport. Eerdere rapporten blijven beschikbaar.\"],\"QsUhrf\":[\"Rapport genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"MWSGhX\":[\"Bibliotheek genereren\"],\"5SWGxv\":[\"Nu genereren\"],\"GWUJ9X\":[\"Nu genereren\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"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\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"DXr0zk\":[\"Volledig scherm\"],\"iWpEwy\":[\"Ga naar home\"],\"y0SPQU\":[\"Naar facturering\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Naar dashboard\"],\"7aC3FA\":[\"Ga naar feedbackportaal\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Ga naar Instellingen\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Toekennen\"],\"uO6Zmx\":[\"Changemaker-proefperiode toekennen\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Rasterweergave\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"uMjvI3\":[\"Het rapport begeleiden\"],\"myXGZW\":[\"Begeleid\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"0zo6ap\":[\"Heb je een training afgerond?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help ons te vertalen\"],\"1zZ1IK\":[\"Hoi\"],\"v6a4UH\":[\"Hoi \",[\"firstName\"]],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"CdQHTK\":[\"Details verbergen\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Projecten verbergen\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"Gebruik met hoog risico vereist eerst een training\"],\"tn75xn\":[\"Specifiek Concept markeren\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Hostgids\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Uren\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"Hoe Vragen werkt en wat je ermee kunt.\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"Ik heb de <0>voorwaarden gelezen en ga ermee akkoord\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"kSoYmo\":[\"Als je je bij een bestaande organisatie wilt aansluiten, maak dan geen nieuwe aan. Je kunt hier per ongeluk terechtkomen door:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"NoNwIX\":[\"Inactief\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portallink opnemen\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"hTwp/C\":[\"Inbegrepen uren opgebruikt\"],\"LYjZNH\":[\"Inbegrepen uren deze maand opgebruikt\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"overgenomen van organisatie\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Begin\"],\"fr30H3\":[\"Innovator of hoger\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"NxHkkp\":[\"Instructies\"],\"MSVCjk\":[\"Instructies voor het genereren van het verificatieresultaat\"],\"fN5mkr\":[\"Integraties en export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"B2Tpo0\":[\"Ongeldige e-mail\"],\"R7p7+o\":[\"Ongeldige uitnodigingslink\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"KhBSE/\":[\"Uitnodiging\"],\"oFgGAT\":[\"Er staan uitnodigingen voor je klaar. Accepteer om aan de slag te gaan.\"],\"MFKlMB\":[\"Uitnodigen\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Uitnodiging afgewezen\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Nodig leden uit om samen te werken aan projecten en gesprekken in deze werkruimte.\"],\"3iGwJw\":[\"Alleen op uitnodiging\"],\"W6+yFb\":[\"Mensen uitnodigen\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Nodig mensen uit voor \",[\"orgName\"]],\"lOslCN\":[\"Uitnodiging opnieuw verstuurd\"],\"7Nlmb6\":[\"Uitnodiging ingetrokken\"],\"gfMuvV\":[\"Uitnodiging verstuurd\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Uitnodiging verstuurd.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Nodig uit voor een werkruimte, of alleen voor de organisatie.\"],\"RXHza3\":[\"Nodig uit voor deze werkruimte, of alleen voor de organisatie.\"],\"vbjOm1\":[\"Invite your organisation\"],\"d+Y+rP\":[\"Nodig je team uit\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"uitgenodigd door \",[\"0\"]],\"voFazH\":[\"Uitnodigingen verlopen na 7 dagen. Vraag \",[\"inviterName\"],\" om een nieuwe te versturen.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Factuurbedrag, EUR\"],\"Nv38Sl\":[\"Factuur geregistreerd als betaald.\"],\"DTZqjh\":[\"Offline gefactureerd, geen Mollie-machtiging.\"],\"F7nA5/\":[\"Facturen\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Facturatie\"],\"1xMiTU\":[\"IP-adres\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"5dxEAB\":[\"Het lijkt erop dat u nog geen rapport voor dit project heeft. Genereer er een om een overzicht van uw gesprekken te krijgen.\"],\"JsWQuM\":[\"Het lijkt erop dat je nog geen rapport hebt voor dit project. Genereer er een voor een overzicht van je gesprekken. Je kunt het rapport optioneel richten op een specifiek onderwerp.\"],\"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.\"],\"Lj7sBL\":[\"Italiaans\"],\"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.\"],\"GaQMyV\":[\"Aansluiten \",[\"0\"],\" op dembrane\"],\"q1E+AA\":[\"Lid worden van \",[\"0\"],\"?\"],\"agqQk1\":[\"Word lid van \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | dembrane\"],\"cCweOd\":[\"Lid worden als admin\"],\"TCEFVm\":[\"Lid worden als admin?\"],\"j4IJHz\":[\"Eerst lid worden\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Word lid van onze Slack-community\"],\"4fhsRZ\":[\"Word lid van de Slack-community\"],\"s/jfrO\":[\"Word lid van deze organisatie om werkruimtes te ontdekken en samen te werken met je 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\":[\"Word lid van deze werkruimte om samen te werken aan gesprekken, inzichten te delen en samen rapporten te maken.\"],\"2gMuHR\":[\"Lid geworden\"],\"IKAMA9\":[\"Lid geworden van \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Toegevoegd als admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Ga naar\"],\"uocCon\":[\"Gewoon een momentje\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"Net zojuist\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"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\":[\"Keep \",[\"tier\"],\" until a date\"],\"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\":[\"Keep license\"],\"uHdpk+\":[\"Mijn abonnement behouden\"],\"Qzyw+2\":[\"In behandeling houden\"],\"II//jO\":[\"Keep this canvas fresh\"],\"o9Ly7X\":[\"Houd deze werkruimte alleen op uitnodiging.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Taal\"],\"G3qeSw\":[\"Laatste activiteit \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Vorige maand\"],\"1ZaQUH\":[\"Achternaam\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Laatste\"],\"9Fp9Lx\":[\"Laatste gesprekken\"],\"wv+L3B\":[\"Laatste rapport\"],\"zwWKhA\":[\"Meer informatie\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Werkruimte verlaten\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Rechtsgrondslag\"],\"7kyKF5\":[\"Rechtsgrondslag bijgewerkt\"],\"nc/jNe\":[\"Naam rechtspersoon\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"8zGcQ2\":[\"Laten we je eerste gesprek horen.\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"gkv8iG\":[\"Kenteken\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenties\"],\"/NleHL\":[\"Licenties verleend\"],\"JbbFA4\":[\"Levenslange limiet\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link gekopieerd\"],\"LIj2/f\":[\"Link naar de privacyverklaring van uw organisatie die aan deelnemers wordt getoond\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Gesprekken op een rij zetten\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent uitvoermodus\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording counts\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"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.\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Meer laden\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Bezig met laden\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Leden laden\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Microfoons laden...\"],\"Xan9/v\":[\"Projecten laden...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"eRq8Ag\":[\"Werkruimtes laden…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"G2fuEb\":[\"Vergrendeld\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Uitloggen en het uitgenodigde e-mailadres gebruiken\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Inloggen\"],\"LM/dWU\":[\"Inloggen | dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo verwijderd\"],\"MjfaMh\":[\"Logo bijgewerkt\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Uitloggen\"],\"FTbR8B\":[\"Langste eerst\"],\"jWXlkr\":[\"Langste eerst\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Maak het privé om alleen met specifieke mensen te delen. Privéprojecten vereisen het innovator-abonnement of hoger.\"],\"icpEdc\":[\"Privé maken\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Zichtbaar maken voor de hele werkruimte\"],\"wckWOP\":[\"Beheren\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Leden beheren\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Facturatie van organisatie beheren\"],\"IsFOAV\":[\"Manage team\"],\"mrenWs\":[\"Templates beheren\"],\"2VeSf/\":[\"Manage training\"],\"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\":[\"Mark as attended\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"5GPcf9\":[\"Markeren als ongelezen\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Factuur markeren als betaald\"],\"AHBWqd\":[\"Mark training completed\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Lid verwijderd\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Lid om te promoveren\"],\"GnG6Oy\":[\"leden\"],\"wlQNTg\":[\"Leden\"],\"v8o+Rn\":[\"Geheugen\"],\"u418B7\":[\"Herinnering verwijderd\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mijn\"],\"b85Pfh\":[\"Minimaal 8 tekens\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Maandelijkse facturatie\"],\"ZTjlaD\":[\"Maandelijkse reset van verbruik\"],\"f8jrkd\":[\"meer\"],\"JcD7qf\":[\"Meer acties\"],\"zMx0gF\":[\"Meer templates\"],\"y1ypMV\":[\"Populairst\"],\"7BgchI\":[\"Meest gebruikt\"],\"QWdKwH\":[\"Verplaatsen\"],\"3qp1VW\":[\"\\\"\",[\"0\"],\"\\\" verplaatsen naar \",[\"targetWorkspaceName\"],\"? Leden van de huidige werkruimte verliezen hun toegang.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[[\"0\"],\" van \",[\"1\"],\" naar \",[\"tier\"],\" verplaatsen? Een downgrade beperkt functies meteen.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Meerdere talen\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Moet minstens 10 minuten in de toekomst zijn\"],\"5hOInR\":[\"Mijn toegang\"],\"en+4fS\":[\"Mijn sjablonen\"],\"+O1YmH\":[\"Mijn templates\"],\"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\":[\"Named ways of working your team can reuse.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"u2uElg\":[\"Nieuwe gesprekken toegevoegd sinds dit rapport\"],\"XojC2V\":[\"Nieuwe gesprekken beschikbaar — werk je rapport bij\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"3RC8Um\":[\"Er zijn nieuwe gesprekken toegevoegd sinds je laatste rapport. Genereer een bijgewerkt rapport om ze op te nemen. Je vorige rapport blijft beschikbaar.\"],\"QgiaQ8\":[\"Nieuwe datum en tijd\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"Nieuwe organisatie\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"Nieuw wachtwoord\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"gKi+a/\":[\"Nieuw project\"],\"+VXUp8\":[\"Nieuw project\"],\"wzIR5D\":[\"Nieuw project | dembrane\"],\"z6wcHz\":[\"Nieuw rapport\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"Nieuw niveau\"],\"curoK5\":[\"Nieuwe werkruimte\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Nieuwste\"],\"cTUByn\":[\"Nieuwste eerst\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"1vEADD\":[\"Volgende factuur\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"Nee\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"oPoLg+\":[\"Geen toegang\"],\"VHfLAW\":[\"Geen accounts\"],\"riwuXX\":[\"Geen acties gevonden\"],\"aXFOuf\":[\"Nog geen activiteit\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"MGOMoh\":[\"Geen chats gevonden. Druk op Enter om dit als nieuwe chat te vragen.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"S8FeaY\":[\"Nog geen community templates. Deel de jouwe om te beginnen.\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"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.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"YnWe3z\":[\"Nog geen gesprekken.\"],\"GKpO3x\":[\"Nog geen gesprekken. Je kunt nu een rapport plannen en gesprekken worden opgenomen zodra ze zijn toegevoegd.\"],\"ax9iz4\":[\"Nog geen templates. Maak er een aan om te beginnen.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"geen vervaldatum\"],\"7Ad0TM\":[\"Geen expliciete delingen. Werkruimtebeheerders hebben nog steeds toegang.\"],\"Fb9N7E\":[\"Nog geen extern geleide organisaties.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"Geen verdere kosten\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"wuFH13\":[\"Er zijn geen uitnodigingen verstuurd. Bekijk de lijst hieronder.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"Geen logo ingesteld. De standaard van dembrane wordt gebruikt.\"],\"4TVVsS\":[\"Geen resultaten\"],\"IntpVZ\":[\"Geen resultaten gevonden\"],\"JuBV6F\":[\"Nog geen leden.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team yet.\"],\"ZwZtAi\":[\"Nog niemand in deze organisatie.\"],\"/+Nxaa\":[\"Nog niemand gedeeld\"],\"sAu4UE\":[\"Nog niemand in de werkruimte.\"],\"/ksKg9\":[\"Geen organisatierol. Toegang via werkruimte-uitnodigingen.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"Geen betalingen voldoen aan het filter.\"],\"iV2Or0\":[\"Nog geen betalingen.\"],\"cqfchi\":[\"Geen pdf beschikbaar voor deze factuur.\"],\"qPbs1l\":[\"Geen openstaande uitnodigingen\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"Geen projectactiviteit deze periode.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"Geen projecten gevonden.\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"Nog geen verwijsafspraken.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"1iQvuD\":[\"Nog geen rapporten\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"pm345e\":[\"Geen selecteerbare gesprekken\"],\"rXndZR\":[\"Geen specifieke focus\"],\"klvSBe\":[\"No subscription\"],\"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}\"],\"kaDUQs\":[\"Nog geen templates. Maak je eigen template of blader door Alle templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"Nog geen trainingen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"/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.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"Z9sn1g\":[\"No version yet\"],\"+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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"Er worden op dit moment geen werkruimtes uit deze organisatie met je gedeeld.\"],\"XiqbH/\":[\"Nog geen werkruimtes in deze organisatie.\"],\"pxmfsY\":[\"Geen werkruimtes komen overeen met \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"xZSB25\":[\"Niets gepland\"],\"PjeFWm\":[\"Geen geldig e-mailadres.\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"PBxg/E\":[\"Niet nu\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Wordt niet verlengd\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Niet ingesteld\"],\"vbpAZQ\":[\"Niet getraind\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Nu\"],\"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 are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Waarnemers zijn alleen beschikbaar in werkruimtes voor een externe klant. Kies alleen werkruimtes van externe klanten, of kies een andere rol.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Uit\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oudste eerst\"],\"9+6THi\":[\"Oudste eerst\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"Aan\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"Eén maand Changemaker op dit account, gratis. Gaat na afloop automatisch terug naar Free.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"Eén cijfer\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"Eén symbool\"],\"MKUgK1\":[\"Eén hoofdletter\"],\"qitPxp\":[\"Eenmalig\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Actief\"],\"conversation.ongoing\":[\"Actief\"],\"yAVA7C\":[\"Lopende gesprekken\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"Dw7aQc\":[\"Alleen van toepassing wanneer het rapport is gepubliceerd\"],\"a//PzZ\":[\"Verander deze instelling alleen in overleg met de verantwoordelijke persoon(nen) voor de bescherming van gegevens binnen uw organisatie.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Alleen uitgenodigde deelnemers. Organisatiebeheerders kunnen het nog steeds vinden en deelnemen.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"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.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them to promote you first.\"],\"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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"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.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Accountacties openen\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Alles openen\"],\"yCDcIF\":[\"Open chatdocumentatie\"],\"uIKeEf\":[\"Gesprek openen\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentatie\"],\"NRLF9V\":[\"Open documentatie\"],\"QTXl9z\":[\"Feedbackportaal openen\"],\"aRGGej\":[\"Open voor deelname\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"CD3rbs\":[\"Hostgids openen\"],\"JoAjm8\":[\"Open host gids\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Mollie-dashboard openen\"],\"iZD9CK\":[\"Organisatie openen\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open de oude chatervaring\"],\"828iLy\":[\"Open de oorspronkelijke uitnodigings-e-mail en klik daar op de link, of vraag de uitnodiger om een nieuwe uitnodiging te sturen.\"],\"TcQzrj\":[\"Open voor de organisatie\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open voor de werkruimte\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Werkruimteacties openen\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optioneel\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optioneel (valt terug naar Engels)\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"0OspM/\":[\"Optioneel. Waar deze werkruimte voor is.\"],\"0zpgxV\":[\"Opties\"],\"BzEFor\":[\"of\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Of liever direct chatten?\"],\"1h45Hu\":[\"Of schrijf uw eigen\"],\"v2MBz4\":[\"Alleen organisatie\"],\"LB3Kje\":[\"Organisatie\"],\"sezvMj\":[\"Organisatie | dembrane\"],\"9L7xZr\":[\"Organisatieaccount\"],\"fGRmCP\":[\"organisatiebeheerder\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Andere hosts kunnen je template zien en kopiëren. Je kunt het op elk moment intrekken.\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Facturering voor overschrijding van toepassing\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Eigendom\"],\"OwPQJt\":[\"Eigendom is vergrendeld. Neem contact op met support om over te dragen.\"],\"HSAzUy\":[\"Eigenaar-organisatie\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v4nCHK\":[\"Betaald\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"wSuTzp\":[\"Partneroverdracht. Schrijft billed_to_team_id en informeert beide organisaties.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"R7v3cS\":[\"Plak een organisatie-id om de lijst te beperken\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"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\":[\"Pending access requests\"],\"V1wW5o\":[\"Actie vereist\"],\"sU2oO4\":[\"Openstaande uitnodigingen\"],\"GC714A\":[\"Openstaande uitnodigingen | dembrane\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"personen\"],\"1wdjme\":[\"Personen\"],\"t9qtWL\":[\"Personen met toegang\"],\"Uoqcz2\":[\"Resultaten per ontvanger:\"],\"hkffer\":[\"Toegang per werkruimte\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Procent\"],\"NtQvjo\":[\"Periode\"],\"ygzsQX\":[\"Permanent. Verwijdert alle gesprekken en data.\"],\"D0meML\":[\"persoon\"],\"OZdaTZ\":[\"Person\"],\"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\"],\"Cu/2SC\":[\"Kies een lid\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Kies een account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Kies minstens één werkruimte om de uitnodiging te versturen.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Kies datum en tijd\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Kies er een\"],\"fwmBX+\":[\"Kies een of meer invalshoeken\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilotlimiet bereikt\"],\"qVkGWK\":[\"Vastpinnen\"],\"u8qC4w\":[\"Project vastpinnen\"],\"S+WiJ3\":[\"Pin sjablonen hier vast voor snelle toegang.\"],\"lepv9z\":[\"Vastpinnen in chatbalk\"],\"fr2ggG\":[\"vastgepind\"],\"kNiQp6\":[\"Vastgezet\"],\"LdWQ+0\":[\"Vastgepind is vol (max 5)\"],\"EC6BHi\":[\"Vastgezette projecten\"],\"RimR35\":[\"Vastgepinde sjablonen\"],\"Atb9XB\":[\"Vastgepind in chatbalk\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan eindigt\"],\"Iqh0Uv\":[\"Gepland\"],\"lWy5a1\":[\"Plannen\"],\"PKrSWk\":[\"Accepteer de voorwaarden om door te gaan.\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"ZhyvmA\":[\"Log in om door te gaan.\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres controleren.\"],\"6MncU0\":[\"plus werkruimtebeheerders\"],\"rhEYMw\":[\"PNG, JPEG of WebP. Wordt bijgesneden tot een cirkel.\"],\"gL/sdV\":[\"Populair\"],\"uRFMMc\":[\"Portal inhoud\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portaalbewerker\"],\"qVypVJ\":[\"Portaal-editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"Tx36sk\":[\"Portallink\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portaaloverzicht\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postcode\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Liever de oude chat? Start een Specifieke details-chat\"],\"np1J1t\":[\"Liever direct chatten? <0>Boek een gesprek met mij\"],\"Q6hhn8\":[\"Voorkeuren\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"a7u1N9\":[\"Prijs\"],\"Ub/0bY\":[\"Prijzen zijn exclusief btw.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"S8ugMC\":[\"Rapport afdrukken\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Beveiliging\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy verklaring\"],\"zwBp5t\":[\"Privé\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Privé · alleen genodigden kunnen dit zien\"],\"i4YTOL\":[\"Privéproject\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Privéwerkruimte\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Privéwerkruimtes\"],\"CLI4vR\":[\"Privé, alleen ik\"],\"1ihBUA\":[\"Privé. Voeg mensen toe om het te delen.\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Projectacties\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project aangemaakt\"],\"Hie0VV\":[\"Project aangemaakt\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Projectstandaard: ingeschakeld. Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"rmmNSG\":[\"Projectstandaarden\"],\"xJ758z\":[\"Projectstandaarden\"],\"aVOwd+\":[\"Project verwijderd\"],\"7TYa2T\":[\"Project goal\"],\"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\":[\"project overview\"],\"hjaZqm\":[\"Project Overzicht\"],\"q0+yfq\":[\"Project Overzicht | dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Instellingen\"],\"7NmoFz\":[\"Verwacht maandtotaal\"],\"gitVS9\":[\"Verwacht jaartotaal\"],\"M9H+/G\":[\"projecten\"],\"+0B+ue\":[\"Projecten\"],\"DK5DV3\":[\"Projecten | dembrane\"],\"B1WDxD\":[\"Projecten binnen organisatie · \",[\"0\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projecten Home\"],\"uNGCZL\":[\"Projecten verplaatst\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promoveren\"],\"0jyUOa\":[[\"0\"],\" promoveren tot beheerder van \",[\"1\"],\"?\"],\"otGPYX\":[\"Promoveer een lid tot beheerder. Bestaande beheerders houden hun rol.\"],\"Eh2amD\":[\"Promoveren tot beheerder\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Naar rato voor de rest van deze factureringsperiode.\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publiceren\"],\"vsX8VJ\":[\"Publiceer dit rapport eerst om de portallink te tonen\"],\"GwOmnT\":[\"Publiceer dit rapport om printen mogelijk te maken\"],\"ZSi2AK\":[\"Publiceer dit rapport om delen mogelijk te maken\"],\"IHzoSN\":[\"Publiceer dit rapport om een deellink te krijgen\"],\"u3wRF+\":[\"Gepubliceerd\"],\"4R3R74\":[\"Gepubliceerd in community\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"9iShh/\":[\"Snelle toegang (max 5)\"],\"utRRxm\":[\"Snelle toegang is vol (max 5)\"],\"dN0qso\":[\"Snelle toegang:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[[\"0\"],\" stappen tegelijk uitgevoerd\"],\"iZuzSU\":[\"Snelheidslimiet bereikt\"],\"Z7tUbi\":[\"Beoordeel deze prompt:\"],\"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 →\"],\"6pSHJ5\":[\"Alleen-lezen\"],\"WU7BCa\":[\"Samenvatting van \",[\"0\"],\" lezen\"],\"tFk6c8\":[\"Transcript van \",[\"0\"],\" lezen\"],\"E3kwAc\":[\"Een gesprekssamenvatting lezen\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Een transcript lezen\"],\"DYyFO2\":[\"Projectcontext lezen\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"DqXVNZ\":[\"Klaar om te genereren\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reden\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recente betalingen over alle accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.s3check.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Opnemen blijft werken, dus je deelnemers ondervinden er niets van.\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Lopende gesprekken vernieuwen\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Vernieuwen…\"],\"6exX+8\":[\"Opnieuw genereren\"],\"844H5I\":[\"Bibliotheek 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\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevantie\"],\"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\"],\"hTDMBB\":[\"Pagina herladen\"],\"vqD7S+\":[\"Gebruikers herinneren om te verifiëren voordat ze klaar zijn\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Verwijderen\"],\"w61W3L\":[[\"0\"],\" verwijderen\"],\"G0aZvo\":[[\"0\"],\" verwijderen uit deze werkruimte? Ze verliezen toegang tot alle projecten erin.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Avatar verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"tOkPHm\":[\"Uit chat verwijderen\"],\"T/pF0Z\":[\"Verwijderen uit favorieten\"],\"1G/+Gj\":[\"Uit organisatie verwijderen\"],\"18PmZk\":[\"Uit organisatie verwijderen?\"],\"hHTkR9\":[\"Verwijderen uit snelle toegang\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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?\"],\"nVEhnc\":[\"Verwijderd uit organisatie\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"6PsaMr\":[\"Chat hernoemen\"],\"TBZOgu\":[\"Verlenging\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reactie prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Rapport\"],\"UZ6fKH\":[\"Rapportacties\"],\"e/MQa5\":[\"Rapport wordt al gegenereerd\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"hh/mvZ\":[\"Rapportgeneratie geannuleerd\"],\"sSy8vA\":[\"Rapport wordt gegenereerd...\"],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"v7O77U\":[\"Rapportgeneratie is geannuleerd. Je kunt hieronder een nieuw rapport starten.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"M9snPp\":[\"Rapport gepland\"],\"mgTmvC\":[\"Rapportstructuur\"],\"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\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"cH8Bhd\":[\"Aanvraag goedgekeurd\"],\"ViqcVt\":[\"Aanvraag afgewezen\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"8H5nRH\":[\"Wachtwoord reset aanvragen | dembrane\"],\"1RVBJe\":[\"Aanvraag verzonden\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Aangevraagde en geplande trainingen. Markeer een training als voltooid om elke deelnemer een licentie van een jaar te geven.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Herplannen\"],\"6eIR/n\":[\"Opnieuw plannen naar\"],\"ZSTojU\":[\"Uitnodiging opnieuw versturen\"],\"8WtTog\":[\"Uitnodiging opnieuw versturen\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"I9EnzM\":[\"Filters resetten\"],\"kvDiMS\":[\"Maandelijks gebruik resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"9uplIY\":[\"Wachtwoord resetten | dembrane\"],\"GdFnED\":[\"De geregistreerde uren van deze cyclus voor \",[\"0\"],\" resetten? Dit wordt vastgelegd in het auditlogboek.\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"8xXw6q\":[\"Gebruik resetten\"],\"s+MGs7\":[\"Bronnen\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"1K1kvB\":[\"Abonnement hervatten\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"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\":[\"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\":[\"Controleer voordat je aanmaakt.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"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\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Uitnodiging intrekken\"],\"HZn3qT\":[\"Revoke license\"],\"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\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rijen per pagina\"],\"3JjdaA\":[\"Uitvoeren\"],\"IqCtR/\":[\"Uitvoeringsstatus:\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Verkoopfactuur uitgegeven.\"],\"tfDRzk\":[\"Opslaan\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Opslaan als template\"],\"gjqGP0\":[\"Factuurgegevens opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"qjHQoH\":[\"Korting opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"RgyKxd\":[\"Snelle toegang opslaan\"],\"5dVjYt\":[\"Template opslaan\"],\"zaYZWH\":[\"Opslaan in mijn templates\"],\"idD8Ev\":[\"Opgeslagen\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Opslaan...\"],\"JnhbnC\":[\"Scan of klik op de QR-code om het feedbackportaal te openen\"],\"yxrvvl\":[\"Scan of klik om het feedbackportaal te openen\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Plannen\"],\"QS1Nla\":[\"Later inplannen\"],\"wCGy0o\":[\"Rapport inplannen\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Ingepland\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Zoek en selecteer de gesprekken voor deze chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"QU2qoc\":[\"Zoek op naam of e-mail\"],\"6/qy61\":[\"Zoek op partner, klant, werkruimte\"],\"l9vi1F\":[\"Zoek mensen\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Zoek project of werkruimte\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"Ix2UwQ\":[\"Zoek projecten, organisaties, werkruimtes, instellingen…\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Zoekresultaten\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Zoek werkruimtes\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"mHOLEz\":[\"Gesprekken doorzoeken\"],\"rI5Wda\":[\"Gesprekken doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"hoK9sq\":[\"Transcripten doorzoeken\"],\"/DtZhN\":[\"Transcripten doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Zoeken…\"],\"MpFIca\":[\"plekken\"],\"grt0Pu\":[\"Plekken\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Plekken vol\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"ruKb0q\":[\"Bekijk abonnementen\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"Tot snel\"],\"XZRu52\":[\"Ziet gebruik en facturen. Geen toegang tot projecten of content.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segmenten\"],\"rG3WVm\":[\"Selecteren\"],\"02ePaq\":[[\"0\"],\" selecteren\"],\"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\":[\"Select conversation\"],\"5z/6Uk\":[\"Gesprekken selecteren\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"G4qJaj\":[\"Selecteer gesprekken om door te gaan\"],\"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\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Verzenden\"],\"iJyjJ8\":[[\"0\"],\" uitnodigingen versturen\"],\"3mlq2q\":[\"Stuur een bericht om een agentisch uitvoeringsproces te starten.\"],\"Hvnq/n\":[\"Uitnodiging versturen\"],\"FCfEtD\":[\"Uitnodigingen versturen\"],\"4k2VbT\":[\"Verzoek versturen\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Verstuurd\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[[\"sentCount\"],\" van \",[\"0\"],\" verstuurd. Bekijk de lijst hieronder.\"],\"VTmyvi\":[\"Gevoel\"],\"XyiDbI\":[\"Apart (klant)\"],\"OnmeuT\":[\"Scheid met komma's, spaties of nieuwe regels.\"],\"NprC8U\":[\"Sessienaam\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Instellen als beheerd\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Werkruimte instellen\"],\"J4TuIW\":[\"Stel je eerste organisatie in\"],\"aBwEIZ\":[\"Stel je organisatie in\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Stel je werkruimte in | dembrane\"],\"2zDY/H\":[\"Bepaal wie het kan zien en kan deelnemen.\"],\"A6EhcS\":[\"We zetten alles voor je klaar\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"BVRW7i\":[\"Instellingen | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Instellen\"],\"Z8lGw6\":[\"Delen\"],\"OuFYHU\":[\"Rapport delen\"],\"nzT4VD\":[\"Deel het project, volg live activiteit en spring vanaf één plek naar de belangrijkste tools.\"],\"/XNQag\":[\"Dit rapport delen\"],\"lRZMol\":[\"Delen met community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Deel met iemand\"],\"dNCDbY\":[\"Delen met de community\"],\"bM7Rp3\":[\"Deel met werkruimte\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"nnWGzO\":[\"Deel uw ideeën met ons team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Deel je stem\"],\"4o0klJ\":[\"Deel je stem door de QR-code te scannen\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"jqnSi6\":[\"Gedeeld met\"],\"YJJJo3\":[\"Gedeeld met \",[\"0\"]],\"zIgU4M\":[\"Gedeeld met \",[\"0\"],\" en \",[\"overflow\"],\" anderen\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Kortste eerst\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"ZptNUh\":[\"Toon \",[\"hidden\"],\" meer\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Toon een link waarmee deelnemers kunnen bijdragen\"],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"9Resvw\":[\"Toon details\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Toon duur\"],\"YbxwRo\":[\"Gegenereerde suggesties tonen\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Toon projecten\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"RpOvMh\":[[\"0\"],\" van \",[\"1\"],\" weergegeven\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"8Lpud3\":[\"Uw meest recente voltooide rapport wordt getoond.\"],\"HHR5pX\":[\"Wordt getoond in de organisatiekop en in onderwerpregels van e-mails.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Inloggen met Google\"],\"6Uau97\":[\"Overslaan\"],\"participant.button.verify_prompt.skip\":[\"Overslaan\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack-community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"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.\"],\"zazql1\":[\"Er ging iets mis bij het genereren van je laatste rapport. Je meest recente voltooide rapport wordt getoond.\"],\"2WNFmv\":[\"Er is iets misgegaan bij het genereren van uw rapport.\"],\"a75OAp\":[\"Er ging iets mis bij het genereren van je rapport. Je kunt het hieronder opnieuw proberen.\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"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\"]],\"u7yVRn\":[\"Bronnen:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"vf1Tc/\":[\"Specific Details heeft minstens één gesprek nodig.\"],\"uXsB4R\":[\"Personeel\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"eicGWU\":[\"Alleen personeel\"],\"vtV8C/\":[\"Staff-created\"],\"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\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Opname starten\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Begint\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\":[\"Kom je er nog niet uit? Mail <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"y01Zb9\":[\"Stop this run\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategische Planning\"],\"BVSaId\":[\"Sterk wachtwoord\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Succes\"],\"aG+cH9\":[\"Dynamische suggesties voorstellen op basis van uw gesprek.\"],\"aZJj7n\":[\"Suggesties op basis van je gesprekken\"],\"FyUg+Y\":[\"Suggesties op basis van je gesprekken. Stuur een bericht om het in actie te zien.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"6xSPmn\":[\"Suggested project goal\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"zdF7Nh\":[\"Samenvatting gegenereerd.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"hlaWg4\":[\"Samenvatting opnieuw gegenereerd.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"/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\"],\"S+yFI2\":[\"Supportincident, dubbel geteld upload, enz.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"Systeem\"],\"InGQz2\":[\"Systeemstatus\"],\"N3D6GN\":[\"Tag verwijderd\"],\"OYHzN1\":[\"Trefwoorden\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template toegepast\"],\"JcCDm9\":[\"Sjabloon aangemaakt\"],\"ZTgE3k\":[\"Sjabloon verwijderd\"],\"5OwALL\":[\"Template naam\"],\"1UeZgj\":[\"Template prompt inhoud...\"],\"PQb/If\":[\"Sjabloon bijgewerkt\"],\"iTylMl\":[\"Sjablonen\"],\"4Y5H+g\":[\"Voorwaarden\"],\"qYLZL2\":[\"testmodus\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"De ingebouwde probleemmelder kon niet worden geladen. U kunt ons nog steeds laten weten wat er mis is gegaan via ons feedbackportaal. Het helpt ons problemen sneller op te lossen dan wanneer er geen rapport wordt ingediend.\"],\"gtMB2A\":[\"De ingebouwde probleemmelder kon niet worden geladen. U kunt ons nog steeds laten weten wat er mis is gegaan via ons feedbackportaal. Het helpt ons problemen sneller op te lossen dan wanneer er geen rapport wordt ingediend.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"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.\"],\"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.\"],\"woefOb\":[\"De probleemmelder kon niet worden geladen. Gebruik het feedbackportaal om ons te laten weten wat er mis is gegaan — het helpt ons problemen sneller op te lossen dan wanneer er geen rapport wordt ingediend.\"],\"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\":[\"The methodology is the way this project is set up and guided.\"],\"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.\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"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.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"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.\"],\"J4a6pu\":[\"Their screen is locked or the tab is hidden — recording pauses until they come back.\"],\"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.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het controleren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"D8iLCl\":[\"These changes are applied to your 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.\"],\"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\":[\"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\":[\"Dit gedeelte is voor dembrane-personeel. Denk je dat je toegang zou moeten hebben? Mail dan support@dembrane.com.\"],\"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\":[\"This canvas could not update.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"Deze informatie is anoniem\"],\"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\":[\"This is not saved yet.\"],\"WXWXYi\":[\"Dit is de nieuwe chatervaring\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"BLwPhM\":[\"Dit is niet beschikbaar voor jou\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"2033EA\":[\"Deze link is al gebruikt. Je bent ingelogd en kunt aan de slag.\"],\"MR5ygV\":[\"Deze link is niet meer geldig\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"ktjzjk\":[\"dit lid\"],\"b0F4W5\":[\"this month\"],\"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\":[\"This organisation has no members to train yet.\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"Dit project is zichtbaar voor iedereen in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"Dit project is zichtbaar voor iedereen in de werkruimte.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"Hiermee komt de werkruimte terug bij de gedeelde facturering van je organisatie en wordt de externe data-eigenaar verwijderd.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"ABJz8Q\":[\"This verification prompt is added to your 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.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"mSuhYn\":[\"deze werkruimte\"],\"8b9oJD\":[\"Deze werkruimte heeft de opnamelimiet bereikt. Upgrade om meer audio te uploaden.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"Deze werkruimte zit op een niveau dat geen extra plekken toelaat. Upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"vvEr5j\":[\"Deze werkruimte bestaat niet meer\"],\"+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\":[\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Tijd\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"cklVjM\":[\"Timeline\"],\"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\":[\"Title guidance\"],\"Mozc0C\":[\"Titel of deelnemer\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"Om een nieuwe tag toe te wijzen, maak je deze eerst aan in de portalinstellingen.\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"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\"],\"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\":[\"Training date\"],\"1gL8o6\":[\"Training aangevraagd. We nemen contact op om het in te plannen.\"],\"KxpIJA\":[\"Training vereist voor gebruik met hoog risico\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Trainingsverificatie is hier niet beschikbaar.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainingen\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Werkruimte overdragen aan een andere organisatie\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"lhkaAC\":[\"Proef\"],\"hDv2MY\":[\"Proef- en gratis accounts, niet meegerekend in het betalende totaal.\"],\"0Ux4+O\":[\"Proefperiode toegekend\"],\"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\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"u62wQ4\":[\"Try again in a moment.\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"sZgR8D\":[\"Try it\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Oekraïens\"],\"dubg//\":[\"Oekraïens (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Onder je organisatie\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"wF2wqQ\":[\"Onbekende datum\"],\"rIOkYf\":[\"Onbekend lid\"],\"1MTTTw\":[\"Onbekende reden\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Onbeperkt aantal uren\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Losmaken\"],\"vSdeRU\":[\"Maak eerst een project los (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Maak eerst een project los (max 3)\"],\"dFIzZ6\":[\"Losmaken van chatbalk\"],\"dx+iaL\":[\"Project losmaken\"],\"KyKziT\":[\"Intrekken uit community\"],\"KuVpz+\":[\"Ongelezen\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"nOxIVE\":[\"Untagged\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Naamloos\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Naamloos gesprek\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Naamloos rapport\"],\"+TYrZZ\":[\"Tot \",[\"0\"],\" deelnemers\"],\"RHUiSf\":[\"Tot \",[\"0\"],\" deelnemers zijn inbegrepen.\"],\"EkH9pt\":[\"Bijwerken\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Bijwerken rapport\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Bijgewerkt\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Bijgewerkt \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgraden\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"yM+69W\":[\"Upgraden naar \",[\"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\":[\"Upgraden om te ontgrendelen\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Audio uploaden\"],\"AIGPM8\":[\"Avatar uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Uploadlimiet bereikt. Upgrade je werkruimte.\"],\"4vsWBY\":[\"Upload vergrendeld\"],\"QfiWpJ\":[\"Logo uploaden\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"7FaY4u\":[\"Gebruik\"],\"6YK+1q\":[\"Gebruik · \",[\"0\"]],\"9TZVmX\":[\"Gebruik en facturering\"],\"589hpo\":[\"Gebruik en facturering, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Gebruik en facturering, betalingen, partnergrootboek. Elke Directus-beheerder heeft toegang.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Gebruik wordt bijgehouden voor je organisatie. Bekijk het in de organisatie-instellingen.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Gebruik deze cyclus\"],\"DsBeuB\":[\"Gebruiken\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"UATe28\":[\"Used / Included\"],\"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\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"Ttw+e+\":[\"Btw-nummer\"],\"/n0QEP\":[\"Btw-regio\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Herinnering om te verifiëren\"],\"participant.banner.verification_required\":[\"Verificatie vereist\"],\"OKGlwv\":[\"Verification topics\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"QDEWii\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"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\":[\"Verifying\"],\"iOnm3W\":[\"Je e-mailadres wordt geverifieerd.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Weergave\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"j45ntU\":[\"Uitnodiging bekijken\"],\"7bvD/5\":[\"Gelezen meldingen bekijken\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"Bekijk je reacties\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"weergaven\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Wachten tot gesprekken zijn afgerond voordat een rapport wordt gegenereerd.\"],\"tCfopB\":[\"Wilt u aangepaste rapportstructuren?\"],\"VKMCO0\":[\"Wil je een template toevoegen aan \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"v8z9fL\":[\"Wilt u het uiterlijk van uw rapport aanpassen?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"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.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We konden deze werkruimte niet laden. Probeer het zo meteen opnieuw.\"],\"zPjLTr\":[\"We konden het gebruik van deze werkruimte niet laden.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We konden je betaalmethode niet bijwerken. Je oude methode is nog actief. Probeer het opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link to finish setting up your account.\"],\"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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"2ZUkkL\":[\"We zijn deze functie aan het ontwerpen en horen graag uw feedback.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"Yc3tsw\":[\"We hebben een verificatielink naar <0>\",[\"0\"],\" gestuurd. Open de e-mail en klik op de link om verder te gaan.\"],\"fylXkT\":[\"Weak network\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"OM+lH0\":[\"Welkom bij dembrane\"],\"1GYTCh\":[\"Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"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!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"J2FSRx\":[\"Welkom, \",[\"displayName\"]],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"nCQNTt\":[\"Wat wil je te weten komen?\"],\"En5QxT\":[\"Wat kan Vragen doen?\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"WSxXHT\":[\"Waarvoor wil je dembrane gebruiken?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"pVIWuw\":[\"Wat moet ECHO analyseren of genereren uit de gesprekken?\"],\"ZsEVar\":[\"Waar moet dit rapport zich op richten?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"Wat dit project deze cyclus verbruikt.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"Ul3erb\":[\"What you can reach\"],\"3ePd3I\":[\"Wat is 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.\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"MEmr1I\":[\"Wanneer je het gesprek afmaakt, worden deelnemers die nog niet hebben geverifieerd gevraagd om te verifiëren of over te slaan\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move across the stages in real time.\"],\"/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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Wie dit project kan zien en eraan kan samenwerken.\"],\"P9WL8r\":[\"Wie kan dit project zien?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\":[\"wish\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"Met externe klanten\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Binnen mijn organisatie\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Bezig met je antwoord...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"werkruimte\"],\"pmUArF\":[\"Werkruimte\"],\"VmdouC\":[\"Werkruimte-account\"],\"Zqthj7\":[\"Werkruimte-acties\"],\"dF5lba\":[\"Werkruimtebeheerder gewijzigd\"],\"tPe+ak\":[\"Workspace created\"],\"ZBKhLV\":[\"Werkruimte aangemaakt.\"],\"1hyEG5\":[\"Werkruimtedata nog niet geladen. Probeer het opnieuw.\"],\"UlhdTP\":[\"Werkruimte verwijderd\"],\"Ep8k4i\":[\"Werkruimte is vol\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Werkruimtelogo\"],\"CozWO1\":[\"Naam van de werkruimte\"],\"dg0Efy\":[\"Naam van de werkruimte. Wordt automatisch opgeslagen.\"],\"wHWiPE\":[\"Werkruimte hernoemd\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Werkruimte-instellingen | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Gast met alleen toegang tot de werkruimte. Niet toegevoegd aan de organisatie.\"],\"JKU2hI\":[\"werkruimtes\"],\"pmt7u4\":[\"Werkruimtes\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\":[\"Workspaces you can join\"],\"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\":[\"you\"],\"kWJmRL\":[\"Jij\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"ORA5nz\":[\"U kunt het hieronder opnieuw proberen.\"],\"96ERwL\":[\"Je kunt nog geen werkruimte aanmaken\"],\"bHCu+u\":[\"Je kunt jezelf niet uitnodigen.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team instead.\"],\"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.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"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.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"t6Ti2e\":[\"Je hebt een uitnodiging van een collega nodig\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"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.\"],\"SqF5u9\":[\"Je bent een externe in deze werkruimte. Projecten verschijnen hier zodra iemand in de organisatie er een met je deelt.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate for an invite.\"],\"Y3LcET\":[\"Je maakt op dit moment deel uit van geen enkele organisatie.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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\":[\"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\":[\"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\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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\":[\"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.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"JgZh6f\":[\"Je logo is nog actief, maar kan op dit niveau niet worden gewijzigd.\"],\"q8yluz\":[\"Uw naam\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Van jou\"],\"crrqaX\":[\"jr\"],\"htVSbz\":[\"Zet de geregistreerde uren van deze cyclus vanaf nu op nul. Gesprekken blijven behouden; alleen de factureringsteller wordt gereset.\"],\"ACjxWW\":[\"Zoom\"],\"CXKyns\":[\"*Bij dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"YZ/0Ou\":[\"meldingen\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"IDeRjd\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen.\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"Okya3r\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"nLsy1T\":[\"Experimentele functie\"],\"3KMnYN\":[\"Maak het concreet\"],\"bdRMrj\":[\"Kies een concreet onderwerp\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"GSQ8We\":[\"Echo inschakelen\"],\"GpCBCW\":[\"ECHO inschakelen\"],\"IHqkFL\":[\"Reactie inschakelen\"],\"7DwYDY\":[\"Verify inschakelen\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"4sRD2K\":[\"Je transcriptie wordt geanonimiseerd en je host kan niet naar je opname luisteren.\"],\"hOtk0x\":[\"Echo\"],\"+4oo+H\":[\"Ga dieper\"],\"JsSzzl\":[\"ECHO\"],\"5CMnu3\":[\"Maak het concreet\"],\"SUkFIX\":[\"Pauze\"],\"jZl7iI\":[\"Verfijnen\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"J08RAX\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"1UpEyy\":[\"Er ging iets mis met dit artefact\"],\"ifB91T\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"WWAi3R\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"RZjFD0\":[\"Aan de slag\"],\"4ooXad\":[\"Instructies aan het laden…\"],\"IAnV8V\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"ljh/ll\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"57WG7r\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"QyhAZr\":[\"Nieuwe tekst aan het maken…\"],\"jdp5y2\":[\"Volgende\"],\"emTnfv\":[\"Kies een concreet voorbeeld\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"PKJbS8\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"FO6Pkc\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"Qgb/Rk\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"Akipk/\":[\"Functie binnenkort beschikbaar\"],\"CX9hhl\":[\"Maak het concreet\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"WhOUEg\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"+OsWrs\":[\"Ga dieper\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"rnRImh\":[\"Ga dieper\"],\"KCI9d+\":[\"Maak het concreet\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te controleren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"KaOIie\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"library.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(voor verbeterde audioverwerking)\"],\"ls1N1w\":[\"(ontbreekt)\"],\"B/gRsg\":[\"(geen)\"],\"NzluOx\":[\"(optioneel)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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 stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" lid\"],\"other\":[\"#\",\" leden\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" betaling\"],\"other\":[\"#\",\" betalingen\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projecten\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" opname\"],\"other\":[\"#\",\" opnames\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" geselecteerd\"],\"other\":[\"#\",\" geselecteerd\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" met fouten\"],\"other\":[\"#\",\" met fouten\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Verplaats \",\"#\",\" project naar een andere werkruimte.\"],\"other\":[\"Verplaats \",\"#\",\" projecten naar een andere werkruimte.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" klaar\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" verwijderd\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" uur / maand\"],\"hvF/g5\":[[\"0\"],\" uur totaal\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"nqIXFG\":[[\"0\"],\" van \",[\"1\"],\" leden zijn getraind.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"1/+09d\":[[\"0\"],\" weergaven\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" werkruimtes · \",[\"1\"],\" betaalde plekken · \",[\"2\"],\" gratis waarnemers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" gratis\"],\"other\":[\"#\",\" gratis\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" gesprekken • Bewerkt \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" gesprekken geselecteerd voor deze chat\"],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"uSTZVH\":[[\"conversationTotal\"],\" opgenomen\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\" dagen geleden\"],\"bT6AxW\":[[\"diffInHours\"],\" uur geleden\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% korting toegepast\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minuten en \",[\"seconds\"],\" seconden\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% korting\"],\"YtOXS1\":[\"Gesprek van \",[\"name\"]],\"lJ6xri\":[\"Transcriptfragment van \",[\"name\"]],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" personen meer\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"/+py6Q\":[[\"seats\"],\" plekken\"],\"U7Iesw\":[[\"seconds\"],\" seconden\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"odzwX/\":[[\"sent\"],\" uitnodigingen verstuurd\"],\"dmKaRr\":[[\"sentCount\"],\" uitnodigingen verstuurd.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisatie\"],\"other\":[\"#\",\" organisaties\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"MqzJ2+\":[\"* stijgt naar \",[\"0\"],\" bij acceptatie\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/plek/mnd\"],\"lDyo+I\":[\"/zetel/mnd · jaarlijks gefactureerd\"],\"u5M/5B\":[\"/zetel/mnd · maandelijks gefactureerd\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" meer\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wacht \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" per stuk, boven de inbegrepen \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra deelnemer\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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 history entry\"],\"0ko5Xt\":[\"1 opgenomen\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 weergave\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ leden zijn lid geworden\"],\"WehR9U\":[\"2 maanden geleden\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. Wanneer een gesprekgebeurtenis plaatsvindt, sturen we automatisch de gesprekgegevens naar uw URL\"],\"L9boOH\":[\"2. Wanneer een gesprek of rapport plaatsvindt, sturen we de data automatisch naar je URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 maanden geleden\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"34Qhax\":[\"8 hours\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"Een downgrade past de downgrade-effecten uit de matrix toe en brengt werkruimtebeheerders op de hoogte.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"f6HTzO\":[\"A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed.\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"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.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"een werkruimte\"],\"2rz0sA\":[\"Over jou\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accepteren en deelnemen\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Toegang\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\":[\"Toegangsverzoeken\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account en beveiliging\"],\"VsyynM\":[\"Account & Beveiliging\"],\"g9NChz\":[\"Accountmanager\"],\"/8wINa\":[\"Accountmanager toegewezen.\"],\"Q+M1Ej\":[\"Account moved to self-serve billing.\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"Euv0O8\":[\"Account set to managed billing.\"],\"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\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"v7AMq1\":[\"Add an external\"],\"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\":[\"Add goal text before applying.\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Toevoegen aan favorieten\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"MIWKYQ\":[\"Toevoegen aan snelle toegang\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"P4Egjx\":[\"Toevoegen aan werkruimtes\"],\"6Xm4X2\":[\"Onderwerp toevoegen\"],\"AHaRrL\":[\"Vertalingen toevoegen\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"DtI2tD\":[\"Eigen invoer\"],\"hp8OtS\":[\"Toegevoegd\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Context toevoegen:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Adres\"],\"NY/x1b\":[\"Adresregel 1\"],\"cormHa\":[\"Adresregel 2\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"U3pytU\":[\"Beheerder\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Beheerdersdashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Hier beheerder via organisatierol\"],\"2Fsr7J\":[\"Admin here via team role\"],\"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)\"],\"TBpbDp\":[\"Geavanceerd (Tips en trucs)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Tool-gestuurd uitvoering\"],\"VHg3DX\":[\"Agentisch Gesprek\"],\"N40H+G\":[\"Alles\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"Cmt62w\":[\"Alle gesprekken klaar\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"baQJ1t\":[\"Alle insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"Alle templates\"],\"NGO2th\":[\"Alle sjablonen\"],\"IOEBQh\":[\"Alle niveaus\"],\"dYoI9C\":[\"Alle zichtbare gesprekken geselecteerd\"],\"AWdiC+\":[\"Alle werkruimtes\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for 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?\"],\"G54oFr\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"zqhMd0\":[\"Er ging iets onverwachts mis. Opnieuw laden of teruggaan naar home helpt meestal.\"],\"QX6zrA\":[\"Analyse\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Jaarlijkse facturering\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Transcript anonimiseren\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"YdiKaK\":[\"anoniem gesprek\"],\"iPiP6k\":[\"Anoniem gesprek\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonieme host\"],\"Pg5/xn\":[\"Anonieme deelnemer\"],\"azfEQ3\":[\"Anonieme deelnemer\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Een andere admin of eigenaar moet je herstellen.\"],\"6GojWN\":[\"Elke tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"1MB5rq\":[\"Iedereen in je organisatie kan deze werkruimte vinden. Organisatie-admins kunnen meedoen; organisatieleden kunnen toegang aanvragen.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Is er iets dat we beter hadden kunnen doen?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Weergave\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Toepassen\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Sjabloon toepassen\"],\"5swDY2\":[\"Bijna een limiet bereikt deze maand\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Goedkeuren\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Weet je zeker dat je dit project wilt verwijderen?\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"B8ymes\":[\"Weet je zeker dat je deze opname wilt verwijderen?\"],\"ELQ+fw\":[\"Weet je zeker dat je dit rapport wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"G2gLnJ\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen?\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"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?\"],\"xu5cdS\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"K1Omdr\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"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.\"],\"JHgUuT\":[\"Artefact succesvol goedgekeurd!\"],\"IbpaM+\":[\"Artefact succesvol opnieuw geladen!\"],\"Qcm/Tb\":[\"Artefact succesvol herzien!\"],\"uCzCO2\":[\"Artefact succesvol bijgewerkt!\"],\"KYehbE\":[\"Artefacten\"],\"jrcxHy\":[\"Artefacten\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Vraag een admin van de werkruimte om een uitnodiging, of kies een andere werkruimte uit je lijst.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Vraag iets over je gesprekken, of typ om een eerdere chat te vinden\"],\"9pDK3A\":[\"Vraag iets over je gesprekken...\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Vraag deelnemers om hun naam te geven wanneer ze een gesprek starten\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kaEPzR\":[\"Toewijzen\"],\"d/bvvp\":[\"Assistent\"],\"MPY6SL\":[\"Assistent-context\"],\"kskjVK\":[\"Assistent is aan het typen...\"],\"aYfeOI\":[\"Assistent-geheugen\"],\"bU39dx\":[\"Minstens 8 tekens\"],\"HrusNW\":[\"Selecteer minimaal één onderwerp om Maak het concreet aan te zetten\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio-afspelen niet beschikbaar voor anonieme gesprekken\"],\"DMBYlw\":[\"Audio verwerking in uitvoering\"],\"D3SDJS\":[\"Audio opname\"],\"mGVg5N\":[\"Audio opnames worden 30 dagen na de opname verwijderd\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio-tip\"],\"QRkk6c\":[\"Audio was coming in but stopped — they may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"/iCiQU\":[\"Automatisch selecteren\"],\"3D5FPO\":[\"Automatisch selecteren uitgeschakeld\"],\"ajAMbT\":[\"Automatisch selecteren ingeschakeld\"],\"jEqKwR\":[\"Automatisch selecteren bronnen om toe te voegen aan het gesprek\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and tags\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"vtUY0q\":[\"Automatisch relevante gesprekken voor analyse zonder handmatige selectie\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"csDS2L\":[\"Beschikbaar\"],\"FZA9K3\":[\"Available on innovator and above.\"],\"t4AO8x\":[\"Beschikbaar vanaf innovator en hoger. Upgrade om te ontgrendelen.\"],\"KKfW2W\":[\"Avatar verwijderd\"],\"jSKImf\":[\"Avatar bijgewerkt\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"aBqveh\":[\"Back to 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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Thema’s & patronen\"],\"K9cTJe\":[\"Jaarlijks gefactureerd\"],\"/i0ppe\":[\"jaarlijks gefactureerd · \",[\"total\"],\"/plek/jr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/yr\"],\"+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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Gefactureerd onder het abonnement van je organisatie, samen met je andere werkruimtes.\"],\"R+w/Va\":[\"Facturering\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"17Ox+q\":[\"Factuurgegevens\"],\"UQPSlS\":[\"Factuurgegevens opgeslagen.\"],\"ZQhgRe\":[\"Facturering wordt beheerd door je organisatie\"],\"/2TrP/\":[\"Billing mode\"],\"8tzR0k\":[\"Factuurperiode\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"AQCoZS\":[\"Boek een gesprek om uw feedback te delen\"],\"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\":[\"Brief\"],\"7Ic570\":[\"Gebruik je eigen LLM\"],\"SkqeF+\":[\"Gebruik je eigen taalmodel via de MCP.\"],\"CzeGfZ\":[\"Blader en deel templates met andere hosts\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Ingebouwd\"],\"G46Sdr\":[\"door \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"Door dit project te verwijderen, verwijder je alle gegevens die eraan gerelateerd zijn. Dit kan niet ongedaan worden gemaakt. Weet je zeker dat je dit project wilt verwijderen?\"],\"IqudIv\":[\"Door dit project te verwijderen, verwijder je alle bijbehorende gegevens. Deze actie kan niet ongedaan worden gemaakt. Weet je het absoluut zeker?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"kan bewerken\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"kan lezen\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\":[\"Cancel current run\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Abonnement opzeggen\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Planning annuleren\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"XzQibx\":[\"Cancel training\"],\"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\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"t1o65w\":[\"Canvases built for this project live here.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Kaart\"],\"SHhA6n\":[\"catch up \",[\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Toch wijzigen\"],\"U8sdJ+\":[\"Wijzigen in werkruimte-instellingen\"],\"+DEogc\":[\"Taal wijzigen\"],\"7KtLzo\":[\"Organisatierol wijzigen?\"],\"GptGxg\":[\"Wachtwoord wijzigen\"],\"Ts/A07\":[\"Betaalmethode wijzigen\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Rol wijzigen\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Niveau wijzigen\"],\"6TmAJF\":[\"Werkruimtebeheerder wijzigen\"],\"XbjzC/\":[\"Werkruimterol wijzigen?\"],\"mtseAM\":[\"Je eigen rol wijzigen?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Wijzigingen worden automatisch opgeslagen terwijl je de app gebruikt. <0/>Zodra je wijzigingen hebt die nog niet zijn opgeslagen, kun je op elk gedeelte van de pagina klikken om de wijzigingen op te slaan. <1/>Je zult ook een knop zien om de wijzigingen te annuleren.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\":[\"Chat limit reached\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chatnaam\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"v4fiSg\":[\"Controleer je 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\":[\"Je sessie wordt gecontroleerd.\"],\"pWT04I\":[\"Controleren...\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Kies een abonnement\"],\"4Jd65a\":[\"Kies eerst een organisatie\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citeert de volgende bronnen\"],\"3wV73y\":[\"Plaats\"],\"u8JHrO\":[\"Filters wissen\"],\"V8yTm6\":[\"Zoekopdracht wissen\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"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\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Binnenkort beschikbaar — deel uw feedback\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Communitysjablonen\"],\"Wqc3zS\":[\"Vergelijk\"],\"CfO59/\":[\"Vergelijk & Contrast Insights\"],\"jlZul5\":[\"Vergelijk en contrast de volgende items die in de context zijn verstrekt. \"],\"2Jg8b0\":[\"Gratis proefperiode. €0 omzet.\"],\"bUEr/M\":[\"Gratis proefperiode. Verloopt op \",[\"0\"],\". €0 omzet.\"],\"bD8I7O\":[\"Voltooid\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concreet maken\"],\"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\"],\"p2/GCq\":[\"Bevestig wachtwoord\"],\"3i8TA+\":[\"Privacywijziging 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\"],\"DFFB2t\":[\"Neem contact op met sales\"],\"mpby9d\":[\"Contact met support\"],\"E5Shm/\":[\"Neem contact op met de beheerder als dit onverwacht was.\"],\"VlCTbs\":[\"Neem contact op met je verkoper om deze functie vandaag te activeren!\"],\"4b3oEV\":[\"Inhoud\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"aVvy3Y\":[\"Contextlimiet bereikt\"],\"JX3KT4\":[\"Contextuele suggesties\"],\"xGVfLh\":[\"Doorgaan\"],\"participant.button.continue\":[\"Doorgaan\"],\"hMqszB\":[\"Doorgaan naar betaling\"],\"F1pfAy\":[\"gesprek\"],\"YyNOE7\":[\"Gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"ggJDqH\":[\"Gesprek audio\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"BsHMTb\":[\"Gesprek beëindigd\"],\"GXkC8g\":[\"Gesprek vergrendeld, upgrade om aan chat toe te voegen\"],\"RnAZnU\":[\"Gesprek vergrendeld. Upgrade om het toe te voegen.\"],\"26Wuwb\":[\"Gesprek wordt verwerkt\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"7Ljafh\":[\"Gesprekslabels\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"TQ8ecW\":[\"Gesprekken van QR Code\"],\"nmB3V3\":[\"Gesprekken van upload\"],\"Np+C87\":[\"Gesprekken:\"],\"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\"],\"Dj+aS5\":[\"Kopieer link om dit rapport te delen\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Rapportinhoud kopiëren\"],\"vAkFou\":[\"Geheim kopiëren\"],\"RGCCrg\":[\"Deellink kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"rG2gDo\":[\"Kopieer transcript\"],\"OvEjsP\":[\"Kopieren...\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Sjabloon kon niet worden verwijderd\"],\"qFM9uZ\":[\"Er kon geen samenvatting worden gegenereerd. Probeer het opnieuw.\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Betalingen konden niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"6x4YxZ\":[\"Could not load the Library.\"],\"S+kUD0\":[\"De rollup kon niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"nx4kaN\":[\"Could not save\"],\"BIQxIX\":[\"Could not save tags\"],\"/C4Hgq\":[\"De hostgids kon niet worden opgeslagen\"],\"mb/wyK\":[\"Could not save this methodology\"],\"g4QEze\":[\"Could not save this project goal\"],\"HQinjp\":[\"De uitnodigings-e-mail kon niet worden verstuurd. Controleer de e-mailconfiguratie.\"],\"hpYy7A\":[\"Sjabloon kon niet worden bijgewerkt\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/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\":[\"Couldn't load live activity\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Maak een account aan\"],\"lJ+m2/\":[\"Maak een account aan om deel te nemen\"],\"library.create\":[\"Maak bibliotheek aan\"],\"O671Oh\":[\"Maak bibliotheek aan\"],\"T7gFri\":[\"Nieuwe organisatie aanmaken\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"vY2Gfm\":[\"Maak nieuwe view aan\"],\"uVzvzz\":[\"Nu aanmaken\"],\"55yNvT\":[\"Organisatie aanmaken\"],\"vPAex+\":[\"Wachtwoord aanmaken\"],\"Q7h9s/\":[\"Project aanmaken\"],\"bsfMt3\":[\"Maak rapport\"],\"A5hiCy\":[\"Template aanmaken\"],\"s7XwOU\":[\"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\"],\"/iFtGl\":[\"Aangemaakt \",[\"createdDate\"]],\"NCIYDF\":[\"Aangemaakt door\"],\"45O6zJ\":[\"Gemaakt op\"],\"QxmQob\":[\"Aanmaken in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Avatar bijsnijden\"],\"udBqWc\":[\"Afbeelding bijsnijden\"],\"8LMgB6\":[\"Logo bijsnijden\"],\"6dfVdc\":[\"Logo bijsnijden\"],\"yOrQ4N\":[\"Huidige logo\"],\"Pn2B7/\":[\"Huidig wachtwoord\"],\"A+zoTy\":[\"Huidig abonnement\"],\"a+EVO+\":[\"Huidig tarief\"],\"bfu5HZ\":[\"aangepast\"],\"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.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Pas de structuur van uw rapport aan. Deze functie komt binnenkort.\"],\"TNZKpI\":[\"Gevaar\"],\"Zz6Cxn\":[\"Gevarenzone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? You can ask them to send it again later.\"],\"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)\"],\"uRo+u9\":[\"Uitgesteld naar een eigen beoordeeld issue\"],\"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\"],\"948GTz\":[\"Aangepast onderwerp verwijderen\"],\"mp235G\":[\"Project verwijderen\"],\"++iDlT\":[\"Verwijder project\"],\"rUWrSE\":[\"Rapport verwijderen\"],\"MlrelG\":[\"Rapport verwijderen\"],\"qr0gpK\":[\"Tag verwijderen\"],\"DFjdv0\":[\"Template verwijderen\"],\"NUXYj2\":[\"Dit project in \",[\"0\"],\" verwijderen? Alle gesprekken en gegevens worden definitief verwijderd.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Deze werkruimte verwijderen\"],\"ooWc3n\":[\"Deze werkruimte verwijderen. Leden verliezen direct toegang en alle gesprekken en gegevens worden definitief verwijderd.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane kan fouten maken. Controleer antwoorden altijd even.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane draait op AI. Check de antwoorden extra goed.\"],\"QMogcD\":[\"Reactie\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Beschrijf hoe dit template nuttig is...\"],\"Fs/0D5\":[\"Beschrijf wat de taalmodel moet extraheren of samenvatten uit het gesprek...\"],\"Nu4oKW\":[\"Beschrijving\"],\"Uf+1DF\":[\"Doelwerkruimte\"],\"ozaega\":[\"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.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Deze werkruimte weggooien?\"],\"H6Ma8Z\":[\"Korting\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Vindbaar in deze organisatie\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Contextuele suggesties in de chat tonen\"],\"pfa8F0\":[\"Weergavenaam\"],\"vU/Hht\":[\"Distributie\"],\"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?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Wil je bijdragen aan dit project?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Klaar\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"SCWfsz\":[\"Alle transcripties downloaden\"],\"5154Ap\":[\"Download alle transcripten\"],\"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\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"9nchXg\":[\"bijv. Klant Alpha\"],\"o8kQWN\":[\"bijv. Klant Alpha, Q1-onderzoek\"],\"Ys/6OK\":[\"bijv. Onboardinggesprekken met klanten, Q1-productonderzoek\"],\"MR17iW\":[\"bijv. Klimaatluisteren, Q1-onderzoek\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"v9eY8A\":[\"bijv. morgen om 9:00\"],\"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.\"],\"5oD9f/\":[\"Eerder\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"o6tfKZ\":[\"ECHO wordt aangedreven door AI. Controleer de Antwoorden nogmaals.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"bewerken\"],\"ePK91l\":[\"Bewerken\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"Y/3VME\":[\"Aangepast onderwerp bewerken\"],\"VFvVc6\":[\"Edit details\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Bewerkingsmodus\"],\"niSWGL\":[\"Opties bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"0YvCPC\":[\"Bron bewerken\"],\"report.editor.description\":[\"Bewerk de rapport inhoud met de rich text editor hieronder. Je kunt tekst formatteren, links, afbeeldingen en meer toevoegen.\"],\"nP7CdQ\":[\"Webhook bewerken\"],\"gGx5tM\":[\"Bewerken\"],\"F6H6Lg\":[\"Bewerkmode\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"E-mailadres\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Mail Pauline\"],\"LimKOG\":[\"E-mailverificatie\"],\"wwiTff\":[\"Email verificatie\"],\"QdCcsg\":[\"E-mailverificatie | dembrane\"],\"2eGHO+\":[\"Email verificatie | dembrane\"],\"iF3AC2\":[\"Email is succesvol geverifieerd. Je wordt doorgestuurd naar de inlogpagina in 5 seconden. Als je niet doorgestuurd wordt, klik dan <0>hier.\"],\"g2N9MJ\":[\"email@werk.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji getoond naast het onderwerp bijvoorbeeld 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Leeg\"],\"DCRKbe\":[\"2FA inschakelen\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"+ljZfM\":[\"Ga dieper aanzetten\"],\"wGA7d4\":[\"Maak het concreet aanzetten\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"Idlt6y\":[\"Schakel deze functie in zodat deelnemers meldingen kunnen ontvangen wanneer een rapport wordt gepubliceerd of bijgewerkt. Deelnemers kunnen hun e-mailadres invoeren om zich te abonneren op updates.\"],\"g2qGhy\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"pB03mG\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dWv3hs\":[\"Schakel deze functie in zodat deelnemers AI-suggesties kunnen opvragen tijdens het gesprek. Deelnemers kunnen na het vastleggen van hun gedachten op \\\"ECHO\\\" klikken voor contextuele feedback, wat diepere reflectie en betrokkenheid stimuleert. Tussen elke aanvraag zit een korte pauze.\"],\"rkE6uN\":[\"Zet deze functie aan zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Go deeper\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dashboard.dembrane.feature.verify.description\":[\"Schakel deze functie in om deelnemers \\\"resultaten\\\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"IxzwiB\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"237hSL\":[\"Ended\"],\"Q+niJN\":[\"Ends \",[\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Voer het huidige wachtwoord in\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"vT+QoP\":[\"Voer een nieuwe naam in voor de chat:\"],\"VpwcSk\":[\"Voer het nieuwe wachtwoord in\"],\"FTDAhZ\":[\"Enter start een nieuwe chat. Je eerdere chats blijven hieronder staan.\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"od7Yaj\":[\"Enter om te versturen, Shift+Enter voor een nieuwe regel\"],\"nAEwOZ\":[\"Voer uw toegangscode in\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"S2MVUN\":[\"Fout bij laden van meldingen\"],\"xcUDac\":[\"Fout bij laden van inzichten\"],\"edh3aY\":[\"Fout bij laden van project\"],\"3Uoj83\":[\"Fout bij laden van quotes\"],\"4kVRov\":[\"Fout opgetreden\"],\"z05QRC\":[\"Fout bij het bijwerken van het rapport\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"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\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Iedereen kan het vinden. Admins doen direct mee, leden kunnen het aanvragen.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Iedereen in \",[\"0\"],\" kan dit project vinden en openen.\"],\"PwqyQw\":[\"Iedereen in je organisatie\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"/PykH1\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"AAC/NE\":[\"Voorbeeld: Dit gesprek gaat over [onderwerp]. Belangrijke termen zijn [term1], [term2]. Let speciaal op [specifieke aspect].\"],\"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\"],\"/bsogT\":[\"Ontdek thema's en patronen in al je gesprekken\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"2KAI4N\":[\"CSV exporteren\"],\"tZXz25\":[\"Extend 24h\"],\"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\"],\"9GMUFh\":[\"Artefact kon niet worden goedgekeurd. Probeer het opnieuw.\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"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\"],\"p+a077\":[\"Fout bij het uitschakelen van het automatisch selecteren voor deze chat\"],\"iS9Cfc\":[\"Fout bij het inschakelen van het automatisch selecteren voor deze chat\"],\"C6KoMG\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw of start een nieuw gesprek.\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"DKxr+e\":[\"Fout bij het ophalen van meldingen\"],\"TSt/Iq\":[\"Fout bij het ophalen van de laatste melding\"],\"D4Bwkb\":[\"Fout bij het ophalen van het aantal ongelezen meldingen\"],\"AXRzV1\":[\"Het laden van de audio is mislukt of de audio is niet beschikbaar\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"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.\"],\"hhLiKu\":[\"Artefact kon niet worden herzien. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Fout bij het starten van een nieuw gesprek. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"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\":[\"Failed to update settings\"],\"S1McZh\":[\"Kan avatar niet uploaden\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"wH6wcG\":[\"Fout bij het controleren van de e-mailstatus. Probeer het opnieuw.\"],\"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\"],\"o7J4JM\":[\"Filteren\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"3AFOMQ\":[\"Filter by name or id\"],\"+FLjBo\":[\"Filter op organisatie-id\"],\"MRk67a\":[\"Vind tegenstrijdigheden en voeg volgende vragen voor\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"JmZ/+d\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"In/BVz\":[\"Betaling afronden\"],\"Gt4mS+\":[\"Rond het instellen van je abonnement af\"],\"4dQFvz\":[\"Voltooid\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"Voornaam\"],\"kODvZJ\":[\"Voornaam\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus je rapport (optioneel)\"],\"MKEPCY\":[\"Volgen\"],\"JnPIOr\":[\"Volgen van afspelen\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"Voor specifieke compliance-eisen, <0>bel ons voor een offerte.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"Voor intern gebruik\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"Voor facturen, een gedeeld contract, om een samenwerking te bespreken of voor iets op maat, mail <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"Voor jou\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Prognose\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Gratis\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"/L+Kwy\":[\"Gratis, alleen-lezen. Ziet projecten, gesprekken en rapporten. Kan niet chatten of rapporten genereren.\"],\"nLC6tu\":[\"Frans\"],\"2Ui6bR\":[\"friction\"],\"GtmO8/\":[\"vanaf\"],\"wX2Tuz\":[\"van \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"3qkggm\":[\"Volledig scherm\"],\"Weq9zb\":[\"Algemeen\"],\"ziAjHi\":[\"Genereren\"],\"EIdJgG\":[\"Nieuw rapport genereren\"],\"oADIO6\":[\"Genereer een nieuw rapport. Eerdere rapporten blijven beschikbaar.\"],\"QsUhrf\":[\"Rapport genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"tSA0hO\":[\"Genereer inzichten uit je gesprekken\"],\"MWSGhX\":[\"Bibliotheek genereren\"],\"5SWGxv\":[\"Nu genereren\"],\"GWUJ9X\":[\"Nu genereren\"],\"QqIxfi\":[\"Geheim genereren\"],\"tM4cbZ\":[\"Genereer gestructureerde vergaderingenotes op basis van de volgende discussiepunten die in de context zijn verstrekt.\"],\"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\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"IL8LH3\":[\"Ga dieper\"],\"DXr0zk\":[\"Volledig scherm\"],\"iWpEwy\":[\"Ga naar home\"],\"y0SPQU\":[\"Naar facturering\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Naar dashboard\"],\"7aC3FA\":[\"Ga naar feedbackportaal\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"mT57+Q\":[\"Ga naar Instellingen\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Toekennen\"],\"uO6Zmx\":[\"Changemaker-proefperiode toekennen\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Rasterweergave\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"uMjvI3\":[\"Het rapport begeleiden\"],\"myXGZW\":[\"Begeleid\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"0zo6ap\":[\"Heb je een training afgerond?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help ons te vertalen\"],\"1zZ1IK\":[\"Hoi\"],\"v6a4UH\":[\"Hoi \",[\"firstName\"]],\"ng2Unt\":[\"Hallo, \",[\"0\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"LqWHk1\":[\"Verbergen \",[\"0\"],\"\\t\"],\"u5xmYC\":[\"Verbergen alles\"],\"txCbc+\":[\"Verbergen alles\"],\"0lRdEo\":[\"Verbergen gesprekken zonder inhoud\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"CdQHTK\":[\"Details verbergen\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Projecten verbergen\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"Gebruik met hoog risico vereist eerst een training\"],\"tn75xn\":[\"Specifiek Concept markeren\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Hostgids\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Uren\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"Hoe Vragen werkt en wat je ermee kunt.\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"Q53s6K\":[\"Ik heb de <0>voorwaarden gelezen en ga ermee akkoord\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"WsoNdK\":[\"Identificeer en analyseer de herhalende thema's in deze inhoud. Gelieve:\\n\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"Als je een geavanceerde gebruiker bent die webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"kSoYmo\":[\"Als je je bij een bestaande organisatie wilt aansluiten, maak dan geen nieuwe aan. Je kunt hier per ongeluk terechtkomen door:\"],\"X2yiuT\":[\"Image style\"],\"zyr//t\":[\"Improve my setup\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"Om beter door de quotes te navigeren, maak aanvullende views aan. De quotes worden dan op basis van uw view geclusterd.\"],\"IJUcvx\":[\"In de tussentijd, als je de gesprekken die nog worden verwerkt wilt analyseren, kun je de Chat-functie gebruiken\"],\"NoNwIX\":[\"Inactief\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portallink opnemen\"],\"aOhF9L\":[\"Link naar portal in rapport opnemen\"],\"Dvf4+M\":[\"Inclusief tijdstempels\"],\"hTwp/C\":[\"Inbegrepen uren opgebruikt\"],\"LYjZNH\":[\"Inbegrepen uren deze maand opgebruikt\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"overgenomen van organisatie\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Begin\"],\"fr30H3\":[\"Innovator of hoger\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Inzichtenbibliotheek\"],\"ZVY8fB\":[\"Inzicht niet gevonden\"],\"sJa5f4\":[\"inzichten\"],\"3hJypY\":[\"Inzichten\"],\"NxHkkp\":[\"Instructies\"],\"MSVCjk\":[\"Instructies voor het genereren van het verificatieresultaat\"],\"fN5mkr\":[\"Integraties en export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"B2Tpo0\":[\"Ongeldige e-mail\"],\"R7p7+o\":[\"Ongeldige uitnodigingslink\"],\"aZ3JOU\":[\"Ongeldig token. Probeer het opnieuw.\"],\"KhBSE/\":[\"Uitnodiging\"],\"oFgGAT\":[\"Er staan uitnodigingen voor je klaar. Accepteer om aan de slag te gaan.\"],\"MFKlMB\":[\"Uitnodigen\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Uitnodiging afgewezen\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Nodig leden uit om samen te werken aan projecten en gesprekken in deze werkruimte.\"],\"3iGwJw\":[\"Alleen op uitnodiging\"],\"W6+yFb\":[\"Mensen uitnodigen\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Nodig mensen uit voor \",[\"orgName\"]],\"lOslCN\":[\"Uitnodiging opnieuw verstuurd\"],\"7Nlmb6\":[\"Uitnodiging ingetrokken\"],\"gfMuvV\":[\"Uitnodiging verstuurd\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Uitnodiging verstuurd.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Nodig uit voor een werkruimte, of alleen voor de organisatie.\"],\"RXHza3\":[\"Nodig uit voor deze werkruimte, of alleen voor de organisatie.\"],\"vbjOm1\":[\"Invite your organisation\"],\"d+Y+rP\":[\"Nodig je team uit\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"uitgenodigd door \",[\"0\"]],\"voFazH\":[\"Uitnodigingen verlopen na 7 dagen. Vraag \",[\"inviterName\"],\" om een nieuwe te versturen.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Factuurbedrag, EUR\"],\"Nv38Sl\":[\"Factuur geregistreerd als betaald.\"],\"DTZqjh\":[\"Offline gefactureerd, geen Mollie-machtiging.\"],\"F7nA5/\":[\"Facturen\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Facturatie\"],\"1xMiTU\":[\"IP-adres\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"Het lijkt erop dat het gesprek werd verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"5dxEAB\":[\"Het lijkt erop dat u nog geen rapport voor dit project heeft. Genereer er een om een overzicht van uw gesprekken te krijgen.\"],\"JsWQuM\":[\"Het lijkt erop dat je nog geen rapport hebt voor dit project. Genereer er een voor een overzicht van je gesprekken. Je kunt het rapport optioneel richten op een specifiek onderwerp.\"],\"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.\"],\"Lj7sBL\":[\"Italiaans\"],\"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.\"],\"GaQMyV\":[\"Aansluiten \",[\"0\"],\" op dembrane\"],\"q1E+AA\":[\"Lid worden van \",[\"0\"],\"?\"],\"agqQk1\":[\"Word lid van \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | dembrane\"],\"cCweOd\":[\"Lid worden als admin\"],\"TCEFVm\":[\"Lid worden als admin?\"],\"j4IJHz\":[\"Eerst lid worden\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Word lid van onze Slack-community\"],\"4fhsRZ\":[\"Word lid van de Slack-community\"],\"s/jfrO\":[\"Word lid van deze organisatie om werkruimtes te ontdekken en samen te werken met je 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\":[\"Word lid van deze werkruimte om samen te werken aan gesprekken, inzichten te delen en samen rapporten te maken.\"],\"2gMuHR\":[\"Lid geworden\"],\"IKAMA9\":[\"Lid geworden van \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Toegevoegd als admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Ga naar\"],\"uocCon\":[\"Gewoon een momentje\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"Net zojuist\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"VqAl2y\":[\"Just refreshed. Give it a moment.\"],\"UQYK3R\":[\"Just started\"],\"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\":[\"Keep \",[\"tier\"],\" until a date\"],\"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\":[\"Keep license\"],\"uHdpk+\":[\"Mijn abonnement behouden\"],\"Qzyw+2\":[\"In behandeling houden\"],\"II//jO\":[\"Keep this canvas fresh\"],\"o9Ly7X\":[\"Houd deze werkruimte alleen op uitnodiging.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Taal\"],\"G3qeSw\":[\"Laatste activiteit \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Vorige maand\"],\"1ZaQUH\":[\"Achternaam\"],\"UXBCwc\":[\"Achternaam\"],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Laatste\"],\"9Fp9Lx\":[\"Laatste gesprekken\"],\"wv+L3B\":[\"Laatste rapport\"],\"zwWKhA\":[\"Meer informatie\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Werkruimte verlaten\"],\"UlKSMd\":[\"Left\"],\"vRXsmZ\":[\"Rechtsgrondslag\"],\"7kyKF5\":[\"Rechtsgrondslag bijgewerkt\"],\"nc/jNe\":[\"Naam rechtspersoon\"],\"PIhnIP\":[\"Laat het ons weten!\"],\"8zGcQ2\":[\"Laten we je eerste gesprek horen.\"],\"qhQjFF\":[\"Laten we controleren of we je kunnen horen\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"yUQgLY\":[\"Bibliotheek wordt momenteel verwerkt\"],\"gkv8iG\":[\"Kenteken\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenties\"],\"/NleHL\":[\"Licenties verleend\"],\"JbbFA4\":[\"Levenslange limiet\"],\"J7Djew\":[\"Limit who can find and join this workspace.\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link gekopieerd\"],\"LIj2/f\":[\"Link naar de privacyverklaring van uw organisatie die aan deelnemers wordt getoond\"],\"3gvJj+\":[\"LinkedIn Post (Experimenteel)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Gesprekken op een rij zetten\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent uitvoermodus\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording counts\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"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\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Meer laden\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Bezig met laden\"],\"yQE2r9\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"ATTcN8\":[\"Concrete onderwerpen aan het laden…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Leden laden\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Microfoons laden...\"],\"Xan9/v\":[\"Projecten laden...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3DkEi5\":[\"Verificatie-onderwerpen worden geladen…\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"eRq8Ag\":[\"Werkruimtes laden…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"G2fuEb\":[\"Vergrendeld\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Uitloggen en het uitgenodigde e-mailadres gebruiken\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Inloggen\"],\"LM/dWU\":[\"Inloggen | dembrane\"],\"Wd2LTk\":[\"Inloggen als bestaande gebruiker\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo verwijderd\"],\"MjfaMh\":[\"Logo bijgewerkt\"],\"WXSxpf\":[\"Logo succesvol bijgewerkt\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Uitloggen\"],\"FTbR8B\":[\"Langste eerst\"],\"jWXlkr\":[\"Langste eerst\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Maak het privé om alleen met specifieke mensen te delen. Privéprojecten vereisen het innovator-abonnement of hoger.\"],\"icpEdc\":[\"Privé maken\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Zichtbaar maken voor de hele werkruimte\"],\"wckWOP\":[\"Beheren\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Leden beheren\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Facturatie van organisatie beheren\"],\"IsFOAV\":[\"Manage team\"],\"mrenWs\":[\"Templates beheren\"],\"2VeSf/\":[\"Manage training\"],\"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\":[\"Mark as attended\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"5GPcf9\":[\"Markeren als ongelezen\"],\"TyonBx\":[\"Mark completed\"],\"MCipZC\":[\"Factuur markeren als betaald\"],\"AHBWqd\":[\"Mark training completed\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Lid verwijderd\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Lid om te promoveren\"],\"GnG6Oy\":[\"leden\"],\"wlQNTg\":[\"Leden\"],\"v8o+Rn\":[\"Geheugen\"],\"u418B7\":[\"Herinnering verwijderd\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"m3fXOy\":[\"Message limit reached\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mijn\"],\"b85Pfh\":[\"Minimaal 8 tekens\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Maandelijkse facturatie\"],\"ZTjlaD\":[\"Maandelijkse reset van verbruik\"],\"f8jrkd\":[\"meer\"],\"JcD7qf\":[\"Meer acties\"],\"zMx0gF\":[\"Meer templates\"],\"y1ypMV\":[\"Populairst\"],\"7BgchI\":[\"Meest gebruikt\"],\"QWdKwH\":[\"Verplaatsen\"],\"3qp1VW\":[\"\\\"\",[\"0\"],\"\\\" verplaatsen naar \",[\"targetWorkspaceName\"],\"? Leden van de huidige werkruimte verliezen hun toegang.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[[\"0\"],\" van \",[\"1\"],\" naar \",[\"tier\"],\" verplaatsen? Een downgrade beperkt functies meteen.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Meerdere talen\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Moet minstens 10 minuten in de toekomst zijn\"],\"5hOInR\":[\"Mijn toegang\"],\"en+4fS\":[\"Mijn sjablonen\"],\"+O1YmH\":[\"Mijn templates\"],\"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\":[\"Named ways of working your team can reuse.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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\":[\"New chat about this canvas\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"u2uElg\":[\"Nieuwe gesprekken toegevoegd sinds dit rapport\"],\"XojC2V\":[\"Nieuwe gesprekken beschikbaar — werk je rapport bij\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"P/+jkp\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"3RC8Um\":[\"Er zijn nieuwe gesprekken toegevoegd sinds je laatste rapport. Genereer een bijgewerkt rapport om ze op te nemen. Je vorige rapport blijft beschikbaar.\"],\"QgiaQ8\":[\"Nieuwe datum en tijd\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"Nieuwe organisatie\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"Nieuw wachtwoord\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"gKi+a/\":[\"Nieuw project\"],\"+VXUp8\":[\"Nieuw project\"],\"wzIR5D\":[\"Nieuw project | dembrane\"],\"z6wcHz\":[\"Nieuw rapport\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"Nieuw niveau\"],\"curoK5\":[\"Nieuwe werkruimte\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Nieuwste\"],\"cTUByn\":[\"Nieuwste eerst\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.next\":[\"Volgende\"],\"participant.ready.to.begin.button.text\":[\"Klaar om te beginnen\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"1vEADD\":[\"Volgende factuur\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"Nee\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"oPoLg+\":[\"Geen toegang\"],\"VHfLAW\":[\"Geen accounts\"],\"riwuXX\":[\"Geen acties gevonden\"],\"aXFOuf\":[\"Nog geen activiteit\"],\"WsI5bo\":[\"Geen meldingen beschikbaar\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"YM6Wft\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"MGOMoh\":[\"Geen chats gevonden. Druk op Enter om dit als nieuwe chat te vragen.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"S8FeaY\":[\"Nog geen community templates. Deel de jouwe om te beginnen.\"],\"zMt5AM\":[\"Geen concrete onderwerpen beschikbaar.\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"zM3DDm\":[\"Geen gesprekken beschikbaar om bibliotheek te maken. Voeg enkele gesprekken toe om te beginnen.\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"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.\"],\"meAa31\":[\"Nog geen gesprekken\"],\"YnWe3z\":[\"Nog geen gesprekken.\"],\"GKpO3x\":[\"Nog geen gesprekken. Je kunt nu een rapport plannen en gesprekken worden opgenomen zodra ze zijn toegevoegd.\"],\"ax9iz4\":[\"Nog geen templates. Maak er een aan om te beginnen.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"geen vervaldatum\"],\"7Ad0TM\":[\"Geen expliciete delingen. Werkruimtebeheerders hebben nog steeds toegang.\"],\"Fb9N7E\":[\"Nog geen extern geleide organisaties.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"Geen verdere kosten\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"Geen inzichten beschikbaar. Genereer inzichten voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"wuFH13\":[\"Er zijn geen uitnodigingen verstuurd. Bekijk de lijst hieronder.\"],\"yTx6Up\":[\"Er zijn nog geen sleuteltermen of eigennamen toegevoegd. Voeg ze toe met behulp van de invoer boven aan om de nauwkeurigheid van het transcript te verbeteren.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"Geen logo ingesteld. De standaard van dembrane wordt gebruikt.\"],\"4TVVsS\":[\"Geen resultaten\"],\"IntpVZ\":[\"Geen resultaten gevonden\"],\"JuBV6F\":[\"Nog geen leden.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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.\"],\"xFZCP1\":[\"No one on the team yet.\"],\"ZwZtAi\":[\"Nog niemand in deze organisatie.\"],\"/+Nxaa\":[\"Nog niemand gedeeld\"],\"sAu4UE\":[\"Nog niemand in de werkruimte.\"],\"/ksKg9\":[\"Geen organisatierol. Toegang via werkruimte-uitnodigingen.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"Geen betalingen voldoen aan het filter.\"],\"iV2Or0\":[\"Nog geen betalingen.\"],\"cqfchi\":[\"Geen pdf beschikbaar voor deze factuur.\"],\"qPbs1l\":[\"Geen openstaande uitnodigingen\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"Geen projectactiviteit deze periode.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"Geen projecten gevonden.\"],\"ghhtgM\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar\"],\"yalI52\":[\"Geen quotes beschikbaar. Genereer quotes voor dit gesprek door naar <0><1>de projectbibliotheek. te gaan.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"Nog geen verwijsafspraken.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"1iQvuD\":[\"Nog geen rapporten\"],\"EhV94J\":[\"Geen bronnen gevonden.\"],\"Ev2r9A\":[\"Geen resultaten\"],\"pm345e\":[\"Geen selecteerbare gesprekken\"],\"rXndZR\":[\"Geen specifieke focus\"],\"klvSBe\":[\"No subscription\"],\"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}\"],\"kaDUQs\":[\"Nog geen templates. Maak je eigen template of blader door Alle templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"Nog geen trainingen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"TmTivZ\":[\"Er is geen transcript beschikbaar voor dit gesprek.\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"MPZkyF\":[\"Er zijn geen transcripten geselecteerd voor dit gesprek\"],\"AotzsU\":[\"Geen tutorial (alleen Privacyverklaring)\"],\"/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.\"],\"2h9aae\":[\"Geen verificatie-onderwerpen beschikbaar.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"Z9sn1g\":[\"No version yet\"],\"+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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"Er worden op dit moment geen werkruimtes uit deze organisatie met je gedeeld.\"],\"XiqbH/\":[\"Nog geen werkruimtes in deze organisatie.\"],\"pxmfsY\":[\"Geen werkruimtes komen overeen met \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"xZSB25\":[\"Niets gepland\"],\"PjeFWm\":[\"Geen geldig e-mailadres.\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"PBxg/E\":[\"Niet nu\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Wordt niet verlengd\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Niet ingesteld\"],\"vbpAZQ\":[\"Niet getraind\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Nu\"],\"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 are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Waarnemers zijn alleen beschikbaar in werkruimtes voor een externe klant. Kies alleen werkruimtes van externe klanten, of kies een andere rol.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Uit\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oudste eerst\"],\"9+6THi\":[\"Oudste eerst\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"Aan\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"Eén maand Changemaker op dit account, gratis. Gaat na afloop automatisch terug naar Free.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"Eén cijfer\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"Eén symbool\"],\"MKUgK1\":[\"Eén hoofdletter\"],\"qitPxp\":[\"Eenmalig\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Actief\"],\"conversation.ongoing\":[\"Actief\"],\"yAVA7C\":[\"Lopende gesprekken\"],\"uTmEDj\":[\"Actieve Gesprekken\"],\"Dw7aQc\":[\"Alleen van toepassing wanneer het rapport is gepubliceerd\"],\"a//PzZ\":[\"Verander deze instelling alleen in overleg met de verantwoordelijke persoon(nen) voor de bescherming van gegevens binnen uw organisatie.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Alleen uitgenodigde deelnemers. Organisatiebeheerders kunnen het nog steeds vinden en deelnemen.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"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.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them to promote you first.\"],\"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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Alleen de \",[\"0\"],\" voltooide \",[\"1\"],\" worden nu in het rapport opgenomen. \"],\"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.\"],\"J17dTs\":[\"Oeps! Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Accountacties openen\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Alles openen\"],\"yCDcIF\":[\"Open chatdocumentatie\"],\"uIKeEf\":[\"Gesprek openen\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentatie\"],\"NRLF9V\":[\"Open documentatie\"],\"QTXl9z\":[\"Feedbackportaal openen\"],\"aRGGej\":[\"Open voor deelname\"],\"2CyWv2\":[\"Open voor deelname?\"],\"Z7K0px\":[\"Open gids\"],\"CD3rbs\":[\"Hostgids openen\"],\"JoAjm8\":[\"Open host gids\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Mollie-dashboard openen\"],\"iZD9CK\":[\"Organisatie openen\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open de oude chatervaring\"],\"828iLy\":[\"Open de oorspronkelijke uitnodigings-e-mail en klik daar op de link, of vraag de uitnodiger om een nieuwe uitnodiging te sturen.\"],\"TcQzrj\":[\"Open voor de organisatie\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open voor de werkruimte\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"7yrRHk\":[\"Open de probleemoplossingsgids\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Werkruimteacties openen\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optioneel\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optioneel (valt terug naar Engels)\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"0OspM/\":[\"Optioneel. Waar deze werkruimte voor is.\"],\"0zpgxV\":[\"Opties\"],\"BzEFor\":[\"of\"],\"0EffTH\":[\"Or choose a time\"],\"7r2pfW\":[\"Of liever direct chatten?\"],\"1h45Hu\":[\"Of schrijf uw eigen\"],\"v2MBz4\":[\"Alleen organisatie\"],\"LB3Kje\":[\"Organisatie\"],\"sezvMj\":[\"Organisatie | dembrane\"],\"9L7xZr\":[\"Organisatieaccount\"],\"fGRmCP\":[\"organisatiebeheerder\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Andere hosts kunnen je template zien en kopiëren. Je kunt het op elk moment intrekken.\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Facturering voor overschrijding van toepassing\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Eigendom\"],\"OwPQJt\":[\"Eigendom is vergrendeld. Neem contact op met support om over te dragen.\"],\"HSAzUy\":[\"Eigenaar-organisatie\"],\"6WdDG7\":[\"Pagina\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v4nCHK\":[\"Betaald\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"wSuTzp\":[\"Partneroverdracht. Schrijft billed_to_team_id en informeert beide organisaties.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Portal met wachtwoord beveiligen (aanvraag functie)\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"R7v3cS\":[\"Plak een organisatie-id om de lijst te beperken\"],\"IgrLD/\":[\"Pauze\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"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\":[\"Pending access requests\"],\"V1wW5o\":[\"Actie vereist\"],\"sU2oO4\":[\"Openstaande uitnodigingen\"],\"GC714A\":[\"Openstaande uitnodigingen | dembrane\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"personen\"],\"1wdjme\":[\"Personen\"],\"t9qtWL\":[\"Personen met toegang\"],\"Uoqcz2\":[\"Resultaten per ontvanger:\"],\"hkffer\":[\"Toegang per werkruimte\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Procent\"],\"NtQvjo\":[\"Periode\"],\"ygzsQX\":[\"Permanent. Verwijdert alle gesprekken en data.\"],\"D0meML\":[\"persoon\"],\"OZdaTZ\":[\"Person\"],\"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\"],\"Cu/2SC\":[\"Kies een lid\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Kies een account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Kies minstens één werkruimte om de uitnodiging te versturen.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Kies datum en tijd\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Kies er een\"],\"fwmBX+\":[\"Kies een of meer invalshoeken\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilotlimiet bereikt\"],\"qVkGWK\":[\"Vastpinnen\"],\"u8qC4w\":[\"Project vastpinnen\"],\"S+WiJ3\":[\"Pin sjablonen hier vast voor snelle toegang.\"],\"lepv9z\":[\"Vastpinnen in chatbalk\"],\"fr2ggG\":[\"vastgepind\"],\"kNiQp6\":[\"Vastgezet\"],\"LdWQ+0\":[\"Vastgepind is vol (max 5)\"],\"EC6BHi\":[\"Vastgezette projecten\"],\"RimR35\":[\"Vastgepinde sjablonen\"],\"Atb9XB\":[\"Vastgepind in chatbalk\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan eindigt\"],\"Iqh0Uv\":[\"Gepland\"],\"lWy5a1\":[\"Plannen\"],\"PKrSWk\":[\"Accepteer de voorwaarden om door te gaan.\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"3flRk2\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"S6iyis\":[\"Sluit uw browser alstublieft niet\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"iMWXJN\":[\"Houd dit scherm aan (zwart scherm = geen opname)\"],\"ZhyvmA\":[\"Log in om door te gaan.\"],\"D90h1s\":[\"Log in om door te gaan.\"],\"mUGRqu\":[\"Geef een korte samenvatting van het volgende dat in de context is verstrekt.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Neem uw antwoord op door op de knop \\\"Opnemen\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken. \\n**Houd dit scherm aan** \\n(zwart scherm = geen opname)\"],\"TsuUyf\":[\"Neem uw antwoord op door op de knop \\\"Opname starten\\\" hieronder te klikken. U kunt er ook voor kiezen om in tekst te reageren door op het teksticoon te klikken.\"],\"4TVnP7\":[\"Kies een taal voor je rapport\"],\"N63lmJ\":[\"Kies een taal voor je bijgewerkte rapport\"],\"XvD4FK\":[\"Kies minstens één bron\"],\"hxTGLS\":[\"Selecteer gesprekken in de sidebar om verder te gaan\"],\"GXZvZ7\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander echo aanvraagt.\"],\"Am5V3+\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere Echo aanvraagt.\"],\"CE1Qet\":[\"Wacht \",[\"timeStr\"],\" voordat u een andere ECHO aanvraagt.\"],\"Fx1kHS\":[\"Wacht \",[\"timeStr\"],\" voordat u een ander antwoord aanvraagt.\"],\"MgJuP2\":[\"Wacht aub terwijl we je rapport genereren. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"ei5r44\":[\"Wacht aub terwijl we je rapport bijwerken. Je wordt automatisch doorgestuurd naar de rapportpagina.\"],\"j5KznP\":[\"Wacht aub terwijl we uw e-mailadres controleren.\"],\"6MncU0\":[\"plus werkruimtebeheerders\"],\"rhEYMw\":[\"PNG, JPEG of WebP. Wordt bijgesneden tot een cirkel.\"],\"gL/sdV\":[\"Populair\"],\"uRFMMc\":[\"Portal inhoud\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portaalbewerker\"],\"qVypVJ\":[\"Portaal-editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"Tx36sk\":[\"Portallink\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portaaloverzicht\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postcode\"],\"g2UNkE\":[\"Gemaakt met ❤️ door\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Liever de oude chat? Start een Specifieke details-chat\"],\"np1J1t\":[\"Liever direct chatten? <0>Boek een gesprek met mij\"],\"Q6hhn8\":[\"Voorkeuren\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Je gesprekken worden klaargezet... Dit kan even duren.\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"a7u1N9\":[\"Prijs\"],\"Ub/0bY\":[\"Prijzen zijn exclusief btw.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"S8ugMC\":[\"Rapport afdrukken\"],\"ANWB5x\":[\"Dit rapport afdrukken\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Beveiliging\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy verklaring\"],\"zwBp5t\":[\"Privé\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Privé · alleen genodigden kunnen dit zien\"],\"i4YTOL\":[\"Privéproject\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Privéwerkruimte\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Privéwerkruimtes\"],\"CLI4vR\":[\"Privé, alleen ik\"],\"1ihBUA\":[\"Privé. Voeg mensen toe om het te delen.\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"stk3Hv\":[\"verwerken\"],\"vrnnn9\":[\"Bezig met verwerken\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"kvs/6G\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat.\"],\"q11K6L\":[\"Verwerking van dit gesprek is mislukt. Dit gesprek zal niet beschikbaar zijn voor analyse en chat. Laatste bekende status: \",[\"0\"]],\"NQiPr4\":[\"Transcript wordt verwerkt\"],\"48px15\":[\"Rapport wordt verwerkt...\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Projectacties\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project aangemaakt\"],\"Hie0VV\":[\"Project aangemaakt\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Projectstandaard: ingeschakeld. Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"0qmd8V\":[\"Project standaard: ingeschakeld. Dit zal persoonlijke identificeerbare informatie vervangen door .\"],\"rmmNSG\":[\"Projectstandaarden\"],\"xJ758z\":[\"Projectstandaarden\"],\"aVOwd+\":[\"Project verwijderd\"],\"7TYa2T\":[\"Project goal\"],\"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\":[\"project overview\"],\"hjaZqm\":[\"Project Overzicht\"],\"q0+yfq\":[\"Project Overzicht | dembrane\"],\"O1x7Ay\":[\"Project Overzicht en Bewerken\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Instellingen\"],\"7NmoFz\":[\"Verwacht maandtotaal\"],\"gitVS9\":[\"Verwacht jaartotaal\"],\"M9H+/G\":[\"projecten\"],\"+0B+ue\":[\"Projecten\"],\"DK5DV3\":[\"Projecten | dembrane\"],\"B1WDxD\":[\"Projecten binnen organisatie · \",[\"0\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projecten Home\"],\"uNGCZL\":[\"Projecten verplaatst\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promoveren\"],\"0jyUOa\":[[\"0\"],\" promoveren tot beheerder van \",[\"1\"],\"?\"],\"otGPYX\":[\"Promoveer een lid tot beheerder. Bestaande beheerders houden hun rol.\"],\"Eh2amD\":[\"Promoveren tot beheerder\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Naar rato voor de rest van deze factureringsperiode.\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"6oqr95\":[\"Geef specifieke context om de kwaliteit en nauwkeurigheid van de transcriptie te verbeteren. Dit kan bestaan uit belangrijke termen, specifieke instructies of andere relevante informatie.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publiceren\"],\"vsX8VJ\":[\"Publiceer dit rapport eerst om de portallink te tonen\"],\"GwOmnT\":[\"Publiceer dit rapport om printen mogelijk te maken\"],\"ZSi2AK\":[\"Publiceer dit rapport om delen mogelijk te maken\"],\"IHzoSN\":[\"Publiceer dit rapport om een deellink te krijgen\"],\"u3wRF+\":[\"Gepubliceerd\"],\"4R3R74\":[\"Gepubliceerd in community\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"9iShh/\":[\"Snelle toegang (max 5)\"],\"utRRxm\":[\"Snelle toegang is vol (max 5)\"],\"dN0qso\":[\"Snelle toegang:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[[\"0\"],\" stappen tegelijk uitgevoerd\"],\"iZuzSU\":[\"Snelheidslimiet bereikt\"],\"Z7tUbi\":[\"Beoordeel deze prompt:\"],\"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 →\"],\"6pSHJ5\":[\"Alleen-lezen\"],\"WU7BCa\":[\"Samenvatting van \",[\"0\"],\" lezen\"],\"tFk6c8\":[\"Transcript van \",[\"0\"],\" lezen\"],\"E3kwAc\":[\"Een gesprekssamenvatting lezen\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Een transcript lezen\"],\"DYyFO2\":[\"Projectcontext lezen\"],\"ug1A83\":[\"Reading project settings\"],\"IdmBAm\":[\"Reading the documentation\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ZKOO0I\":[\"Klaar om te beginnen?\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"DqXVNZ\":[\"Klaar om te genereren\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reden\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recente betalingen over alle accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.s3check.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Opname starten\"],\"w80YWM\":[\"Opname starten\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Opnemen blijft werken, dus je deelnemers ondervinden er niets van.\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"9aloPG\":[\"Referenties\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Lopende gesprekken vernieuwen\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Vernieuwen…\"],\"6exX+8\":[\"Opnieuw genereren\"],\"844H5I\":[\"Bibliotheek 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\"],\"w3qEvq\":[\"Registreer als nieuwe gebruiker\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevantie\"],\"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\"],\"hTDMBB\":[\"Pagina herladen\"],\"vqD7S+\":[\"Gebruikers herinneren om te verifiëren voordat ze klaar zijn\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Verwijderen\"],\"w61W3L\":[[\"0\"],\" verwijderen\"],\"G0aZvo\":[[\"0\"],\" verwijderen uit deze werkruimte? Ze verliezen toegang tot alle projecten erin.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Avatar verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"tOkPHm\":[\"Uit chat verwijderen\"],\"T/pF0Z\":[\"Verwijderen uit favorieten\"],\"1G/+Gj\":[\"Uit organisatie verwijderen\"],\"18PmZk\":[\"Uit organisatie verwijderen?\"],\"hHTkR9\":[\"Verwijderen uit snelle toegang\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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\":[\"Removed\"],\"nVEhnc\":[\"Verwijderd uit organisatie\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"2wxgft\":[\"Naam wijzigen\"],\"6PsaMr\":[\"Chat hernoemen\"],\"TBZOgu\":[\"Verlenging\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reactie prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Rapport\"],\"UZ6fKH\":[\"Rapportacties\"],\"e/MQa5\":[\"Rapport wordt al gegenereerd\"],\"Q3LOVJ\":[\"Rapporteer een probleem\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"hh/mvZ\":[\"Rapportgeneratie geannuleerd\"],\"sSy8vA\":[\"Rapport wordt gegenereerd...\"],\"KFQLa2\":[\"Rapport generatie is momenteel in beta en beperkt tot projecten met minder dan 10 uur opname.\"],\"v7O77U\":[\"Rapportgeneratie is geannuleerd. Je kunt hieronder een nieuw rapport starten.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"M9snPp\":[\"Rapport gepland\"],\"mgTmvC\":[\"Rapportstructuur\"],\"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\"],\"uLZGK+\":[\"Toegang aanvragen\"],\"cH8Bhd\":[\"Aanvraag goedgekeurd\"],\"ViqcVt\":[\"Aanvraag afgewezen\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"8H5nRH\":[\"Wachtwoord reset aanvragen | dembrane\"],\"1RVBJe\":[\"Aanvraag verzonden\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Aangevraagde en geplande trainingen. Markeer een training als voltooid om elke deelnemer een licentie van een jaar te geven.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Herplannen\"],\"6eIR/n\":[\"Opnieuw plannen naar\"],\"ZSTojU\":[\"Uitnodiging opnieuw versturen\"],\"8WtTog\":[\"Uitnodiging opnieuw versturen\"],\"OfhWJH\":[\"Resetten\"],\"xeMrqw\":[\"Alle opties resetten\"],\"I9EnzM\":[\"Filters resetten\"],\"kvDiMS\":[\"Maandelijks gebruik resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"9uplIY\":[\"Wachtwoord resetten | dembrane\"],\"GdFnED\":[\"De geregistreerde uren van deze cyclus voor \",[\"0\"],\" resetten? Dit wordt vastgelegd in het auditlogboek.\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"8xXw6q\":[\"Gebruik resetten\"],\"s+MGs7\":[\"Bronnen\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"v39wLo\":[\"Hervatten\"],\"1K1kvB\":[\"Abonnement hervatten\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"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\":[\"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\":[\"Controleer voordat je aanmaakt.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"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\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Uitnodiging intrekken\"],\"HZn3qT\":[\"Revoke license\"],\"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\":[\"Rough estimate to finish transcribing the backlog\"],\"xxCtZv\":[\"Rijen per pagina\"],\"3JjdaA\":[\"Uitvoeren\"],\"IqCtR/\":[\"Uitvoeringsstatus:\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Verkoopfactuur uitgegeven.\"],\"tfDRzk\":[\"Opslaan\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Opslaan als template\"],\"gjqGP0\":[\"Factuurgegevens opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"qjHQoH\":[\"Korting opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"RgyKxd\":[\"Snelle toegang opslaan\"],\"5dVjYt\":[\"Template opslaan\"],\"zaYZWH\":[\"Opslaan in mijn templates\"],\"idD8Ev\":[\"Opgeslagen\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Opslaan...\"],\"JnhbnC\":[\"Scan of klik op de QR-code om het feedbackportaal te openen\"],\"yxrvvl\":[\"Scan of klik om het feedbackportaal te openen\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"SGnha7\":[\"Scan to join this project\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Plannen\"],\"QS1Nla\":[\"Later inplannen\"],\"wCGy0o\":[\"Rapport inplannen\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Ingepland\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Zoek en selecteer de gesprekken voor deze chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"QU2qoc\":[\"Zoek op naam of e-mail\"],\"6/qy61\":[\"Zoek op partner, klant, werkruimte\"],\"l9vi1F\":[\"Zoek mensen\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Zoek project of werkruimte\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"Ix2UwQ\":[\"Zoek projecten, organisaties, werkruimtes, instellingen…\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Zoekresultaten\"],\"lnWve4\":[\"Zoek tags\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Zoek werkruimtes\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"mHOLEz\":[\"Gesprekken doorzoeken\"],\"rI5Wda\":[\"Gesprekken doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Zoeken door de meest relevante bronnen\"],\"hoK9sq\":[\"Transcripten doorzoeken\"],\"/DtZhN\":[\"Transcripten doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Zoeken…\"],\"MpFIca\":[\"plekken\"],\"grt0Pu\":[\"Plekken\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Plekken vol\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"Eyh9/O\":[\"Gespreksstatusdetails bekijken\"],\"ruKb0q\":[\"Bekijk abonnementen\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"Tot snel\"],\"XZRu52\":[\"Ziet gebruik en facturen. Geen toegang tot projecten of content.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segmenten\"],\"rG3WVm\":[\"Selecteren\"],\"02ePaq\":[[\"0\"],\" selecteren\"],\"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\":[\"Select conversation\"],\"5z/6Uk\":[\"Gesprekken selecteren\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"G4qJaj\":[\"Selecteer gesprekken om door te gaan\"],\"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\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"vKH1Ye\":[\"Selecteer je microfoon:\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Verzenden\"],\"iJyjJ8\":[[\"0\"],\" uitnodigingen versturen\"],\"3mlq2q\":[\"Stuur een bericht om een agentisch uitvoeringsproces te starten.\"],\"Hvnq/n\":[\"Uitnodiging versturen\"],\"FCfEtD\":[\"Uitnodigingen versturen\"],\"4k2VbT\":[\"Verzoek versturen\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Verstuurd\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[[\"sentCount\"],\" van \",[\"0\"],\" verstuurd. Bekijk de lijst hieronder.\"],\"VTmyvi\":[\"Gevoel\"],\"XyiDbI\":[\"Apart (klant)\"],\"OnmeuT\":[\"Scheid met komma's, spaties of nieuwe regels.\"],\"NprC8U\":[\"Sessienaam\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Instellen als beheerd\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Werkruimte instellen\"],\"J4TuIW\":[\"Stel je eerste organisatie in\"],\"aBwEIZ\":[\"Stel je organisatie in\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Stel je werkruimte in | dembrane\"],\"2zDY/H\":[\"Bepaal wie het kan zien en kan deelnemen.\"],\"A6EhcS\":[\"We zetten alles voor je klaar\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Installeer je eerste project\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"BVRW7i\":[\"Instellingen | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Instellen\"],\"Z8lGw6\":[\"Delen\"],\"OuFYHU\":[\"Rapport delen\"],\"nzT4VD\":[\"Deel het project, volg live activiteit en spring vanaf één plek naar de belangrijkste tools.\"],\"/XNQag\":[\"Dit rapport delen\"],\"lRZMol\":[\"Delen met community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Deel met iemand\"],\"dNCDbY\":[\"Delen met de community\"],\"bM7Rp3\":[\"Deel met werkruimte\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"nnWGzO\":[\"Deel uw ideeën met ons team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Deel je stem\"],\"4o0klJ\":[\"Deel je stem door de QR-code te scannen\"],\"swzLuF\":[\"Deel je stem door het QR-code hieronder te scannen.\"],\"jqnSi6\":[\"Gedeeld met\"],\"YJJJo3\":[\"Gedeeld met \",[\"0\"]],\"zIgU4M\":[\"Gedeeld met \",[\"0\"],\" en \",[\"overflow\"],\" anderen\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Kortste eerst\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"h8lzfw\":[\"Toon \",[\"0\"]],\"ZptNUh\":[\"Toon \",[\"hidden\"],\" meer\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Toon een link waarmee deelnemers kunnen bijdragen\"],\"lZw9AX\":[\"Toon alles\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"9Resvw\":[\"Toon details\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Toon duur\"],\"YbxwRo\":[\"Gegenereerde suggesties tonen\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Toon projecten\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Toon tijdlijn in rapport (aanvraag functie)\"],\"DLEIpN\":[\"Toon tijdstempels (experimenteel)\"],\"RpOvMh\":[[\"0\"],\" van \",[\"1\"],\" weergegeven\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"8Lpud3\":[\"Uw meest recente voltooide rapport wordt getoond.\"],\"HHR5pX\":[\"Wordt getoond in de organisatiekop en in onderwerpregels van e-mails.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Inloggen met Google\"],\"6Uau97\":[\"Overslaan\"],\"participant.button.verify_prompt.skip\":[\"Overslaan\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Gegevensprivacy slides (Host beheert rechtsgrondslag)\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack-community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Sommige gesprekken worden nog verwerkt. Automatische selectie zal optimaal werken zodra de audioverwerking is voltooid.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"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.\"],\"zazql1\":[\"Er ging iets mis bij het genereren van je laatste rapport. Je meest recente voltooide rapport wordt getoond.\"],\"2WNFmv\":[\"Er is iets misgegaan bij het genereren van uw rapport.\"],\"a75OAp\":[\"Er ging iets mis bij het genereren van je rapport. Je kunt het hieronder opnieuw proberen.\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"JOKTb4\":[\"Er ging iets mis tijdens het uploaden van het bestand: \",[\"0\"]],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"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\"]],\"u7yVRn\":[\"Bronnen:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spaans\"],\"zuoIYL\":[\"Spreker\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"vf1Tc/\":[\"Specific Details heeft minstens één gesprek nodig.\"],\"uXsB4R\":[\"Personeel\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"eicGWU\":[\"Alleen personeel\"],\"vtV8C/\":[\"Staff-created\"],\"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\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"c6FrMu\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Opname starten\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Begint\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\":[\"Kom je er nog niet uit? Mail <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"y01Zb9\":[\"Stop this run\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"kimwwT\":[\"Strategische Planning\"],\"BVSaId\":[\"Sterk wachtwoord\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Ingereed via tekstinput\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Succes\"],\"aG+cH9\":[\"Dynamische suggesties voorstellen op basis van uw gesprek.\"],\"aZJj7n\":[\"Suggesties op basis van je gesprekken\"],\"FyUg+Y\":[\"Suggesties op basis van je gesprekken. Stuur een bericht om het in actie te zien.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"F1nkJm\":[\"Samenvatten\"],\"4ZpfGe\":[\"Vat de belangrijkste inzichten uit mijn interviews samen\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"g6o+7L\":[\"Samenvatting gemaakt.\"],\"zdF7Nh\":[\"Samenvatting gegenereerd.\"],\"kiOob5\":[\"Samenvatting nog niet beschikbaar\"],\"OUi+O3\":[\"Samenvatting opnieuw gemaakt.\"],\"hlaWg4\":[\"Samenvatting opnieuw gegenereerd.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"/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\"],\"S+yFI2\":[\"Supportincident, dubbel geteld upload, enz.\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"Systeem\"],\"InGQz2\":[\"Systeemstatus\"],\"N3D6GN\":[\"Tag verwijderd\"],\"OYHzN1\":[\"Trefwoorden\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\":[\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"QCchuT\":[\"Template toegepast\"],\"JcCDm9\":[\"Sjabloon aangemaakt\"],\"ZTgE3k\":[\"Sjabloon verwijderd\"],\"5OwALL\":[\"Template naam\"],\"1UeZgj\":[\"Template prompt inhoud...\"],\"PQb/If\":[\"Sjabloon bijgewerkt\"],\"iTylMl\":[\"Sjablonen\"],\"4Y5H+g\":[\"Voorwaarden\"],\"qYLZL2\":[\"testmodus\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"EM1Aiy\":[\"Bedankt Pagina\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"De ingebouwde probleemmelder kon niet worden geladen. U kunt ons nog steeds laten weten wat er mis is gegaan via ons feedbackportaal. Het helpt ons problemen sneller op te lossen dan wanneer er geen rapport wordt ingediend.\"],\"gtMB2A\":[\"De ingebouwde probleemmelder kon niet worden geladen. U kunt ons nog steeds laten weten wat er mis is gegaan via ons feedbackportaal. Het helpt ons problemen sneller op te lossen dan wanneer er geen rapport wordt ingediend.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"nO942E\":[\"Het gesprek kon niet worden geladen. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"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.\"],\"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.\"],\"woefOb\":[\"De probleemmelder kon niet worden geladen. Gebruik het feedbackportaal om ons te laten weten wat er mis is gegaan — het helpt ons problemen sneller op te lossen dan wanneer er geen rapport wordt ingediend.\"],\"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\":[\"The methodology is the way this project is set up and guided.\"],\"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.\"],\"Lngj9Y\":[\"De Portal is de website die wordt geladen wanneer deelnemers het QR-code scannen.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"de projectbibliotheek.\"],\"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.\"],\"iV8+33\":[\"De samenvatting wordt hergeneratie. Wacht tot de nieuwe samenvatting beschikbaar is.\"],\"AgC2rn\":[\"De samenvatting wordt hergeneratie. Wacht tot 2 minuten voor de nieuwe samenvatting beschikbaar is.\"],\"PTNxDe\":[\"Het transcript voor dit gesprek wordt verwerkt. Controleer later opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"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.\"],\"J4a6pu\":[\"Their screen is locked or the tab is hidden — recording pauses until they come back.\"],\"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.\"],\"e3JUb8\":[\"Er is een fout opgetreden bij het genereren van uw rapport. In de tijd, kunt u alle uw gegevens analyseren met de bibliotheek of selecteer specifieke gesprekken om te praten.\"],\"7qENSx\":[\"Er is een fout opgetreden bij het bijwerken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"V7zEnY\":[\"Er is een fout opgetreden bij het controleren van uw e-mail. Probeer het alstublieft opnieuw.\"],\"gtlVJt\":[\"Dit zijn enkele nuttige voorbeeld sjablonen om u te helpen.\"],\"sd848K\":[\"Dit zijn uw standaard weergave sjablonen. Zodra u uw bibliotheek hebt gemaakt, zullen deze uw eerste twee weergaven zijn.\"],\"D8iLCl\":[\"These changes are applied to your 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\":[\"These tag changes are applied to your 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\":[\"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\":[\"Dit gedeelte is voor dembrane-personeel. Denk je dat je toegang zou moeten hebben? Mail dan support@dembrane.com.\"],\"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\":[\"This canvas could not update.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"dt1MDy\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort.\"],\"5ZpZXq\":[\"Dit gesprek wordt nog verwerkt. Het zal beschikbaar zijn voor analyse en chat binnenkort. \"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"JtPxD5\":[\"Deze e-mail is al geabonneerd op meldingen.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"Deze informatie is anoniem\"],\"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\":[\"This is not saved yet.\"],\"WXWXYi\":[\"Dit is de nieuwe chatervaring\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"gqYJin\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"sNnJJH\":[\"Dit is uw projectbibliotheek. Momenteel zijn \",[\"0\"],\" gesprekken in behandeling om te worden verwerkt.\"],\"BLwPhM\":[\"Dit is niet beschikbaar voor jou\"],\"tJL2Lh\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie.\"],\"BAUPL8\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer en transcriptie. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in de instellingen in de header.\"],\"zyA8Hj\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer, transcriptie en analyse. Om de taal van deze toepassing te wijzigen, gebruikt u de taalkiezer in het gebruikersmenu in de header.\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"2033EA\":[\"Deze link is al gebruikt. Je bent ingelogd en kunt aan de slag.\"],\"MR5ygV\":[\"Deze link is niet meer geldig\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"ktjzjk\":[\"dit lid\"],\"b0F4W5\":[\"this month\"],\"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\":[\"This organisation has no members to train yet.\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"Dit project is zichtbaar voor iedereen in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"Dit project is zichtbaar voor iedereen in de werkruimte.\"],\"bEbdFh\":[\"Deze projectbibliotheek is op\"],\"No7/sO\":[\"Deze projectbibliotheek is op \",[\"0\"],\" gemaakt.\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"Hiermee komt de werkruimte terug bij de gedeelde facturering van je organisatie en wordt de externe data-eigenaar verwijderd.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"Deze samenvatting is AI-gegenereerd en kort, voor een uitgebreide analyse, gebruik de Chat of Bibliotheek.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"ABJz8Q\":[\"This verification prompt is added to your 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.\"],\"n4l4/n\":[\"Dit zal persoonlijk herkenbare informatie vervangen door .\"],\"mSuhYn\":[\"deze werkruimte\"],\"8b9oJD\":[\"Deze werkruimte heeft de opnamelimiet bereikt. Upgrade om meer audio te uploaden.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"Deze werkruimte zit op een niveau dat geen extra plekken toelaat. Upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"vvEr5j\":[\"Deze werkruimte bestaat niet meer\"],\"+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\":[\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Tijd\"],\"Ww6cQ8\":[\"Tijd gemaakt\"],\"cklVjM\":[\"Timeline\"],\"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\":[\"Title guidance\"],\"Mozc0C\":[\"Titel of deelnemer\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"Om een nieuwe tag toe te wijzen, maak je deze eerst aan in de portalinstellingen.\"],\"5h7Z+m\":[\"Om een nieuw trefwoord toe te wijzen, maak het eerst in het projectoverzicht.\"],\"o3rowT\":[\"Om een rapport te genereren, voeg eerst gesprekken toe aan uw project\"],\"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\"],\"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\":[\"Training date\"],\"1gL8o6\":[\"Training aangevraagd. We nemen contact op om het in te plannen.\"],\"KxpIJA\":[\"Training vereist voor gebruik met hoog risico\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Trainingsverificatie is hier niet beschikbaar.\"],\"K6d+TY\":[\"Training: \",[\"0\"]],\"cP0LwD\":[\"Trainingen\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcriptie\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript niet beschikbaar\"],\"N/50DC\":[\"Transcriptie Instellingen\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcriptie wordt uitgevoerd...\"],\"0l9syB\":[\"Transcriptie wordt uitgevoerd…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Werkruimte overdragen aan een andere organisatie\"],\"H3fItl\":[\"Transformeer deze transcripties in een LinkedIn-post die door de stof gaat. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de transcripties\\nSchrijf het als een ervaren leider die conventionele kennis vervant, niet een motiveringsposter\\nZoek een echt verrassende observatie die zelfs ervaren professionals zou moeten laten stilstaan\\nBlijf intellectueel diep terwijl je direct bent\\nGebruik alleen feiten die echt verrassingen zijn\\nHou de tekst netjes en professioneel (minimaal emojis, gedachte voor ruimte)\\nStel een ton op die suggereert dat je zowel diep expertise als real-world ervaring hebt\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"lhkaAC\":[\"Proef\"],\"hDv2MY\":[\"Proef- en gratis accounts, niet meegerekend in het betalende totaal.\"],\"0Ux4+O\":[\"Proefperiode toegekend\"],\"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\"],\"qJb6G2\":[\"Opnieuw proberen\"],\"u62wQ4\":[\"Try again in a moment.\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"sZgR8D\":[\"Try it\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Typ een bericht...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Oekraïens\"],\"dubg//\":[\"Oekraïens (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"8vqTzl\":[\"Het gegenereerde artefact kan niet worden geladen. Probeer het opnieuw.\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Onder je organisatie\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"wF2wqQ\":[\"Onbekende datum\"],\"rIOkYf\":[\"Onbekend lid\"],\"1MTTTw\":[\"Onbekende reden\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Onbeperkt aantal uren\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Losmaken\"],\"vSdeRU\":[\"Maak eerst een project los (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Maak eerst een project los (max 3)\"],\"dFIzZ6\":[\"Losmaken van chatbalk\"],\"dx+iaL\":[\"Project losmaken\"],\"KyKziT\":[\"Intrekken uit community\"],\"KuVpz+\":[\"Ongelezen\"],\"H899Z+\":[\"ongelezen melding\"],\"0pinHa\":[\"ongelezen meldingen\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"nOxIVE\":[\"Untagged\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Naamloos\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Naamloos gesprek\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Naamloos rapport\"],\"+TYrZZ\":[\"Tot \",[\"0\"],\" deelnemers\"],\"RHUiSf\":[\"Tot \",[\"0\"],\" deelnemers zijn inbegrepen.\"],\"EkH9pt\":[\"Bijwerken\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Bijwerken rapport\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Bijwerken rapport om de meest recente gegevens te bevatten\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Bijwerken rapport om de meest recente wijzigingen in uw project te bevatten. De link om het rapport te delen zou hetzelfde blijven.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Bijgewerkt\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Bijgewerkt \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgraden\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"yM+69W\":[\"Upgraden naar \",[\"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\":[\"Upgraden om te ontgrendelen\"],\"UkyAtj\":[\"Upgrade om automatisch selecteren te ontgrendelen en analyseer 10x meer gesprekken in de helft van de tijd - geen handmatige selectie meer, gewoon diepere inzichten direct.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Audio uploaden\"],\"AIGPM8\":[\"Avatar uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"Wft2yh\":[\"Upload bezig\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Uploadlimiet bereikt. Upgrade je werkruimte.\"],\"4vsWBY\":[\"Upload vergrendeld\"],\"QfiWpJ\":[\"Logo uploaden\"],\"JveaeL\":[\"Bronnen uploaden\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"7FaY4u\":[\"Gebruik\"],\"6YK+1q\":[\"Gebruik · \",[\"0\"]],\"9TZVmX\":[\"Gebruik en facturering\"],\"589hpo\":[\"Gebruik en facturering, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Gebruik en facturering, betalingen, partnergrootboek. Elke Directus-beheerder heeft toegang.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Gebruik wordt bijgehouden voor je organisatie. Bekijk het in de organisatie-instellingen.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Gebruik deze cyclus\"],\"DsBeuB\":[\"Gebruiken\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Experimentele functies gebruiken\"],\"rmMdgZ\":[\"PII redaction gebruiken\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"UATe28\":[\"Used / Included\"],\"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\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"Ttw+e+\":[\"Btw-nummer\"],\"/n0QEP\":[\"Btw-regio\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"participant.modal.verify_prompt.title\":[\"Herinnering om te verifiëren\"],\"participant.banner.verification_required\":[\"Verificatie vereist\"],\"OKGlwv\":[\"Verification topics\"],\"GWpt68\":[\"Verificatie-onderwerpen\"],\"c242dc\":[\"geverifieerd\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"QDEWii\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"swn5Tq\":[\"geverifieerd artefact\"],\"ob18eo\":[\"Geverifieerde artefacten\"],\"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\":[\"Verifying\"],\"iOnm3W\":[\"Je e-mailadres wordt geverifieerd.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Weergave\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"Bekijk gesprekdetails\"],\"H1e6Hv\":[\"Bekijk gespreksstatus\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"j45ntU\":[\"Uitnodiging bekijken\"],\"7bvD/5\":[\"Gelezen meldingen bekijken\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"Bekijk je reacties\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"weergaven\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wacht \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Wachten tot gesprekken zijn afgerond voordat een rapport wordt gegenereerd.\"],\"tCfopB\":[\"Wilt u aangepaste rapportstructuren?\"],\"VKMCO0\":[\"Wil je een template toevoegen aan \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Wil je een template toevoegen aan ECHO?\"],\"v8z9fL\":[\"Wilt u het uiterlijk van uw rapport aanpassen?\"],\"r6y+jM\":[\"Waarschuwing\"],\"pUTmp1\":[\"Waarschuwing: je hebt \",[\"0\"],\" sleutelwoorden toegevoegd. Alleen de eerste \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" worden door de transcriptie-engine gebruikt.\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"SrJOPD\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"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.\"],\"Ewk6kb\":[\"We konden het audio niet laden. Probeer het later opnieuw.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We konden deze werkruimte niet laden. Probeer het zo meteen opnieuw.\"],\"zPjLTr\":[\"We konden het gebruik van deze werkruimte niet laden.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We konden je betaalmethode niet bijwerken. Je oude methode is nog actief. Probeer het opnieuw.\"],\"xMeAeQ\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap.\"],\"9qYWL7\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met evelien@dembrane.com\"],\"3fS27S\":[\"We hebben u een e-mail gestuurd met de volgende stappen. Als u het niet ziet, checkt u uw spammap. Als u het nog steeds niet ziet, neem dan contact op met jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link to finish setting up your account.\"],\"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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"tQtKw5\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"2ZUkkL\":[\"We zijn deze functie aan het ontwerpen en horen graag uw feedback.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"Yc3tsw\":[\"We hebben een verificatielink naar <0>\",[\"0\"],\" gestuurd. Open de e-mail en klik op de link om verder te gaan.\"],\"fylXkT\":[\"Weak network\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welkom in Big Picture Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Details mode.\"],\"OM+lH0\":[\"Welkom bij dembrane\"],\"1GYTCh\":[\"Welkom bij dembrane Chat! Gebruik de zijbalk om bronnen en gesprekken te selecteren die je wilt analyseren. Daarna kun je vragen stellen over de geselecteerde inhoud.\"],\"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!\"],\"TACmoL\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Deep Dive Mode.\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"Bck6Du\":[\"Welkom bij Rapporten!\"],\"aEpQkt\":[\"Welkom op je Home! Hier kun je al je projecten bekijken en toegang krijgen tot tutorialbronnen. Momenteel heb je nog geen projecten. Klik op \\\"Maak\\\" om te beginnen!\"],\"J2FSRx\":[\"Welkom, \",[\"displayName\"]],\"klH6ct\":[\"Welkom!\"],\"Tfxjl5\":[\"Wat zijn de belangrijkste thema's in alle gesprekken?\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"nCQNTt\":[\"Wat wil je te weten komen?\"],\"En5QxT\":[\"Wat kan Vragen doen?\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"WSxXHT\":[\"Waarvoor wil je dembrane gebruiken?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"fyMvis\":[\"Welke patronen zie je in de data?\"],\"pVIWuw\":[\"Wat moet ECHO analyseren of genereren uit de gesprekken?\"],\"ZsEVar\":[\"Waar moet dit rapport zich op richten?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"Wat dit project deze cyclus verbruikt.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"Ul3erb\":[\"What you can reach\"],\"3ePd3I\":[\"Wat is 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.\"],\"LEYli4\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"MEmr1I\":[\"Wanneer je het gesprek afmaakt, worden deelnemers die nog niet hebben geverifieerd gevraagd om te verifiëren of over te slaan\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move across the stages in real time.\"],\"/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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Wie dit project kan zien en eraan kan samenwerken.\"],\"P9WL8r\":[\"Wie kan dit project zien?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\":[\"wish\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"Met externe klanten\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Binnen mijn organisatie\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Bezig met je antwoord...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"werkruimte\"],\"pmUArF\":[\"Werkruimte\"],\"VmdouC\":[\"Werkruimte-account\"],\"Zqthj7\":[\"Werkruimte-acties\"],\"dF5lba\":[\"Werkruimtebeheerder gewijzigd\"],\"tPe+ak\":[\"Workspace created\"],\"ZBKhLV\":[\"Werkruimte aangemaakt.\"],\"1hyEG5\":[\"Werkruimtedata nog niet geladen. Probeer het opnieuw.\"],\"UlhdTP\":[\"Werkruimte verwijderd\"],\"Ep8k4i\":[\"Werkruimte is vol\"],\"P29tQ5\":[\"Workspace limit reached\"],\"Y0Fj4S\":[\"Werkruimtelogo\"],\"CozWO1\":[\"Naam van de werkruimte\"],\"dg0Efy\":[\"Naam van de werkruimte. Wordt automatisch opgeslagen.\"],\"wHWiPE\":[\"Werkruimte hernoemd\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Werkruimte-instellingen | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Gast met alleen toegang tot de werkruimte. Niet toegevoegd aan de organisatie.\"],\"JKU2hI\":[\"werkruimtes\"],\"pmt7u4\":[\"Werkruimtes\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\":[\"Workspaces you can join\"],\"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\":[\"you\"],\"kWJmRL\":[\"Jij\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"Je kunt de vraagfunctie nog steeds gebruiken om met elk gesprek te chatten\"],\"ORA5nz\":[\"U kunt het hieronder opnieuw proberen.\"],\"96ERwL\":[\"Je kunt nog geen werkruimte aanmaken\"],\"bHCu+u\":[\"Je kunt jezelf niet uitnodigen.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team instead.\"],\"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.\"],\"vCyT5z\":[\"Je hebt enkele gesprekken die nog niet zijn verwerkt. Regenerate de bibliotheek om ze te verwerken.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"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.\"],\"1kxxiH\":[\"Je kunt er voor kiezen om een lijst met zelfstandige naamwoorden, namen of andere informatie toe te voegen die relevant kan zijn voor het gesprek. Dit wordt gebruikt om de kwaliteit van de transcripties te verbeteren.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"t6Ti2e\":[\"Je hebt een uitnodiging van een collega nodig\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"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.\"],\"SqF5u9\":[\"Je bent een externe in deze werkruimte. Projecten verschijnen hier zodra iemand in de organisatie er een met je deelt.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate for an invite.\"],\"Y3LcET\":[\"Je maakt op dit moment deel uit van geen enkele organisatie.\"],\"ta24bs\":[\"You're on \",[\"0\"],\", but there's no active subscription. Subscribe to set up billing and keep it.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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\":[\"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\":[\"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\":[\"Your \",[\"0\"],\" access ends on \",[\"endDate\"],\", then moves to Free. Subscribe to keep it.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Uw gesprek wordt momenteel getranscribeerd. Controleer later opnieuw.\"],\"OFDbfd\":[\"Je gesprekken\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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\":[\"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.\"],\"PUWgP9\":[\"Je bibliotheek is leeg. Maak een bibliotheek om je eerste inzichten te bekijken.\"],\"JgZh6f\":[\"Je logo is nog actief, maar kan op dit niveau niet worden gewijzigd.\"],\"q8yluz\":[\"Uw naam\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"wurHZF\":[\"Je reacties\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lZNgiw\":[\"Je weergaven\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Van jou\"],\"crrqaX\":[\"jr\"],\"htVSbz\":[\"Zet de geregistreerde uren van deze cyclus vanaf nu op nul. Gesprekken blijven behouden; alleen de factureringsteller wordt gereset.\"],\"ACjxWW\":[\"Zoom\"],\"CXKyns\":[\"*Bij dembrane staat privacy op een!*\"],\"lbvVjA\":[\"*Oh, we hebben geen cookievermelding want we gebruiken geen cookies! We eten ze op.*\"],\"BHbwjT\":[\"*We zorgen dat niks terug te leiden is naar jou als persoon, ook al zeg je per ongeluk je naam, verwijderen wij deze voordat we alles analyseren. Door deze tool te gebruiken, ga je akkoord met onze privacy voorwaarden. Wil je meer weten? Lees dan onze [privacy verklaring]\"],\"9h9TAE\":[\"Voeg context toe aan document\"],\"2FU6NS\":[\"Context toegevoegd\"],\"3wfZhO\":[\"AI Assistent\"],\"2xZOz+\":[\"Alle documenten zijn geüpload en zijn nu klaar. Welke onderzoeksvraag wil je stellen? Optioneel kunt u nu voor elk document een individuele analysechat openen.\"],\"hQYkfg\":[\"Analyseer!\"],\"YZ/0Ou\":[\"meldingen\"],\"/B0ynG\":[\"Ben je er klaar voor? Druk dan op \\\"Klaar om te beginnen\\\".\"],\"SWNYyh\":[\"Weet je zeker dat je dit document wilt verwijderen?\"],\"BONLYh\":[\"Weet je zeker dat je wilt stoppen met opnemen?\"],\"8V3/wO\":[\"Stel een algemene onderzoeksvraag\"],\"BwyPXx\":[\"Stel een vraag...\"],\"xWEvuo\":[\"Vraag AI\"],\"uY/eGW\":[\"Stel Vraag\"],\"IDeRjd\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verify in te schakelen.\"],\"yRcEcN\":[\"Voeg zoveel documenten toe als je wilt analyseren\"],\"2wg92j\":[\"Gesprekken\"],\"hWszgU\":[\"De bron is verwijderd\"],\"kAJX3r\":[\"Maak een nieuwe sessie aan\"],\"jPQSEz\":[\"Maak een nieuwe werkruimte aan\"],\"Okya3r\":[\"Laat deelnemers AI-ondersteunde feedback krijgen op hun gesprekken met Maak het concreet.\"],\"nLsy1T\":[\"Experimentele functie\"],\"3KMnYN\":[\"Maak het concreet\"],\"bdRMrj\":[\"Kies een concreet onderwerp\"],\"GSV2Xq\":[\"Schakel deze functie in zodat deelnemers geverifieerde objecten uit hun inzendingen kunnen maken en goedkeuren. Dat helpt belangrijke ideeën, zorgen of samenvattingen te concretiseren. Na het gesprek kun je filteren op gesprekken met geverifieerde objecten en ze in het overzicht bekijken.\"],\"7qaVXm\":[\"Experimenteel\"],\"FclDDn\":[\"Verify\"],\"Y/Fou9\":[\"Selecteer welke onderwerpen deelnemers voor verificatie kunnen gebruiken.\"],\"+vDIXN\":[\"Verwijder document\"],\"hVxMi/\":[\"Document AI Assistent\"],\"RcO3t0\":[\"Document wordt verwerkt\"],\"BXpCcS\":[\"Document is verwijderd\"],\"E/muDO\":[\"Documenten\"],\"6NKYah\":[\"Sleep documenten hierheen of selecteer bestanden\"],\"GSQ8We\":[\"Echo inschakelen\"],\"GpCBCW\":[\"ECHO inschakelen\"],\"IHqkFL\":[\"Reactie inschakelen\"],\"7DwYDY\":[\"Verify inschakelen\"],\"Mb+tI8\":[\"Eerst vragen we een aantal korte vragen, en dan kan je beginnen met opnemen.\"],\"Ra6776\":[\"Algemene Onderzoeksvraag\"],\"wUQkGp\":[\"Geweldig! Uw documenten worden nu geüpload. Terwijl de documenten worden verwerkt, kunt u mij vertellen waar deze analyse over gaat?\"],\"rsGuuK\":[\"Hallo, ik ben vandaag je onderzoeksassistent. Om te beginnen upload je de documenten die je wilt analyseren.\"],\"6iYuCb\":[\"Hi, Fijn dat je meedoet!\"],\"R5z6Q2\":[\"Voer algemene context in\"],\"Lv2yUP\":[\"Deelnemingslink\"],\"qwmGiT\":[\"Neem contact op met sales\"],\"ZWDkP4\":[\"Momenteel zijn \",[\"finishedConversationsCount\"],\" gesprekken klaar om geanalyseerd te worden. \",[\"unfinishedConversationsCount\"],\" worden nog verwerkt.\"],\"/NTvqV\":[\"Bibliotheek niet beschikbaar\"],\"p18xrj\":[\"Bibliotheek opnieuw genereren\"],\"xFtWcS\":[\"Nog geen documenten geüpload\"],\"meWF5F\":[\"Geen bronnen gevonden. Voeg bronnen toe met behulp van de knop boven aan.\"],\"hqsqEx\":[\"Open Document Chat ✨\"],\"FimKdO\":[\"Originele bestandsnaam\"],\"4sRD2K\":[\"Je transcriptie wordt geanonimiseerd en je host kan niet naar je opname luisteren.\"],\"hOtk0x\":[\"Echo\"],\"+4oo+H\":[\"Ga dieper\"],\"JsSzzl\":[\"ECHO\"],\"5CMnu3\":[\"Maak het concreet\"],\"SUkFIX\":[\"Pauze\"],\"jZl7iI\":[\"Verfijnen\"],\"ilKuQo\":[\"Hervatten\"],\"SqNXSx\":[\"Nee\"],\"yfZBOp\":[\"Ja\"],\"J08RAX\":[\"Er ging iets mis bij het laden van je tekst. Probeer het nog een keer.\"],\"1UpEyy\":[\"Er ging iets mis met dit artefact\"],\"ifB91T\":[\"Als je dit goedkeurt, helpt dat om het proces te verbeteren\"],\"WWAi3R\":[\"Keur het artefact goed of pas het aan voordat je doorgaat.\"],\"RZjFD0\":[\"Aan de slag\"],\"4ooXad\":[\"Instructies aan het laden…\"],\"IAnV8V\":[\"Lees de tekst hardop voor en check of het goed voelt.\"],\"ljh/ll\":[\"Je krijgt zo een concreet voorbeeld (artefact) om mee te werken\"],\"57WG7r\":[\"Pas de tekst aan zodat hij echt bij jou past. Je mag alles veranderen.\"],\"QyhAZr\":[\"Nieuwe tekst aan het maken…\"],\"jdp5y2\":[\"Volgende\"],\"emTnfv\":[\"Kies een concreet voorbeeld\"],\"cic45J\":[\"We kunnen deze aanvraag niet verwerken vanwege de inhoudsbeleid van de LLM-provider.\"],\"CvZqsN\":[\"Er ging iets mis. Probeer het alstublieft opnieuw door op de knop <0>ECHO te drukken, of neem contact op met de ondersteuning als het probleem blijft bestaan.\"],\"P+lUAg\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"PKJbS8\":[\"Dit gesprek kan nu niet dieper. Probeer het straks nog een keer.\"],\"FO6Pkc\":[\"We hebben je opname tot <0>\",[\"formattedDuration\"],\" opgeslagen, maar de rest is verloren gegaan, sorry. <1/> Druk hieronder om opnieuw te verbinden en druk dan op opnemen om verder te gaan.\"],\"Qgb/Rk\":[\"We hebben iets meer context nodig om je effectief te helpen verfijnen. Ga alsjeblieft door met opnemen, zodat we betere suggesties kunnen geven.\"],\"Akipk/\":[\"Functie binnenkort beschikbaar\"],\"CX9hhl\":[\"Maak het concreet\"],\"hh87/E\":[\"\\\"Dieper ingaan\\\" is binnenkort beschikbaar\"],\"WhOUEg\":[\"\\\"Verfijnen\\\" is binnenkort beschikbaar\"],\"+OsWrs\":[\"Ga dieper\"],\"RMxlMe\":[\"\\\"Maak het concreet\\\" is binnenkort beschikbaar\"],\"7UJhVX\":[\"Weet je zeker dat je het wilt stoppen?\"],\"RDsML8\":[\"Gesprek stoppen\"],\"rnRImh\":[\"Ga dieper\"],\"KCI9d+\":[\"Maak het concreet\"],\"IaLTNH\":[\"Goedkeuren\"],\"+f3bIA\":[\"Annuleren\"],\"qgx4CA\":[\"Herzien\"],\"E+5M6v\":[\"Opslaan\"],\"Q82shL\":[\"Ga terug\"],\"yOp5Yb\":[\"Pagina opnieuw laden\"],\"tw+Fbo\":[\"Het lijkt erop dat we dit artefact niet konden laden. Dit is waarschijnlijk tijdelijk. Probeer het opnieuw te laden of ga terug om een ander onderwerp te kiezen.\"],\"oTCD07\":[\"Artefact kan niet worden geladen\"],\"QHbX3T\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"ECX5E0\":[\"Jouw goedkeuring laat zien wat je echt denkt!\"],\"M5oorh\":[\"Als je tevreden bent met de \",[\"objectLabel\"],\", klik dan op 'Goedkeuren' om te laten zien dat je je gehoord voelt.\"],\"RZXkY+\":[\"Annuleren\"],\"86aTqL\":[\"Volgende\"],\"pdifRH\":[\"Bezig met laden\"],\"Ep029+\":[\"Lees de \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"fKeatI\":[\"Je ontvangt zo meteen de \",[\"objectLabel\"],\" om te controleren.\"],\"8b+uSr\":[\"Heb je het besproken? Klik op 'Herzien' om de \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"iodqGS\":[\"Artefact wordt geladen\"],\"NpZmZm\":[\"Dit duurt maar heel even.\"],\"wklhqE\":[\"Artefact wordt opnieuw gegenereerd\"],\"LYTXJp\":[\"Dit duurt maar een paar seconden.\"],\"CjjC6j\":[\"Volgende\"],\"q885Ym\":[\"Wat wil je concreet maken?\"],\"vvsDp4\":[\"Deelneming\"],\"HWayuJ\":[\"Voer een bericht in\"],\"AWBvkb\":[\"Einde van de lijst • Alle \",[\"0\"],\" gesprekken geladen\"],\"EBcbaZ\":[\"Klaar om te beginnen\"],\"N7NnE/\":[\"Selecteer Sessie\"],\"CQ8O75\":[\"Selecteer je groep\"],\"KaOIie\":[\"sommige kunnen worden overgeslagen vanwege lege transcriptie of contextlimiet\"],\"pOFZmr\":[\"Bedankt! Klik ondertussen op individuele documenten om context toe te voegen aan elk bestand dat ik zal meenemen voor verdere analyse.\"],\"JbSD2g\":[\"Met deze tool kan je gesprekken of verhalen opnemen om je stem te laten horen.\"],\"a/SLN6\":[\"Naam afschrift\"],\"v+tyku\":[\"Typ hier een vraag...\"],\"Fy+uYk\":[\"Typ hier de context...\"],\"4+jlrW\":[\"Upload documenten\"],\"J50beM\":[\"Wat voor soort vraag wil je stellen voor dit document?\"],\"ixbz1a\":[\"Je kan dit in je eentje gebruiken om je eigen verhaal te delen, of je kan een gesprek opnemen tussen meerdere mensen, wat vaak leuk en inzichtelijk kan zijn!\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/uk-UA.po b/echo/frontend/src/locales/uk-UA.po index b6478293b..74bba7bb1 100644 --- a/echo/frontend/src/locales/uk-UA.po +++ b/echo/frontend/src/locales/uk-UA.po @@ -925,11 +925,11 @@ msgstr "" msgid "{MONTHLY_BILLING_PREMIUM_PCT}% off" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:191 +#: src/components/chat/AgenticChatPanel.tsx:193 msgid "{name}'s conversation" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:190 +#: src/components/chat/AgenticChatPanel.tsx:192 msgid "{name}'s transcript excerpt" msgstr "" @@ -1256,6 +1256,10 @@ msgstr "" msgid "A friendly name to identify this webhook" msgstr "A friendly name to identify this webhook" +#: src/components/project/ProjectExperimentalSection.tsx:52 +msgid "A live page in your Library that regenerates while your session runs. Early beta: it may change or be removed." +msgstr "" + #: src/routes/project/report/ProjectReportRoute.tsx:564 msgid "A new report will be automatically generated and published at the scheduled time." msgstr "A new report will be automatically generated and published at the scheduled time." @@ -1353,7 +1357,7 @@ msgstr "" #: src/routes/workspaces/CreateWorkspaceRoute.tsx:702 #: src/routes/project/CreateProjectRoute.tsx:256 #: src/routes/project/CreateProjectRoute.tsx:345 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:117 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:120 #: src/components/project/ProjectUsageAndSharing.tsx:190 #: src/components/layout/ProjectOverviewLayout.tsx:52 msgid "Access" @@ -1493,6 +1497,7 @@ msgstr "Active filters" #: src/routes/organisation/OrganisationRoute.tsx:2054 #: src/routes/organisation/OrganisationRoute.tsx:2077 #: src/components/project/ProjectSharingModal.tsx:252 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:191 #: src/components/billing/BillingManager.tsx:1461 msgid "Add" msgstr "Add" @@ -1653,6 +1658,7 @@ msgstr "Add Your First Webhook" #~ msgstr "Add your own" #: src/components/project/ProjectSharingModal.tsx:68 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:145 msgid "Added" msgstr "" @@ -1829,8 +1835,8 @@ msgstr "Advanced Settings" #~ msgid "Agent is working..." #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:287 -#: src/components/chat/AgenticChatPanel.tsx:314 +#: src/components/chat/AgenticChatPanel.tsx:289 +#: src/components/chat/AgenticChatPanel.tsx:316 msgid "Agent run failed" msgstr "" @@ -2157,6 +2163,7 @@ msgstr "" #: src/components/view/CreateViewForm.tsx:153 #: src/components/goal/GoalSuggestionCard.tsx:122 #: src/components/common/ImageCropModal.tsx:148 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:223 #: src/components/chat/CanvasSuggestionCard.tsx:361 msgid "Apply" msgstr "Apply" @@ -2335,7 +2342,7 @@ msgstr "" msgid "Ask a organisation admin to request this upgrade." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1481 +#: src/components/chat/AgenticChatPanel.tsx:1494 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 "" @@ -2355,7 +2362,7 @@ msgstr "" msgid "Ask about your conversations, or type to find an earlier chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1739 +#: src/components/chat/AgenticChatPanel.tsx:1766 msgid "Ask about your conversations..." msgstr "" @@ -2685,6 +2692,7 @@ msgstr "Basic Settings" #: src/components/report/CreateReportForm.tsx:235 #: src/components/project/ProjectPortalEditor.tsx:1483 #: src/components/project/ProjectPortalEditor.tsx:1564 +#: src/components/project/ProjectExperimentalSection.tsx:48 #: src/components/conversation/RetranscribeConversation.tsx:151 #: src/components/chat/ChatModeSelector.tsx:158 #: src/components/chat/ChatModeBanner.tsx:45 @@ -2937,7 +2945,7 @@ msgstr "" #: src/components/common/ImageCropModal.tsx:145 #: src/components/common/FeedbackPortalModal.tsx:124 #: src/components/common/ConfirmModal.tsx:44 -#: src/components/chat/AgenticChatPanel.tsx:1708 +#: src/components/chat/AgenticChatPanel.tsx:1735 msgid "Cancel" msgstr "Cancel" @@ -2970,7 +2978,7 @@ msgstr "Cancel" msgid "Cancel anytime. You keep access until the period ends." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1696 +#: src/components/chat/AgenticChatPanel.tsx:1723 msgid "Cancel current run" msgstr "" @@ -3172,7 +3180,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:1307 +#: src/components/chat/AgenticChatPanel.tsx:1320 msgid "Chat" msgstr "Chat" @@ -3238,7 +3246,7 @@ msgstr "" msgid "Checked {checkedAgo}. Nothing new since your last conversation. Updated {updatedAgo}." msgstr "" -#: src/components/chat/agenticToolActivity.ts:123 +#: src/components/chat/agenticToolActivity.ts:125 msgid "Checking live conversations" msgstr "" @@ -3653,7 +3661,7 @@ msgstr "Conversation tags" msgid "conversations" msgstr "conversations" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:111 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:114 #: src/components/workspace/OrganisationProjectsTable.tsx:219 #: src/components/project/ProjectUsageAndSharing.tsx:453 #: src/components/conversation/ProjectConversationsPanel.tsx:725 @@ -3772,6 +3780,10 @@ msgstr "Copy to Clipboard" msgid "Copying..." msgstr "Copying..." +#: src/components/chat/TagsUpdateSuggestionCard.tsx:102 +msgid "Could not apply all the tag changes." +msgstr "" + #: src/components/chat/ProjectUpdateSuggestionCard.tsx:182 msgid "Could not apply the changes. Nothing was saved." msgstr "" @@ -3858,7 +3870,7 @@ msgstr "" msgid "Could not save tags" msgstr "" -#: src/components/project/hooks/index.ts:450 +#: src/components/project/hooks/index.ts:460 msgid "Could not save the host guide" msgstr "" @@ -4638,6 +4650,7 @@ msgid "Dismiss" msgstr "" #: src/components/goal/GoalSuggestionCard.tsx:86 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:173 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:249 #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:113 #: src/components/chat/CanvasSuggestionCard.tsx:256 @@ -4698,7 +4711,7 @@ msgstr "" #: src/routes/onboarding/OnboardingRoute.tsx:525 #: src/components/project/ProjectSharingModal.tsx:268 #: src/components/invite/InviteModal.tsx:811 -#: src/components/chat/AgenticChatPanel.tsx:333 +#: src/components/chat/AgenticChatPanel.tsx:335 msgid "Done" msgstr "" @@ -4848,6 +4861,10 @@ msgstr "" #~ msgid "Earlier" #~ msgstr "Earlier" +#: src/components/project/ProjectExperimentalSection.tsx:25 +msgid "Early features you can try on this project before they are ready for everyone." +msgstr "" + #. js-lingui-explicit-id #: src/components/participant/ParticipantConversationAudio.tsx:1065 msgid "participant.button.echo" @@ -5179,7 +5196,7 @@ msgstr "Enter the 6-digit code from your authenticator app." msgid "Enter the current six-digit code from your authenticator app." msgstr "Enter the current six-digit code from your authenticator app." -#: src/components/chat/AgenticChatPanel.tsx:1756 +#: src/components/chat/AgenticChatPanel.tsx:1783 msgid "Enter to send, Shift+Enter for a new line" msgstr "" @@ -5212,8 +5229,8 @@ msgstr "" #: src/components/dropzone/UploadConversationDropzone.tsx:734 #: src/components/dropzone/UploadConversationDropzone.tsx:842 #: src/components/conversation/LiveMonitorSection.tsx:371 -#: src/components/chat/AgenticChatPanel.tsx:338 -#: src/components/chat/AgenticChatPanel.tsx:1427 +#: src/components/chat/AgenticChatPanel.tsx:340 +#: src/components/chat/AgenticChatPanel.tsx:1440 msgid "Error" msgstr "Error" @@ -5234,10 +5251,10 @@ msgstr "Error creating report" #~ msgid "Error loading insights" #~ msgstr "Error loading insights" -#: src/routes/project/ProjectRoutes.tsx:81 -#: src/routes/project/ProjectRoutes.tsx:168 -#: src/routes/project/ProjectRoutes.tsx:270 -#: src/routes/project/ProjectRoutes.tsx:309 +#: src/routes/project/ProjectRoutes.tsx:83 +#: src/routes/project/ProjectRoutes.tsx:177 +#: src/routes/project/ProjectRoutes.tsx:279 +#: src/routes/project/ProjectRoutes.tsx:318 msgid "Error loading project" msgstr "Error loading project" @@ -5377,10 +5394,9 @@ msgstr "Exit fullscreen" msgid "Expand workspaces" msgstr "" -#: src/components/report/UpdateReportModalButton.tsx:191 -#: src/components/report/CreateReportForm.tsx:198 -#~ msgid "Experimental" -#~ msgstr "Experimental" +#: src/components/project/ProjectExperimentalSection.tsx:23 +msgid "Experimental" +msgstr "Experimental" #: src/components/billing/BillingManager.tsx:182 msgid "Expired" @@ -5511,7 +5527,7 @@ msgstr "Failed to copy chat. Please try again." msgid "Failed to copy transcript. Please try again." msgstr "Failed to copy transcript. Please try again." -#: src/components/project/hooks/index.ts:583 +#: src/components/project/hooks/index.ts:593 msgid "Failed to create custom topic" msgstr "Failed to create custom topic" @@ -5523,7 +5539,7 @@ msgstr "" msgid "Failed to delete chat" msgstr "" -#: src/components/project/hooks/index.ts:635 +#: src/components/project/hooks/index.ts:645 msgid "Failed to delete custom topic" msgstr "Failed to delete custom topic" @@ -5535,7 +5551,7 @@ msgstr "" msgid "Failed to delete response" msgstr "Failed to delete response" -#: src/components/project/hooks/index.ts:331 +#: src/components/project/hooks/index.ts:341 msgid "Failed to delete tag" msgstr "" @@ -5672,15 +5688,15 @@ 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:1299 +#: src/components/chat/AgenticChatPanel.tsx:1312 msgid "Failed to stop run" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1258 +#: src/components/chat/AgenticChatPanel.tsx:1271 msgid "Failed to submit agentic message" msgstr "" -#: src/components/project/hooks/index.ts:610 +#: src/components/project/hooks/index.ts:620 msgid "Failed to update custom topic" msgstr "Failed to update custom topic" @@ -5950,7 +5966,7 @@ msgstr "" #~ msgid "Forecast: ~{0}" #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:157 +#: src/components/chat/agenticToolActivity.ts:160 msgid "Forgetting a saved memory" msgstr "" @@ -6393,7 +6409,7 @@ msgstr "" msgid "Hide revision data" msgstr "Hide revision data" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Hide steps" msgstr "" @@ -6418,7 +6434,7 @@ msgid "host guide" msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:167 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:101 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:104 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:53 msgid "Host guide" msgstr "" @@ -6482,11 +6498,11 @@ msgstr "" #~ msgid "I accept the <0>terms" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1567 +#: src/components/chat/AgenticChatPanel.tsx:1594 msgid "I applied the canvas." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1583 +#: src/components/chat/AgenticChatPanel.tsx:1610 msgid "I applied the goal." msgstr "" @@ -6574,7 +6590,7 @@ msgstr "" msgid "Image style" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1505 +#: src/components/chat/AgenticChatPanel.tsx:1518 msgid "Improve my setup" msgstr "" @@ -7299,7 +7315,7 @@ msgstr "" #: src/routes/project/library/ProjectLibraryView.tsx:32 #: src/routes/project/library/ProjectLibraryAspect.tsx:43 #: src/routes/project/library/LibraryRoute.tsx:132 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:94 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:97 msgid "Library" msgstr "Library" @@ -7358,7 +7374,7 @@ msgstr "Link to your organisation's privacy policy that will be shown to partici #~ msgid "LinkedIn Post (Experimental)" #~ msgstr "LinkedIn Post (Experimental)" -#: src/components/chat/AgenticChatPanel.tsx:1495 +#: src/components/chat/AgenticChatPanel.tsx:1508 msgid "List my conversations" msgstr "" @@ -7366,15 +7382,15 @@ msgstr "" #~ msgid "List project conversations" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1496 +#: src/components/chat/AgenticChatPanel.tsx:1509 msgid "List the conversations in this project." msgstr "" -#: src/components/chat/agenticToolActivity.ts:121 +#: src/components/chat/agenticToolActivity.ts:123 msgid "Listing conversations" msgstr "" -#: src/components/chat/agenticToolActivity.ts:117 +#: src/components/chat/agenticToolActivity.ts:119 msgid "Listing documentation pages" msgstr "" @@ -7427,10 +7443,14 @@ msgstr "" msgid "Live stream disconnected. Updating on a slower poll until it reconnects." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:986 +#: src/components/chat/AgenticChatPanel.tsx:999 msgid "Live stream interrupted. Falling back to polling." msgstr "" +#: src/components/project/ProjectExperimentalSection.tsx:45 +msgid "Living canvas" +msgstr "" + #: src/components/chat/agenticToolActivity.ts:120 #~ msgid "Load conversation summary" #~ msgstr "" @@ -7506,7 +7526,7 @@ msgstr "" #~ msgid "Loading projects…" #~ msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1438 +#: src/components/chat/AgenticChatPanel.tsx:1451 msgid "Loading this chat..." msgstr "" @@ -7576,7 +7596,7 @@ msgstr "" msgid "Log out and use the invited email" msgstr "" -#: src/components/chat/agenticToolActivity.ts:160 +#: src/components/chat/agenticToolActivity.ts:163 msgid "Logging this with the dembrane team" msgstr "" @@ -8756,6 +8776,7 @@ msgid "Not available" msgstr "Not available" #: src/routes/invite/AcceptInviteRoute.tsx:568 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:214 #: src/components/chat/ProjectUpdateSuggestionCard.tsx:353 msgid "Not now" msgstr "" @@ -8839,7 +8860,7 @@ msgstr "" msgid "Notify participants when a report is published." msgstr "Notify participants when a report is published." -#: src/components/chat/agenticToolActivity.ts:149 +#: src/components/chat/agenticToolActivity.ts:152 msgid "Noting this for the dembrane team" msgstr "" @@ -9174,7 +9195,7 @@ msgstr "" msgid "Open the chat" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1414 +#: src/components/chat/AgenticChatPanel.tsx:1427 msgid "Open the old chat experience" msgstr "" @@ -10132,7 +10153,7 @@ msgstr "" #~ msgid "Preferences" #~ msgstr "Preferences" -#: src/components/chat/agenticToolActivity.ts:107 +#: src/components/chat/agenticToolActivity.ts:109 msgid "Preparing a navigation shortcut" msgstr "" @@ -10596,7 +10617,7 @@ msgstr "" #~ msgstr "Quotes" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:510 +#: src/components/chat/AgenticChatPanel.tsx:514 msgid "Ran {0} steps at once" msgstr "" @@ -10642,36 +10663,36 @@ msgid "Read-only" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:133 +#: src/components/chat/agenticToolActivity.ts:135 msgid "Reading {0}'s summary" msgstr "" #. placeholder {0}: context.participantName -#: src/components/chat/agenticToolActivity.ts:138 +#: src/components/chat/agenticToolActivity.ts:140 msgid "Reading {0}'s transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:134 +#: src/components/chat/agenticToolActivity.ts:136 msgid "Reading a conversation summary" msgstr "" -#: src/components/chat/agenticToolActivity.ts:115 +#: src/components/chat/agenticToolActivity.ts:117 msgid "Reading a skill" msgstr "" -#: src/components/chat/agenticToolActivity.ts:139 +#: src/components/chat/agenticToolActivity.ts:141 msgid "Reading a transcript" msgstr "" -#: src/components/chat/agenticToolActivity.ts:119 +#: src/components/chat/agenticToolActivity.ts:121 msgid "Reading project context" msgstr "" -#: src/components/chat/agenticToolActivity.ts:109 +#: src/components/chat/agenticToolActivity.ts:111 msgid "Reading project settings" msgstr "" -#: src/components/chat/agenticToolActivity.ts:113 +#: src/components/chat/agenticToolActivity.ts:115 msgid "Reading the documentation" msgstr "" @@ -10931,6 +10952,7 @@ msgstr "" #: src/components/organisation/InviteEmailList.tsx:58 #: src/components/memory/MemoryList.tsx:98 #: src/components/memory/MemoryList.tsx:118 +#: src/components/chat/TagsUpdateSuggestionCard.tsx:199 msgid "Remove" msgstr "Remove" @@ -11014,6 +11036,10 @@ msgstr "" msgid "Remove this memory?" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:153 +msgid "Removed" +msgstr "" + #: src/routes/organisation/OrganisationRoute.tsx:522 msgid "Removed from organisation" msgstr "" @@ -11032,7 +11058,7 @@ msgstr "Rename" #~ msgstr "Rename" #: src/components/chat/ChatAccordion.tsx:158 -#: src/components/chat/AgenticChatPanel.tsx:1370 +#: src/components/chat/AgenticChatPanel.tsx:1383 msgid "Rename chat" msgstr "Rename chat" @@ -11075,7 +11101,7 @@ msgstr "" #: src/routes/project/ProjectHomeRoute.tsx:175 #: src/routes/project/report/ProjectReportRoute.tsx:185 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:106 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:109 #: src/components/report/ReportRenderer.tsx:75 #: src/components/report/ReportModalNavigationButton.tsx:92 msgid "Report" @@ -11381,7 +11407,7 @@ msgstr "" msgid "retracted for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:153 +#: src/components/chat/agenticToolActivity.ts:156 msgid "Retracting a note for the dembrane team" msgstr "" @@ -11460,7 +11486,7 @@ msgstr "" msgid "Review files before uploading" msgstr "Review files before uploading" -#: src/components/chat/AgenticChatPanel.tsx:1506 +#: src/components/chat/AgenticChatPanel.tsx:1519 msgid "Review my project settings and suggest improvements." msgstr "" @@ -11540,7 +11566,7 @@ msgstr "Rows per page" #~ msgid "Run status:" #~ msgstr "Run status:" -#: src/components/chat/AgenticChatPanel.tsx:343 +#: src/components/chat/AgenticChatPanel.tsx:345 msgid "Running" msgstr "" @@ -11819,16 +11845,16 @@ msgstr "" msgid "Searched through the most relevant sources" msgstr "Searched through the most relevant sources" -#: src/components/chat/agenticToolActivity.ts:129 +#: src/components/chat/agenticToolActivity.ts:131 msgid "Searching conversations" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:128 +#: src/components/chat/agenticToolActivity.ts:130 msgid "Searching conversations for \"{0}\"" msgstr "" -#: src/components/chat/agenticToolActivity.ts:111 +#: src/components/chat/agenticToolActivity.ts:113 msgid "Searching the documentation" msgstr "" @@ -11836,12 +11862,12 @@ msgstr "" #~ msgid "Searching through the most relevant sources" #~ msgstr "Searching through the most relevant sources" -#: src/components/chat/agenticToolActivity.ts:144 +#: src/components/chat/agenticToolActivity.ts:146 msgid "Searching transcripts" msgstr "" #. placeholder {0}: context.query -#: src/components/chat/agenticToolActivity.ts:143 +#: src/components/chat/agenticToolActivity.ts:145 msgid "Searching transcripts for \"{0}\"" msgstr "" @@ -12062,7 +12088,7 @@ msgid "Self-serve" msgstr "" #: src/routes/project/chat/ProjectChatRoute.tsx:1024 -#: src/components/chat/AgenticChatPanel.tsx:1776 +#: src/components/chat/AgenticChatPanel.tsx:1803 msgid "Send" msgstr "Send" @@ -12204,7 +12230,7 @@ msgstr "" #: src/features/sidebar/views/workspace/WorkspaceHomeView.tsx:80 #: src/features/sidebar/views/user/UserSettingsView.tsx:34 #: src/features/sidebar/views/project/ProjectSettingsView.tsx:18 -#: src/features/sidebar/views/project/ProjectHomeView.tsx:129 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:132 #: src/features/sidebar/views/org/OrgSettingsView.tsx:26 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 @@ -12411,7 +12437,7 @@ msgstr "Show references" msgid "Show revision data" msgstr "Show revision data" -#: src/components/chat/AgenticChatPanel.tsx:539 +#: src/components/chat/AgenticChatPanel.tsx:543 msgid "Show steps" msgstr "" @@ -12861,6 +12887,10 @@ msgstr "" msgid "Suggested project goal" msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:169 +msgid "Suggested tag changes for your project" +msgstr "" + #: src/components/chat/CustomVerificationTopicSuggestionCard.tsx:109 msgid "Suggested verification prompt" msgstr "" @@ -12870,15 +12900,15 @@ msgstr "" msgid "Suggested:" msgstr "Suggested:" -#: src/components/chat/agenticToolActivity.ts:103 +#: src/components/chat/agenticToolActivity.ts:105 msgid "Suggesting a canvas" msgstr "" -#: src/components/chat/agenticToolActivity.ts:105 +#: src/components/chat/agenticToolActivity.ts:107 msgid "Suggesting a project goal" msgstr "" -#: src/components/chat/agenticToolActivity.ts:101 +#: src/components/chat/agenticToolActivity.ts:103 msgid "Suggesting a verification prompt" msgstr "" @@ -12886,6 +12916,10 @@ msgstr "" msgid "Suggesting project changes" msgstr "" +#: src/components/chat/agenticToolActivity.ts:101 +msgid "Suggesting tag changes" +msgstr "" + #: src/components/chat/templates.ts:26 msgid "Summarize" msgstr "Summarize" @@ -12991,7 +13025,7 @@ msgstr "System" msgid "System status" msgstr "" -#: src/components/project/hooks/index.ts:328 +#: src/components/project/hooks/index.ts:338 msgid "Tag deleted" msgstr "" @@ -13009,6 +13043,14 @@ msgstr "Tags" #~ msgid "Tags (max 3)" #~ msgstr "Tags (max 3)" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:180 +msgid "Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply." +msgstr "" + +#: src/components/chat/TagsUpdateSuggestionCard.tsx:99 +msgid "Tags updated. You can fine-tune them anytime in the portal editor." +msgstr "" + #: src/routes/invite/AcceptInviteRoute.tsx:483 #: src/routes/invite/AcceptInviteRoute.tsx:523 msgid "Take me to {resolvedWorkspaceName}" @@ -13394,6 +13436,10 @@ msgstr "These default view templates will be generated when you create your firs msgid "These settings are read-only. Only organisation administrators can modify project defaults." msgstr "" +#: src/components/chat/TagsUpdateSuggestionCard.tsx:132 +msgid "These tag changes are applied to your project." +msgstr "" + #: src/components/invite/InviteModal.tsx:654 msgid "These workspaces are billed separately. Each person you add takes a seat in {billingContextCount} billing contexts, each invoiced on its own." msgstr "" @@ -13533,7 +13579,7 @@ msgstr "This is an example of the JSON data sent to your webhook URL when a conv msgid "This is not saved yet." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1402 +#: src/components/chat/AgenticChatPanel.tsx:1415 msgid "This is the new chat experience" msgstr "" @@ -13893,11 +13939,11 @@ msgstr "Too long" msgid "Tool" msgstr "" -#: src/components/project/hooks/index.ts:591 +#: src/components/project/hooks/index.ts:601 msgid "Topic created successfully" msgstr "Topic created successfully" -#: src/components/project/hooks/index.ts:643 +#: src/components/project/hooks/index.ts:653 msgid "Topic deleted successfully" msgstr "Topic deleted successfully" @@ -13905,7 +13951,7 @@ msgstr "Topic deleted successfully" msgid "Topic label" msgstr "Topic label" -#: src/components/project/hooks/index.ts:618 +#: src/components/project/hooks/index.ts:628 msgid "Topic updated successfully" msgstr "Topic updated successfully" @@ -13990,7 +14036,7 @@ msgstr "" msgid "Transcribing..." msgstr "Transcribing..." -#: src/components/chat/AgenticChatPanel.tsx:194 +#: src/components/chat/AgenticChatPanel.tsx:196 msgid "transcript" msgstr "" @@ -14006,7 +14052,7 @@ msgstr "Transcript" msgid "Transcript copied to clipboard" msgstr "Transcript copied to clipboard" -#: src/components/chat/AgenticChatPanel.tsx:193 +#: src/components/chat/AgenticChatPanel.tsx:195 msgid "transcript excerpt" msgstr "" @@ -14479,15 +14525,15 @@ msgstr "" #~ msgid "Updates every few minutes." #~ msgstr "" -#: src/components/chat/agenticToolActivity.ts:151 +#: src/components/chat/agenticToolActivity.ts:154 msgid "Updating a note for the dembrane team" msgstr "" -#: src/components/chat/agenticToolActivity.ts:155 +#: src/components/chat/agenticToolActivity.ts:158 msgid "Updating a saved memory" msgstr "" -#: src/components/chat/agenticToolActivity.ts:146 +#: src/components/chat/agenticToolActivity.ts:149 msgid "Updating project tags" msgstr "" @@ -14667,7 +14713,7 @@ msgstr "URL is required" msgid "URL must start with http:// or https://" msgstr "URL must start with http:// or https://" -#: src/features/sidebar/views/project/ProjectHomeView.tsx:122 +#: src/features/sidebar/views/project/ProjectHomeView.tsx:125 #: src/features/sidebar/views/org/OrgSettingsView.tsx:37 #: src/components/project/ProjectUsageAndSharing.tsx:415 #: src/components/layout/ProjectOverviewLayout.tsx:53 @@ -15210,7 +15256,7 @@ msgstr "Webhooks" msgid "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." msgstr "Webhooks are automated messages sent from one app to another when something happens. Think of them as a \"notification system\" for your other tools." -#: src/routes/project/ProjectRoutes.tsx:182 +#: src/routes/project/ProjectRoutes.tsx:191 msgid "Webhooks are not enabled for this environment." msgstr "" @@ -15319,11 +15365,11 @@ msgstr "What should ECHO analyse or generate from the conversations?" #~ msgid "What should this report focus on?" #~ msgstr "What should this report focus on?" -#: src/components/chat/AgenticChatPanel.tsx:1501 +#: src/components/chat/AgenticChatPanel.tsx:1514 msgid "What themes came up across the conversations in this project?" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1500 +#: src/components/chat/AgenticChatPanel.tsx:1513 msgid "What themes came up?" msgstr "" @@ -15409,7 +15455,7 @@ msgid "Where would you like to go?" msgstr "" #: src/routes/project/chat/NewChatRoute.tsx:358 -#: src/components/chat/AgenticChatPanel.tsx:1478 +#: src/components/chat/AgenticChatPanel.tsx:1491 msgid "Where would you like to start?" msgstr "" @@ -15476,15 +15522,15 @@ msgid "Within my organisation" msgstr "" #. placeholder {0}: items.length -#: src/components/chat/AgenticChatPanel.tsx:511 +#: src/components/chat/AgenticChatPanel.tsx:515 msgid "Worked through {0} steps" msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:1332 +#: src/components/chat/AgenticChatPanel.tsx:1345 msgid "Working on your answer..." msgstr "" -#: src/components/chat/AgenticChatPanel.tsx:506 +#: src/components/chat/AgenticChatPanel.tsx:510 msgid "Working..." msgstr "" diff --git a/echo/frontend/src/locales/uk-UA.ts b/echo/frontend/src/locales/uk-UA.ts index b2d38b384..08c2861e5 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.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"uSTZVH\":[[\"conversationTotal\"],\" included\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 included\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ members have joined\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Add to favorites\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"MIWKYQ\":[\"Add to quick access\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Add Your First Webhook\"],\"DtI2tD\":[\"Add your own\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"VHg3DX\":[\"Agentic Chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"All templates\"],\"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?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"zqhMd0\":[\"Сталася неочікувана помилка. Зазвичай допомагає перезавантаження сторінки або повернення на головну.\"],\"QX6zrA\":[\"Analysis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymous host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Appearance\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Apply\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"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?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"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.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistant is typing...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio Tip\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Book a call to share your feedback\"],\"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.\"],\"CzeGfZ\":[\"Browse and share templates with other hosts\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Built-in\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citing the following sources\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Coming soon — share your input\"],\"bJHBId\":[\"Common use cases:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community templates\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concrete Topics\"],\"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\"],\"p2/GCq\":[\"Confirm Password\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contact sales\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"Np+C87\":[\"Conversations:\"],\"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\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"RGCCrg\":[\"Copy share link\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Create an Account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"uVzvzz\":[\"Create now instead\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"s7XwOU\":[\"Create Template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Created \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"custom\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Customize how your report is structured. This feature is coming soon.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Delete Custom Topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"MlrelG\":[\"Delete Report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane is powered by AI. Please double-check responses.\"],\"QMogcD\":[\"Reply\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe how this template is useful...\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determines under which GDPR legal basis personal data is processed. This affects consent flows, data subject rights, and retention obligations.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Display contextual suggestion pills in the chat\"],\"pfa8F0\":[\"Display name\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"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\"],\"5154Ap\":[\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"e.g. tomorrow at 9:00\"],\"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.\"],\"5oD9f/\":[\"Earlier\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"edit\"],\"ePK91l\":[\"Edit\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"gGx5tM\":[\"Editing\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Email Verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Email Verification | dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"VpwcSk\":[\"Enter new password\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"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\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"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\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"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.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Failed to start new conversation. 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\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"First Name\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus your report (optional)\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"from \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"oADIO6\":[\"Generate a new report. Previous reports will remain accessible.\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Go to feedback portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Grid view\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"З керiвництвом\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help us translate\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"JsWQuM\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations. You can optionally focus the report on a specific topic.\"],\"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.\"],\"Lj7sBL\":[\"Italian\"],\"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.\"],\"GaQMyV\":[\"Join \",[\"0\"],\" on dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Join the 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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Language\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Let us know!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"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\"],\"yUQgLY\":[\"Library is currently being processed\"],\"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\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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.\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"WXSxpf\":[\"Logo updated successfully\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mine\"],\"b85Pfh\":[\"Minimum 8 characters\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"zMx0gF\":[\"More templates\"],\"y1ypMV\":[\"Most popular\"],\"7BgchI\":[\"Most used\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Має бути щонайменше через 10 хвилин\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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ту\"],\"XojC2V\":[\"New conversations available — update your 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.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"3RC8Um\":[\"New conversations have been added since your last report. Generate an updated report to include them. Your previous report will remain accessible.\"],\"QgiaQ8\":[\"New date and time\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"New Project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Newest\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No announcements available\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No collections found\"],\"S8FeaY\":[\"No community templates yet. Share yours to get started.\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"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.\"],\"meAa31\":[\"No conversations yet\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Розмов ще немає. Ви можете запланувати звiт зараз, i розмови будуть включенi пiсля їх додавання.\"],\"ax9iz4\":[\"No custom templates yet. Create one to get started.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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\":[\"В організації поки нікого немає.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"No specific focus\"],\"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}\"],\"kaDUQs\":[\"No templates yet. Create your own or browse All templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"У цій організації поки немає робочих просторів.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Now\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"Dw7aQc\":[\"Only applies when report is published\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"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.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Open Documentation\"],\"QTXl9z\":[\"Open feedback portal\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Other hosts can see and copy your template. You can unpublish at any time.\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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ть дату\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Pick date and time\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Pick one or more angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"lepv9z\":[\"Pin to chat bar\"],\"fr2ggG\":[\"pinned\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"Atb9XB\":[\"Pinned to chat bar\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"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\"],\"Tx36sk\":[\"Portal link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Prefer to chat directly? <0>Book a call with me\"],\"Q6hhn8\":[\"Preferences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"ANWB5x\":[\"Print this report\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Security\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy Statements\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projects Home\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"GwOmnT\":[\"Publish this report to enable printing\"],\"ZSi2AK\":[\"Publish this report to enable sharing\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"4R3R74\":[\"Published to community\"],\"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.\"],\"9iShh/\":[\"Quick Access (max 5)\"],\"utRRxm\":[\"Quick access is full (max 5)\"],\"dN0qso\":[\"Quick access:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Rate this prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"DqXVNZ\":[\"Ready to generate\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"844H5I\":[\"Regenerate Library\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevance\"],\"tF5Smn\":[\"Перезавантажити сторінку\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Remove from favorites\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Remove from quick access\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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?\"],\"nVEhnc\":[\"Removed from organisation\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"UZ6fKH\":[\"Report actions\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"mgTmvC\":[\"Report structure\"],\"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\"],\"uLZGK+\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Перепланувати на\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Reset to default\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Resources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Run status:\"],\"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!\"],\"RgyKxd\":[\"Save Quick Access\"],\"5dVjYt\":[\"Save template\"],\"zaYZWH\":[\"Save to my templates\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Скануйте або натиснiть, щоб вiдкрити портал зворотного зв'язку\"],\"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\"],\"QS1Nla\":[\"Schedule for later\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Знайдіть і виберіть розмови для цього чату.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Search conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Search webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Send a message to start an agentic run.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Share\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Share this report\"],\"lRZMol\":[\"Share with community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Share with the community\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Share your voice\"],\"4o0klJ\":[\"Подiлiться своїм голосом, вiдсканувавши QR-код\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Show a link for participants to contribute\"],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Show duration\"],\"YbxwRo\":[\"Show generated suggestions\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Sign in with Google\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"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.\"],\"zazql1\":[\"Something went wrong generating your latest report. Showing your most recent completed report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"a75OAp\":[\"Something went wrong generating your report. You can try again below.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"vf1Tc/\":[\"Specific Details потребує щонайменше однієї розмови.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Start Recording\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Submitted via text input\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"aZJj7n\":[\"Suggest prompts based on your conversations\"],\"FyUg+Y\":[\"Suggest prompts based on your conversations. Try sending a message to see it in action.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"6xSPmn\":[\"Suggested project goal\"],\"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\"],\"F1nkJm\":[\"Summarize\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Template prompt content...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal — it helps us fix things faster.\"],\"gtMB2A\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal. It helps us fix things faster than not submitting a report.\"],\"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.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"The issue reporter could not be loaded. Please use the feedback portal to tell us what went wrong — it helps us fix things faster.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"the project library.\"],\"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.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"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.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"This information is anonymized\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"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\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Час\"],\"Ww6cQ8\":[\"Time Created\"],\"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.\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Try Again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainian\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dFIzZ6\":[\"Unpin from chat bar\"],\"dx+iaL\":[\"Unpin project\"],\"KyKziT\":[\"Unpublish from community\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Update Report\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Updated\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Upload Audio\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Use\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"View read announcements\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"views\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"tCfopB\":[\"Want custom report structures?\"],\"VKMCO0\":[\"Want to add a template to \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"v8z9fL\":[\"Want to customize how your report looks?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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\":[\"Ми не знайшли сторінку, яку ви шукали. Можливо, її перемістили.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"2ZUkkL\":[\"We're designing this feature and would love your input.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Ласкаво просимо до dembrane Chat! Використовуйте бічну панель, щоб обрати ресурси та розмови, які ви хочете проаналізувати. Потім ви зможете ставити запитання щодо обраних ресурсів і розмов.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Ласкаво просимо в режим Огляду! Я завантажив підсумки всіх ваших розмов. Запитуйте мене про закономірності, теми та висновки у ваших даних. Для точних цитат розпочніть нову бесіду в режимі Конкретного Контексту.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"ZsEVar\":[\"What should this report focus on?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"Ul3erb\":[\"What you can reach\"],\"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.\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Yours\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"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.regenerate\":[\"Regenerate Library\"],\"library.conversations.processing.status\":[\"Currently \",[\"finishedConversationsCount\"],\" conversations are ready to be analyzed. \",[\"unfinishedConversationsCount\"],\" still processing.\"],\"participant.echo.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"library.contact.sales\":[\"Contact sales\"],\"library.not.available\":[\"It looks like the library is not available for your account. Please contact sales to unlock this feature.\"],\"conversation.accordion.skeleton.title\":[\"Conversations\"],\"project.sidebar.chat.end.description\":[\"End of list • All \",[\"totalChats\"],\" chats loaded\"],\"participant.modal.stop.message\":[\"Are you sure you want to finish the conversation?\"],\"participant.button.is.recording.echo\":[\"ECHO\"],\"participant.modal.stop.title\":[\"Finish Conversation\"],\"participant.button.stop.no\":[\"No\"],\"participant.button.pause\":[\"Pause\"],\"participant.button.resume\":[\"Resume\"],\"conversation.linking_conversations.deleted\":[\"The source conversation was deleted\"],\"participant.button.stop.yes\":[\"Yes\"],\"participant.modal.refine.info.title.echo\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.verify\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.verify.action.button.approve\":[\"Approve\"],\"participant.verify.artefact.title\":[\"Artefact: \",[\"selectedOptionLabel\"]],\"participant.verify.instructions.button.cancel\":[\"Cancel\"],\"participant.verify.action.button.cancel\":[\"Cancel\"],\"dashboard.dembrane.verify.description\":[\"Enable this feature to allow participants to create and approve \\\"verified objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified objects and review them in the overview.\"],\"dashboard.dembrane.verify.experimental\":[\"Experimental\"],\"participant.verify.artefact.action.button.go.back\":[\"Go back\"],\"participant.verify.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"participant.verify.loading.artefact\":[\"Loading artefact\"],\"participant.verify.regenerating.artefact\":[\"Regenerating the artefact\"],\"participant.verify.artefact.action.button.reload\":[\"Reload Page\"],\"participant.verify.action.button.revise\":[\"Revise\"],\"participant.verify.action.button.save\":[\"Save\"],\"participant.echo.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>ECHO button, or contact support if the issue continues.\"],\"participant.echo.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"participant.verify.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.verify.loading.artefact.description\":[\"This will just take a moment\"],\"participant.verify.artefact.error.title\":[\"Unable to Load Artefact\"],\"dashboard.dembrane.concrete.experimental\":[\"Beta\"],\"participant.button.go.deeper\":[\"Go deeper\"],\"participant.button.make.concrete\":[\"Make it concrete\"],\"select.all.modal.skip.reason\":[\"some might skip due to empty transcript or context limit\"],\"participant.modal.interruption.issue.description\":[\"We saved your recording up to <0>\",[\"formattedDuration\"],\" but lost the last 60 seconds or so. <1/> Press below to reconnect, then hit the record button to continue.\"],\"participant.modal.refine.info.title.go.deeper\":[\"\\\"Go deeper\\\" available soon\"],\"participant.modal.refine.info.title.concrete\":[\"\\\"Make it concrete\\\" available soon\"],\"participant.modal.refine.info.title.generic\":[\"\\\"Refine\\\" available soon\"],\"participant.modal.refine.info.title\":[\"Feature available soon\"],\"participant.refine.go.deeper\":[\"Go deeper\"],\"participant.concrete.artefact.error.description\":[\"It looks like we couldn't load this artefact. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"dashboard.dembrane.concrete.title\":[\"Make it concrete\"],\"participant.refine.make.concrete\":[\"Make it concrete\"],\"participant.button.refine\":[\"Refine\"],\"participant.concrete.regenerating.artefact\":[\"Regenerating the artefact\"],\"dashboard.dembrane.concrete.topic.select\":[\"Select which topics participants can use for \\\"Make it concrete\\\".\"],\"participant.go.deeper.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Go deeper button, or contact support if the issue continues.\"],\"participant.concrete.artefact.error.title\":[\"Unable to Load Artefact\"],\"participant.modal.refine.info.reason\":[\"We need a bit more context to help you refine effectively. Please continue recording so we can provide better suggestions.\"],\"dashboard.dembrane.concrete.description\":[\"Enable this feature to allow participants to create and approve \\\"concrete objects\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with concrete objects and review them in the overview.\"],\"participant.concrete.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"participant.concrete.instructions.loading\":[\"Loading\"],\"participant.concrete.selection.button.next\":[\"Next\"],\"participant.concrete.instructions.button.next\":[\"Next\"],\"participant.concrete.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.concrete.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"dashboard.dembrane.verify.topic.select\":[\"Select which topics participants can use for verification.\"],\"participant.concrete.selection.title\":[\"What do you want to make concrete?\"],\"participant.concrete.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to make them concrete.\"],\"participant.concrete.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"participant.anonymization.notice\":[\"Your transcription will be anonymized and your host will not be able to listen to your recording.\"],\"announcements\":[\"Announcements\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"JhOwWd\":[\"-5s\"],\"0M6l+o\":[\"\\\"\",[\"0\"],\"\\\" and \",[\"others\",\"plural\",{\"one\":[\"#\",\" other workspace\"],\"other\":[\"#\",\" other workspaces\"]}],\" are at capacity. New invites to those workspaces are not available.\"],\"2eFXJT\":[\"\\\"\",[\"0\"],\"\\\" is at capacity on \",[\"1\"],\". New invites to that workspace are not available.\"],\"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)\"],\"2NWk7n\":[\"(for enhanced audio processing)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"6CLraA\":[\"(overrode \",[\"0\"],\")\"],\"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\"]}]],\"+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\"]}]],\"JyOQQh\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member selected\"],\"other\":[\"#\",\" members selected\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"yiIsFO\":[[\"0\",\"plural\",{\"one\":[\"#\",\" not receiving\"],\"other\":[\"#\",\" not receiving\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71pZse\":[[\"0\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"aWReBC\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recording\"],\"other\":[\"#\",\" recordings\"]}]],\"Cwe7mf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" request\"],\"other\":[\"#\",\" requests\"]}]],\"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\"]}]],\"Ra5XLj\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace used up its included hours\"],\"other\":[\"#\",\" workspaces used up their included hours\"]}]],\"R9WBui\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace you can access\"],\"other\":[\"#\",\" workspaces you can access\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"8QEcOZ\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" conversation to another project.\"],\"other\":[\"Move \",\"#\",\" conversations to another project.\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"L/x8P2\":[[\"0\",\"plural\",{\"one\":[\"Transcribing \",\"#\",\" clip\"],\"other\":[\"Transcribing \",\"#\",\" clips\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"HB8dPL\":[[\"0\"],\" \",[\"1\"],\" ready\"],\"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\"],\"jesWf0\":[[\"0\"],\" at limit\"],\"xRdQss\":[[\"0\"],\" Conversation\",[\"1\"],\" • Edited \",[\"2\"]],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"jnn4Cb\":[[\"0\"],\" conversations will be hidden along with it.\"],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"K6OQ3u\":[[\"0\"],\" hours / month\"],\"hvF/g5\":[[\"0\"],\" hours total\"],\"+vOPGl\":[[\"0\"],\" live\"],\"COnw8D\":[[\"0\"],\" logo\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"zz2LuS\":[[\"0\"],\" on this workspace · change in workspace settings\"],\"+vNOAq\":[[\"0\"],\" recordings\"],\"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\"],\"fVVYwW\":[[\"0\"],\" with errors\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"jzccLg\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" hours in \",[\"3\"]],\"46Eo93\":[[\"0\"],\" workspaces · \",[\"1\"],\" seats · \",[\"2\"],\" in \",[\"3\"]],\"k6tKbc\":[[\"0\"],\" workspaces, \",[\"1\"],\" active\"],\"xWmwAk\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\"],\"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\"]],\"j4ymZ4\":[[\"capitalizedTier\"],\" — tap to see what's included\"],\"/G3Khj\":[[\"capitalizedTier\"],\" · tap to see what's included\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"LOksb+\":[[\"conversationCount\"],\" conversations selected for this chat\"],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"uSTZVH\":[[\"conversationTotal\"],\" included\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"P1pDS8\":[[\"diffInDays\"],\"d ago\"],\"bT6AxW\":[[\"diffInHours\"],\"h ago\"],\"IA3oIM\":[[\"directRole\"],\" on this workspace · change in workspace settings\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"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\"]],\"GbBkt4\":[[\"inviterName\"],\" invited you to join \",[\"workspaceName\"]],\"ELo6o+\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Clear the \",\"#\",\" project first. You can delete all projects across your team from the team page.\"],\"other\":[\"Clear the \",\"#\",\" projects first. You can delete all projects across your team from the team page.\"]}]],\"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.\"]}]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"UfZkTF\":[[\"MONTHLY_BILLING_PREMIUM_PCT\"],\"% off\"],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"Q1S3xU\":[[\"ok\"],\" invites sent.\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"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.\"],\"bTWOlg\":[[\"person\"],\" will lose access to every workspace in this team. Direct-only workspace invites stay intact.\"],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"U7Iesw\":[[\"seconds\"],\" seconds\"],\"6XtCKk\":[[\"selectedCount\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"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\"]}]],\"8ArwHX\":[[\"totalTeams\",\"plural\",{\"one\":[\"#\",\" team\"],\"other\":[\"#\",\" teams\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"MqzJ2+\":[\"* rises to \",[\"0\"],\" when accepted\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"H8MBV1\":[\"/mo\"],\"yLqn7R\":[\"/mo · billed annually\"],\"fUNzPz\":[\"/mo · billed monthly\"],\"Nc+vAv\":[\"/seat/mo\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"so3Z3+\":[\"← Back to team\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"Zxm8HO\":[\"+€\",[\"0\"],\"/seat\"],\"pV+XPw\":[\"+5s\"],\"N75Ky1\":[\"×\",[\"0\"]],\"LPXUKX\":[\"<0>Wait \",[\"0\"],\":\",[\"1\"]],\"nDVnYQ\":[\"∞ = unlimited subject to plan\"],\"31ri11\":[\"€\",[\"0\"],\" / extra hour\"],\"GzGKcI\":[\"€\",[\"0\"],\" / extra seat\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"2LSFwn\":[\"€\",[\"0\"],\" one-time\"],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"ewbA2k\":[\"€\",[\"0\"],\"/h\"],\"nnmFui\":[\"€\",[\"0\"],\"/mo · billed annually · €\",[\"1\"],\"/yr\"],\"HDx5tU\":[\"€\",[\"0\"],\"/mo · billed monthly\"],\"+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\"],\"0ko5Xt\":[\"1 included\"],\"laAgCn\":[\"1 seat · 1 h\"],\"mcCQVt\":[\"1 seat · 1 h · free\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"94GRjR\":[\"10 seats · 50 h/mo · €500/mo\"],\"R1jRUZ\":[\"10% off\"],\"DLFRSx\":[\"10+ members have joined\"],\"WehR9U\":[\"2 months ago\"],\"c0EoVQ\":[\"2 seats · 10 h · €349 one-time\"],\"nDEZ7T\":[\"2. When a conversation event happens, we automatically send the conversation data to your URL\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"RJYW9a\":[\"20 seats · 100 h/mo · €1500/mo\"],\"VaA9mu\":[\"24 hours\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"hGWrv6\":[\"3 seats · 25 h/mo · €200/mo\"],\"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\"],\"J7Ypwn\":[\"80%+ of included hours used this month\"],\"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.\"],\"pqevQu\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins.\"],\"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.\"],\"ACd66g\":[\"A few quick questions\"],\"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.\"],\"nwDFhk\":[\"A seat change couldn't be charged to your payment method. Your team keeps full access. Update your payment method so the next charge goes through.\"],\"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.\"],\"PI0rBt\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement.\"],\"ch+tuM\":[\"A separate subscription, per the partner agreement, so it can be handed off to the client later with no data movement. You'll subscribe it next.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"SxB8x7\":[\"a team admin\"],\"NrmxUu\":[\"A team admin can request this upgrade. Ask someone with the admin role.\"],\"j2mO8+\":[\"a workspace\"],\"2rz0sA\":[\"About you\"],\"lWHcZj\":[\"Absolute https URL to a small logo. Workspace-level logo takes precedence when set.\"],\"KJgnpK\":[\"Absolute https URL. Workspace-level logo overrides when set.\"],\"Q74FZp\":[\"Accept and join\"],\"FGv1AH\":[\"accepted\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"jlNy8O\":[\"Access & sharing\"],\"0/Oxid\":[\"Access & usage\"],\"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\"],\"VsyynM\":[\"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.\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"v7AMq1\":[\"Add an external\"],\"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.\"],\"OBddX8\":[\"Add members or an external to this workspace.\"],\"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\"],\"pBsoKL\":[\"Add to favorites\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"MIWKYQ\":[\"Add to quick access\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"OKOAy/\":[\"Add workspace\"],\"UZ07em\":[\"Add Your First Webhook\"],\"DtI2tD\":[\"Add your own\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"COT2Ez\":[\"Added \",[\"ok\"],\", but \",[\"emailFailed\"],\" emails didn't go out. Resend from the Members tab.\"],\"cPkV2e\":[\"Added \",[\"ok\"],\", but 1 email didn't go out. Resend from the Members tab.\"],\"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\"],\"RZmQ10\":[\"Added, but the invite email didn't go out. Resend it from the Members tab.\"],\"uK0QeY\":[\"Added, but the invite email didn't go out. Resend it from the workspace's Members tab.\"],\"zsYSpK\":[\"Adding \",[\"0\"],\" member(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"xbd4sr\":[\"Adding \",[\"0\"],\" new seat(s) charges about \",[\"1\"],\" now, prorated for the rest of this billing period, and raises your renewal by about \",[\"2\"],\".\"],\"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:\"],\"SJCAsQ\":[\"Adding Context:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"XwZY/J\":[\"Additional hour\"],\"W8BLH3\":[\"Additional seat\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"s94DrX\":[\"Admin — manage the workspace and its members\"],\"84oArf\":[\"Admin dashboard\"],\"rmtVem\":[\"Admin here (from team role)\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"2Fsr7J\":[\"Admin here via team 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)\"],\"TBpbDp\":[\"Advanced (Tips and tricks)\"],\"JiIKww\":[\"Advanced Settings\"],\"uw5cnw\":[\"Agent is working...\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"VHg3DX\":[\"Agentic Chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"Cmt62w\":[\"All conversations ready\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"baQJ1t\":[\"All Insights\"],\"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\"],\"h+uTyX\":[\"All seats taken on this tier\"],\"DA2Nma\":[\"All templates\"],\"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?\"],\"G54oFr\":[\"An email Notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"zqhMd0\":[\"Сталася неочікувана помилка. Зазвичай допомагає перезавантаження сторінки або повернення на головну.\"],\"QX6zrA\":[\"Analysis\"],\"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\"],\"YkfDoz\":[\"Annual\"],\"77TKVS\":[\"Annual billing\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"1mXYsL\":[\"Anonymous host\"],\"Pg5/xn\":[\"Anonymous participant\"],\"azfEQ3\":[\"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.\"],\"1MB5rq\":[\"Anyone in your organisation can find this workspace. Organisation admins can join; organisation members can request access.\"],\"bznrGm\":[\"Anyone in your team can find this workspace. Team admins can join; team members can request access.\"],\"K9qURK\":[\"Anything to add?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"tpNvEO\":[\"Anything we should know? Team size, timelines, intended use.\"],\"aAIQg2\":[\"Appearance\"],\"wTOwz+\":[\"Applied\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"pOuceR\":[\"Applies to the members you picked.\"],\"DB8zMK\":[\"Apply\"],\"dgySHu\":[\"Apply selected\"],\"4TwsNi\":[\"Apply template\"],\"5swDY2\":[\"Approaching a limit this month\"],\"hykC3X\":[\"Approaching limit\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"rgp8XV\":[\"Approve request\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"7kb4LU\":[\"Approved\"],\"PP/FCj\":[\"Approved billing\"],\"UwTbEE\":[\"Approving request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"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.\"],\"kWiPAC\":[\"Are you sure you want to delete this project?\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"B8ymes\":[\"Are you sure you want to delete this recording?\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"G2gLnJ\":[\"Are you sure you want to delete this tag?\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"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?\"],\"xu5cdS\":[\"Are you sure you want to finish?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"K1Omdr\":[\"Are you sure you want to generate the library? This will take a while.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"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.\"],\"JHgUuT\":[\"Artefact approved successfully!\"],\"IbpaM+\":[\"Artefact reloaded successfully!\"],\"Qcm/Tb\":[\"Artefact revised successfully!\"],\"uCzCO2\":[\"Artefact updated successfully!\"],\"KYehbE\":[\"artefacts\"],\"jrcxHy\":[\"Artefacts\"],\"fXx5hg\":[\"As a guest\"],\"Wk03/F\":[\"As an external\"],\"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.\"],\"7E4xCZ\":[\"Ask a team admin to request this upgrade.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"J2J9Ra\":[\"Ask about your conversations to get started.\"],\"Q+iu9I\":[\"Ask about your conversations, or type to find an earlier chat\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"gS0YDX\":[\"Ask for the latest version\"],\"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\"],\"5gQcdD\":[\"Ask participants to provide their name when they start a conversation\"],\"WXvltJ\":[\"Ask the agent...\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"kskjVK\":[\"Assistant is typing...\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"HrusNW\":[\"At least one topic must be selected to enable Make it concrete\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"tGsm1f\":[\"At limit\"],\"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\"],\"l7MBLv\":[\"Audio hours\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"DMBYlw\":[\"Audio Processing In Progress\"],\"D3SDJS\":[\"Audio Recording\"],\"mGVg5N\":[\"Audio recordings are scheduled to be deleted after 30 days from the recording date\"],\"HOZr0l\":[\"Audio stopped?\"],\"IOBCIN\":[\"Audio Tip\"],\"QRkk6c\":[\"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\"],\"/iCiQU\":[\"Auto-select\"],\"3D5FPO\":[\"Auto-select disabled\"],\"ajAMbT\":[\"Auto-select enabled\"],\"jEqKwR\":[\"Auto-select sources to add to the chat\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"Jpf/7k\":[\"Automatic titles and 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.\"],\"vtUY0q\":[\"Automatically includes relevant conversations for analysis without manual selection\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"csDS2L\":[\"Available\"],\"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\"],\"cxnKmT\":[\"Back out this cycle's hour count after a support incident.\"],\"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\"],\"GML8s7\":[\"Begin!\"],\"l1YmEa\":[\"Best for large organisations with complex needs.\"],\"pNJZjA\":[\"Best for organisations running regular engagements.\"],\"wkXA3o\":[\"Best for smaller teams running individual projects.\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"0fX/GG\":[\"Big Picture\"],\"vZERag\":[\"Big Picture - Themes & patterns\"],\"K9cTJe\":[\"Billed annually\"],\"/i0ppe\":[\"billed annually · \",[\"total\"],\"/seat/yr\"],\"CvxGSp\":[\"billed annually · \",[\"total\"],\"/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.\"],\"+m1BoF\":[\"Billed under your organisation\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"kwcPyx\":[\"Billing — sees usage and invoices only\"],\"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\"],\"AQCoZS\":[\"Book a call to share your feedback\"],\"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.\"],\"CzeGfZ\":[\"Browse and share templates with other hosts\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"mUs+Gr\":[\"Built in\"],\"+7fBMP\":[\"Built-in\"],\"G46Sdr\":[\"by \",[\"by\"]],\"cEoW+Y\":[\"By continuing you agree to our <0>terms. See our <1>privacy policy and <2>DPA.\"],\"ba5GvN\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you ABSOLUTELY sure you want to delete this project?\"],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"TAVHe3\":[\"Can create projects, run conversations, and generate reports.\"],\"URPLGF\":[\"can edit\"],\"E1Pgaj\":[\"Can invite others, manage workspaces, and change roles across the organisation.\"],\"6++86c\":[\"can read\"],\"cpjFAz\":[\"Can see and work inside the workspaces you give them access to.\"],\"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\"],\"PPagms\":[\"Cancel invite\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"1c9U0N\":[\"Cancel the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"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.\"],\"X2lZR9\":[\"Canvases the assistant builds for this project live here.\"],\"1t2o2w\":[\"Canvases the assistant builds for this project live here. Ask for one in chat.\"],\"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\"],\"?\"],\"KjIypx\":[\"Change \",[\"person\"],\"'s team role 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\"],\"/A54X+\":[\"Change plan\"],\"ImM7Hj\":[\"Change role\"],\"GnvhQ2\":[\"Change team role?\"],\"qpV0fp\":[\"Change tier\"],\"6TmAJF\":[\"Change workspace admin\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"JFFJDJ\":[\"Changes are saved automatically as you continue to use the app. <0/>Once you have some unsaved changes, you can click anywhere to save the changes. <1/>You will also see a button to Cancel the changes.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"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\"],\"UjwIry\":[\"Chat messages\"],\"tDlhkF\":[\"Chat name\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"+e4Yxz\":[\"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.\"],\"pWT04I\":[\"Checking...\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"zMquA7\":[\"Choose a plan\"],\"4Jd65a\":[\"Choose an organisation first\"],\"No1ERf\":[\"Choose conversations\"],\"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\"],\"0ngaDi\":[\"Citing the following sources\"],\"3wV73y\":[\"City\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"qgNDGJ\":[\"Clear the \",[\"liveProjectCount\"],\" project(s) first. You can delete all projects across your team from the team page.\"],\"K+p3CB\":[\"cleared\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"bSTNG3\":[\"Click to see which\"],\"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\"],\"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\"],\"tPnZ5Z\":[\"Coming soon — share your input\"],\"bJHBId\":[\"Common use cases:\"],\"chL5IG\":[\"Community\"],\"TVpZgL\":[\"Community templates\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"jlZul5\":[\"Compare and contrast the following items provided in the context.\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"6jBoE4\":[\"Concrete Topics\"],\"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\"],\"p2/GCq\":[\"Confirm Password\"],\"3i8TA+\":[\"Confirm privacy change\"],\"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\"],\"DFFB2t\":[\"Contact sales\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"VlCTbs\":[\"Contact your sales representative to activate this feature today!\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"aVvy3Y\":[\"Context limit reached\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"hMqszB\":[\"Continue to payment\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"ggJDqH\":[\"Conversation Audio\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"BsHMTb\":[\"Conversation Ended\"],\"GXkC8g\":[\"Conversation locked, upgrade to add to chat\"],\"RnAZnU\":[\"Conversation locked. Upgrade to add it.\"],\"26Wuwb\":[\"Conversation processing\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"lh266H\":[\"Conversation saved\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"7Ljafh\":[\"Conversation tags\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"TQ8ecW\":[\"Conversations from QR Code\"],\"nmB3V3\":[\"Conversations from Upload\"],\"Np+C87\":[\"Conversations:\"],\"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\"],\"Dj+aS5\":[\"Copy link to share this report\"],\"uU68PM\":[\"Copy referral link\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"RGCCrg\":[\"Copy share link\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"rG2gDo\":[\"Copy transcript\"],\"OvEjsP\":[\"Copying...\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"yl7cjA\":[\"Could not apply the suggested changes\"],\"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.\"],\"6x4YxZ\":[\"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.\"],\"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.\"],\"DfyKEu\":[\"Couldn't load team members. Try refreshing — if it keeps failing, contact support.\"],\"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\"],\"MnDStp\":[\"Couldn't send\"],\"gdDoR0\":[\"Couldn't send any of the invites. Try again.\"],\"5eeg0d\":[\"Couldn't send the invite. \",[\"reason\"]],\"Tug/Bh\":[\"Couldn't send the request\"],\"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\"],\"CSQPC0\":[\"Create an Account\"],\"lJ+m2/\":[\"Create an account to join\"],\"library.create\":[\"Create Library\"],\"O671Oh\":[\"Create Library\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"vY2Gfm\":[\"Create new view\"],\"uVzvzz\":[\"Create now instead\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"s7XwOU\":[\"Create Template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"/iFtGl\":[\"Created \",[\"createdDate\"]],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"ZkI7JD\":[\"credits earned\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"bfu5HZ\":[\"custom\"],\"8Tg/JR\":[\"Custom\"],\"o1nIYK\":[\"Custom Filename\"],\"TubmQJ\":[\"Custom logo\"],\"GrXJvi\":[\"Custom Logo\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"RRtvrh\":[\"Custom workspace logo. Requires changemaker tier or above.\"],\"xSrEk4\":[\"Customize how your report is structured. This feature is coming soon.\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"ZQKLI1\":[\"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\"],\"HNvS4X\":[\"Decide who can see this project. Workspace-visible projects are open to everyone in the workspace; private projects are shared with specific people.\"],\"5/oLrE\":[\"Decided at\"],\"6ibiW8\":[\"Decided by\"],\"IGhWUR\":[\"Decision\"],\"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.\"],\"bg46Kj\":[\"Decline the invite to \",[\"workspaceName\"],\"? 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)\"],\"uRo+u9\":[\"Deferred to its own reviewed issue\"],\"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\"],\"948GTz\":[\"Delete Custom Topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"MlrelG\":[\"Delete Report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"jvlIXq\":[\"Delete this project in \",[\"0\"],\"? Conversations and data stay recoverable for 30 days, then are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"9k4rtW\":[\"Delete this workspace. Members lose access immediately. Conversations and data stay recoverable for 30 days, then 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.\"],\"w6rj9x\":[\"Deleting a team 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\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"Is27ia\":[\"Echo\"],\"07jj1U\":[\"ECHO\"],\"nzP4fT\":[\"dembrane events\"],\"9UdlUZ\":[\"dembrane is powered by AI. Please double-check responses.\"],\"QMogcD\":[\"Reply\"],\"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\"],\"+G0as7\":[\"Denial reason\"],\"Xirp8V\":[\"Denial reason (required)\"],\"JsY1p5\":[\"Denied\"],\"cFCKYZ\":[\"Deny\"],\"NcfVlU\":[\"Deny request\"],\"v7sVZ5\":[\"Denying request from \",[\"0\"],\" for a \",[\"1\"],\" (\",[\"2\"],\").\"],\"EfkSCE\":[\"Describe how this template is useful...\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ozaega\":[\"Determines under which GDPR legal basis personal data is processed. This affects consent flows, data subject rights, and retention obligations.\"],\"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?\"],\"qRO0C2\":[\"Discard this request?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"ypJ62C\":[\"Discount %\"],\"9rMHld\":[\"Discount % (optional)\"],\"uBDDpE\":[\"Discount type\"],\"StHqyI\":[\"Discount type (optional)\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"hvmha6\":[\"Discoverable in this team\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"QNrZ4w\":[\"Display contextual suggestion pills in the chat\"],\"pfa8F0\":[\"Display name\"],\"vU/Hht\":[\"Distribution\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"CSUzao\":[\"Do you plan to use dembrane internally, or to provide services to other client organisations?\"],\"LnL5p2\":[\"Do you want to contribute to this project?\"],\"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\"],\"5154Ap\":[\"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\"],\"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.\\\"\"],\"tBOIWw\":[\"e.g. 12-person research team starting in June.\"],\"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\"],\"v9eY8A\":[\"e.g. tomorrow at 9:00\"],\"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.\"],\"5oD9f/\":[\"Earlier\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"HA9VXi\":[\"ECHO\"],\"rH6cQt\":[\"Echo is powered by AI. Please double-check responses.\"],\"o6tfKZ\":[\"ECHO is powered by AI. Please double-check responses.\"],\"/IJH/2\":[\"ECHO!\"],\"lgm7y2\":[\"edit\"],\"ePK91l\":[\"Edit\"],\"3XCa/B\":[\"Edit conversation\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"VFvVc6\":[\"Edit details\"],\"/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\"],\"0YvCPC\":[\"Edit Resource\"],\"report.editor.description\":[\"Edit the report content using the rich text editor below. You can format text, add links, images, and more.\"],\"nP7CdQ\":[\"Edit Webhook\"],\"gGx5tM\":[\"Editing\"],\"F6H6Lg\":[\"Editing mode\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"t7SNa4\":[\"Email it\"],\"PVXk0V\":[\"Email Pauline\"],\"LimKOG\":[\"Email verification\"],\"wwiTff\":[\"Email Verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"2eGHO+\":[\"Email Verification | dembrane\"],\"iF3AC2\":[\"Email verified successfully. You will be redirected to the login page in 5 seconds. If you are not redirected, please click <0>here.\"],\"g2N9MJ\":[\"email@work.com\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"QOINDn\":[\"empty\"],\"N2S1rs\":[\"Empty\"],\"DCRKbe\":[\"Enable 2FA\"],\"PccJlP\":[\"Enable Echo\"],\"pPJr5A\":[\"Enable ECHO\"],\"D3AnH0\":[\"Enable Explore\"],\"+ljZfM\":[\"Enable Go deeper\"],\"wGA7d4\":[\"Enable Make it concrete\"],\"4KKbfZ\":[\"Enable participation\"],\"PoQJQE\":[\"Enable Reply\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"Idlt6y\":[\"Enable this feature to allow participants to receive notifications when a report is published or updated. Participants can enter their email to subscribe for updates and stay informed.\"],\"g2qGhy\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Echo\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"pB03mG\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"ECHO\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dWv3hs\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Get Reply\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"rkE6uN\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Go deeper\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"IxzwiB\":[\"End of list • All \",[\"0\"],\" conversations loaded\"],\"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\"],\"apmnSP\":[\"Enter an email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"vT+QoP\":[\"Enter new name for the chat:\"],\"VpwcSk\":[\"Enter new password\"],\"FTDAhZ\":[\"Enter starts a new chat. Your earlier chats stay listed below.\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"od7Yaj\":[\"Enter to send, Shift+Enter for a new line\"],\"nAEwOZ\":[\"Enter your access code\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SqPU6K\":[\"enterprise scale.\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"S2MVUN\":[\"Error loading announcements\"],\"xcUDac\":[\"Error loading insights\"],\"edh3aY\":[\"Error loading project\"],\"3Uoj83\":[\"Error loading quotes\"],\"4kVRov\":[\"Error occurred\"],\"z05QRC\":[\"Error updating report\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"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\"],\"u3IaXF\":[\"Every teammate with <0>Admin, <1>Billing, or <2>Member role on this workspace counts as one seat. Guests (external participants) don't count toward seats. One person never takes more than one seat per workspace, even if they're on multiple teams.\"],\"ZPtMUS\":[\"Every tier at a glance. Same table customers see on the workspace billing tab.\"],\"Tvzhk4\":[\"Every workspace member, including externals, counts as one seat. One person never takes more than one seat per workspace, even if they're on multiple organisations.\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"S7g4F7\":[\"Everyone from your organisation is already in this workspace. Invite externals in the next step.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"vt+J2M\":[\"Everyone on your organisation can find it. Admins can join directly; members can ask to join.\"],\"S4UKM8\":[\"Everyone on your team can find it. Admins can join directly; members can ask to join.\"],\"JWYLHo\":[\"Everything a member can do, plus invite others and manage the workspace.\"],\"YxG1+8\":[\"Everything is pinned. Unpin a project to see it in this list.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"/PykH1\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"AAC/NE\":[\"Example: This conversation is about [topic]. Key terms include [term1], [term2]. Please pay special attention to [specific aspect].\"],\"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\"],\"/bsogT\":[\"Explore themes & patterns across all conversations\"],\"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\"],\"9GMUFh\":[\"Failed to approve artefact. Please try again.\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"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\"],\"p+a077\":[\"Failed to disable Auto Select for this chat\"],\"iS9Cfc\":[\"Failed to enable Auto Select for this chat\"],\"C6KoMG\":[\"Failed to finish conversation. Please try again or start a new conversation.\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"7S+M+W\":[\"Failed to generate Hidden gems. Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"DKxr+e\":[\"Failed to get announcements\"],\"TSt/Iq\":[\"Failed to get the latest announcement\"],\"D4Bwkb\":[\"Failed to get unread announcements count\"],\"AXRzV1\":[\"Failed to load audio or the audio is not available\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"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.\"],\"hhLiKu\":[\"Failed to revise artefact. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"kTtge8\":[\"Failed to save conversation\"],\"8LgIkO\":[\"Failed to start new conversation. 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\"],\"wH6wcG\":[\"Failed to verify email status. Please try again.\"],\"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\"],\"o7J4JM\":[\"Filter\"],\"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\"],\"+FLjBo\":[\"Filter by organisation id\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"JmZ/+d\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"In/BVz\":[\"Finish paying\"],\"Gt4mS+\":[\"Finish setting up your plan\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"kODvZJ\":[\"First Name\"],\"ExZc5+\":[\"Fix payment\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"wD4aF6\":[\"Focus your report (optional)\"],\"MKEPCY\":[\"Follow\"],\"JnPIOr\":[\"Follow playback\"],\"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\"],\"CVRORq\":[\"For another client\"],\"p7lPxu\":[\"For another client (Partner)\"],\"LBN11E\":[\"For bespoke compliance requirements, <0>call us for a quote.\"],\"ms1p0b\":[\"For governments and enterprises\"],\"8E3tFK\":[\"For highest-compliance environments\"],\"mSoJxU\":[\"For internal use\"],\"nEhV+p\":[\"For invoices, a shared contract, or anything custom, email <0>support@dembrane.com.\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"C2Z9Kd\":[\"For organisations with ongoing participation\"],\"LqCoaW\":[\"For small teams and single projects\"],\"GcibpE\":[\"For you\"],\"zdYjzN\":[\"for your first real engagements.\"],\"z7J3FU\":[\"Forecast\"],\"zSXExm\":[\"Forecast: ~\",[\"0\"]],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"COR9j6\":[\"Free a seat by removing someone, or upgrade to add more members. You can still invite externals in the next step.\"],\"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\"],\"wX2Tuz\":[\"from \",[\"0\"]],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"oADIO6\":[\"Generate a new report. Previous reports will remain accessible.\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"tSA0hO\":[\"Generate insights from your conversations\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"tM4cbZ\":[\"Generate structured meeting notes based on the following discussion points provided in the context.\"],\"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.\"],\"IFuhDo\":[\"Give your team a name. You can invite teammates right after, or later from settings.\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"IL8LH3\":[\"Go deeper\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"7aC3FA\":[\"Go to feedback portal\"],\"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\"],\"mK4SyY\":[\"Go to team projects\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"ELE5Sy\":[\"Going over your tier's included seats bills extra per month — see the matrix below for the per-seat rate on each tier.\"],\"uECst5\":[\"Going over your tier's included seats bills extra per month. See the matrix below for the per-seat rate on each tier.\"],\"nE5VAt\":[\"Grant\"],\"uO6Zmx\":[\"Grant Changemaker trial\"],\"Lr2Goo\":[\"Grant licenses\"],\"VSMjBh\":[\"Granted tier\"],\"5gqNQl\":[\"Grid view\"],\"RymT9k\":[\"Group by organisation\"],\"O1wAlQ\":[\"Guest\"],\"IavGPJ\":[\"guest of \",[\"0\"]],\"wrVPse\":[\"Guest of \",[\"0\"]],\"b5UNjK\":[\"guests\"],\"R4r4XO\":[\"Guests\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"З керiвництвом\"],\"/4vAEz\":[\"h this month\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"ikIKYx\":[\"Have you followed a training?\"],\"N5uzWl\":[\"Heads up: overage applies\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"Yae+po\":[\"Help us translate\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"ng2Unt\":[\"Hi, \",[\"0\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"LqWHk1\":[\"Hide \",[\"0\"]],\"u5xmYC\":[\"Hide all\"],\"txCbc+\":[\"Hide all insights\"],\"0lRdEo\":[\"Hide Conversations Without Content\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"VMlRqi\":[\"Hide details\"],\"lqv0Dk\":[\"Hide projects\"],\"L35hhe\":[\"Hide raw data\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"IzJDco\":[\"High-risk use needs training first\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"Wdy/AY\":[\"hours\"],\"yY8wAv\":[\"Hours\"],\"ZECZu7\":[\"Hours (included)\"],\"zvDeDZ\":[\"Hours from now\"],\"mkDwXL\":[\"hours this month\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"h9n8Kn\":[\"How seats work\"],\"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\"],\"EBzXZ5\":[\"I accept the <0>partner agreement for using dembrane with an external client.\"],\"QFyJWS\":[\"I accept the <0>partner agreement for using dembrane with an external organisation.\"],\"hpfvxw\":[\"I accept the <0>terms\"],\"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\"],\"WsoNdK\":[\"Identify and analyze the recurring themes in this content. Please:\\n\\nExtract patterns that appear consistently across multiple sources\\nLook for underlying principles that connect different ideas\\nIdentify themes that challenge conventional thinking\\nStructure the analysis to show how themes evolve or repeat\\nFocus on insights that reveal deeper organizational or conceptual patterns\\nMaintain analytical depth while being accessible\\nHighlight themes that could inform future decision-making\\n\\nNote: If the content lacks sufficient thematic consistency, let me know we need more diverse material to identify meaningful patterns.\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"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.\"],\"LxyF/H\":[\"If you were expecting one, please ask the person who invited you to send it again.\"],\"411+TR\":[\"If you're an advanced user setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"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\"],\"jPl00r\":[\"in \",[\"0\"],\" · \",[\"1\"],\" workspaces\"],\"QJUjB0\":[\"In order to better navigate through the quotes, create additional views. The quotes will then be clustered based on your view.\"],\"IJUcvx\":[\"In the meantime, if you want to analyze the conversations that are still processing, you can use the Chat feature\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"aOhF9L\":[\"Include portal link in report\"],\"Dvf4+M\":[\"Include timestamps\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"CE+M2e\":[\"Info\"],\"8aA4We\":[\"inherited from organisation\"],\"RGo63T\":[\"inherited from team\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"XU5AOg\":[\"Input\"],\"sQpkks\":[\"insight \",[\"0\"]],\"sMa/sP\":[\"Insight Library\"],\"ZVY8fB\":[\"Insight not found\"],\"sJa5f4\":[\"insights\"],\"3hJypY\":[\"Insights\"],\"NxHkkp\":[\"Instructions\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"aZ3JOU\":[\"Invalid token. Please try again.\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"GF7JcW\":[\"Invite a guest\"],\"+whjs5\":[\"Invite a member\"],\"TSoBxR\":[\"Invite another team, we both get credit\"],\"GC5zDI\":[\"Invite canceled\"],\"pO9Lha\":[\"Invite created, but the email could not be sent. Share the link directly.\"],\"UwSCxN\":[\"Invite declined\"],\"b3hNrZ\":[\"Invite externals\"],\"+djOzj\":[\"Invite member\"],\"7atO7I\":[\"Invite members\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"eb/0xb\":[\"Invite people outside your organisation. They get workspace-only access and count toward the seat pool.\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5ZGCq9\":[\"Invite sent to 1 workspace.\"],\"2AL6ct\":[\"Invite sent.\"],\"GARePA\":[\"Invite someone\"],\"8lj3UA\":[\"Invite someone to the organisation\"],\"fpSKV7\":[\"Invite teammates to collaborate on projects and conversations in this workspace.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"vbjOm1\":[\"Invite your 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.\"],\"5TcmSm\":[\"Invites sent to \",[\"ok\"],\" workspaces.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"7VggUu\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com for now.\"],\"mOrpPN\":[\"Invoices and payment method will land here in a future release. Request an upgrade above or email <0>upgrades@dembrane.com.\"],\"K2smda\":[\"Invoices and payment method will land here in a future release. To upgrade, email <0>upgrades@dembrane.com.\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"TioHl8\":[\"Is this for internal use, or for another client?\"],\"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.\"],\"zT7nbS\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"JsWQuM\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations. You can optionally focus the report on a specific topic.\"],\"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.\"],\"Lj7sBL\":[\"Italian\"],\"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.\"],\"GaQMyV\":[\"Join \",[\"0\"],\" on dembrane\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"mVHdFU\":[\"Join \",[\"workspaceName\"],\" | dembrane\"],\"z643mm\":[\"Join \",[\"workspaceNameParam\"],\" | 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\"],\"4fhsRZ\":[\"Join the 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.\"],\"2gMuHR\":[\"Joined\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"EYas1a\":[\"Joined \",[\"workspaceName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"OSBXx5\":[\"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\"],\"o9Ly7X\":[\"Keep this workspace invite-only.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"JTQzX8\":[\"Kickback %\"],\"KSCnVQ\":[\"Kind\"],\"vXIe7J\":[\"Language\"],\"G3qeSw\":[\"Last activity \",[\"0\"]],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"UXBCwc\":[\"Last Name\"],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"1JpmhC\":[\"Last seen \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"wL3cK8\":[\"Latest\"],\"9Fp9Lx\":[\"Latest conversations\"],\"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\"],\"PIhnIP\":[\"Let us know!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qhQjFF\":[\"Let's Make Sure We Can Hear You\"],\"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\"],\"yUQgLY\":[\"Library is currently being processed\"],\"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\"],\"3gvJj+\":[\"LinkedIn Post (Experimental)\"],\"g4/qsV\":[\"List my conversations\"],\"S2OXGw\":[\"List project 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:\"],\"TkFXaN\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"2vhEk1\":[\"Live participant funnel: scanned, setting up, and recording 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\"],\"6P2yXA\":[\"Load conversation summary\"],\"y8qoUA\":[\"Load full transcript\"],\"yQ2kGp\":[\"Load more\"],\"O0MQOa\":[\"Load project context\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQE2r9\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"ATTcN8\":[\"Loading concrete topics…\"],\"ZKylnW\":[\"Loading goal\"],\"YyMToN\":[\"Loading members\"],\"iAqFzA\":[\"Loading methodologies\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"2vCv/Y\":[\"Loading projects…\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3DkEi5\":[\"Loading verification topics…\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"bk3E2+\":[\"Loading your organisation…\"],\"+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.\"],\"FgAxTj\":[\"Log out\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"Wd2LTk\":[\"Login as an existing user\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"WXSxpf\":[\"Logo updated successfully\"],\"ToYN0y\":[\"Logo URL\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"tL2lBI\":[\"loop\"],\"Dd2gac\":[\"Loop controls will work when the canvas service is ready\"],\"IbyUFf\":[\"Low battery\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"KV4n0J\":[\"Make private to invite specific members\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"hB02vO\":[\"Manage members\"],\"g5LSkz\":[\"Manage organisation\"],\"WLAeKT\":[\"Manage organisation billing\"],\"IsFOAV\":[\"Manage team\"],\"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\"],\"MpUWTi\":[\"Member — can create and collaborate\"],\"VjLOlk\":[\"Member added\"],\"deUR+U\":[\"Member removed\"],\"YKVJAD\":[\"Member seats full on this tier\"],\"5Dc6lh\":[\"Member to promote\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"xDAtGP\":[\"Message\"],\"fiJNJu\":[\"Message (optional)\"],\"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\"],\"p9bzEr\":[\"Mic check\"],\"+WoTL8\":[\"Mic checked\"],\"Q4H8/8\":[\"Mic OK\"],\"RoM+Ii\":[\"Mic skipped\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"lWkKSO\":[\"min\"],\"oSrMRT\":[\"Mine\"],\"b85Pfh\":[\"Minimum 8 characters\"],\"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\"],\"+8Nek/\":[\"Monthly\"],\"4kanfr\":[\"Monthly billing\"],\"ZTjlaD\":[\"Monthly usage reset\"],\"f8jrkd\":[\"more\"],\"JcD7qf\":[\"More actions\"],\"zMx0gF\":[\"More templates\"],\"y1ypMV\":[\"Most popular\"],\"7BgchI\":[\"Most used\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"LTZcKg\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"? A downgrade limits features immediately.\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"KhgokM\":[\"Move conversations\"],\"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\"],\"uzUz9i\":[\"Multiple languages\"],\"NclAQ6\":[\"Multiple reasons (see workspace list).\"],\"j7HfhZ\":[\"Має бути щонайменше через 10 хвилин\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"+O1YmH\":[\"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.\"],\"x2Bp9O\":[\"Need a private workspace? Start open, upgrade to innovator, and switch to private from the workspace's billing tab.\"],\"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ту\"],\"XojC2V\":[\"New conversations available — update your 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.\"],\"P/+jkp\":[\"New conversations have been added since the library was generated. Regenerate the library to process them.\"],\"3RC8Um\":[\"New conversations have been added since your last report. Generate an updated report to include them. Your previous report will remain accessible.\"],\"QgiaQ8\":[\"New date and time\"],\"vTLqLR\":[\"New messages will be answered next.\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"uat3oi\":[\"New organisation workspace\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"+VXUp8\":[\"New Project\"],\"wzIR5D\":[\"New project | dembrane\"],\"z6wcHz\":[\"New Report\"],\"+yWJQl\":[\"New team workspace\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"fHXtk1\":[\"New workspace | dembrane\"],\"dUCJry\":[\"Newest\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.ready.to.begin.button.text\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"SDKZv+\":[\"Next tier: \",[\"0\"],\" · \",[\"1\"]],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"aXFOuf\":[\"No activity yet\"],\"WsI5bo\":[\"No announcements available\"],\"yvuGcO\":[\"No approved requests.\"],\"p6Fxed\":[\"No audio\"],\"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.\"],\"YM6Wft\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"MGOMoh\":[\"No chats match. Press Enter to ask this as a new chat.\"],\"Qqhl3R\":[\"No collections found\"],\"S8FeaY\":[\"No community templates yet. Share yours to get started.\"],\"zMt5AM\":[\"No concrete topics available.\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"zM3DDm\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"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.\"],\"meAa31\":[\"No conversations yet\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Розмов ще немає. Ви можете запланувати звiт зараз, i розмови будуть включенi пiсля їх додавання.\"],\"ax9iz4\":[\"No custom templates yet. Create one to get started.\"],\"mugTA+\":[\"No denied requests.\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"X4Dj0Z\":[\"No externals yet. Add one if you want someone outside your organisation to join this workspace.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"VInleh\":[\"No insights available. Generate insights for this conversation by visiting<0><1> the project library.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"yTx6Up\":[\"No key terms or proper nouns have been added yet. Add them using the input above to improve transcript accuracy.\"],\"+GAOVG\":[\"No logo set — dembrane default will be used.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"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\":[\"В організації поки нікого немає.\"],\"xFZCP1\":[\"No one on the team 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.\"],\"3omxcs\":[\"No other projects in this workspace.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"OIcxnC\":[\"No pending requests.\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"DquaYd\":[\"No projects in this workspace yet. Create your first one to get started.\"],\"YzI8q2\":[\"No projects match.\"],\"ghhtgM\":[\"No quotes available. Generate quotes for this conversation by visiting\"],\"yalI52\":[\"No quotes available. Generate quotes for this conversation by visiting<0><1> the project library.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"EhV94J\":[\"No resources found.\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"rXndZR\":[\"No specific focus\"],\"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}\"],\"kaDUQs\":[\"No templates yet. Create your own or browse All templates.\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"TmTivZ\":[\"No transcript available for this conversation.\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"MPZkyF\":[\"No transcripts are selected for this chat\"],\"AotzsU\":[\"No tutorial (only Privacy statements)\"],\"/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.\"],\"2h9aae\":[\"No verification topics available.\"],\"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.\"],\"gYRCGf\":[\"No workspaces\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"XiqbH/\":[\"У цій організації поки немає робочих просторів.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"Vllenn\":[\"No workspaces yet. Create one first, then come back to invite people.\"],\"3GYmOn\":[\"No workspaces yet. Create your first one to get started.\"],\"bO77U2\":[\"Nobody here yet\"],\"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.\"],\"Gx+jJH\":[\"Not on your team. Workspace-only access, doesn't count as a seat.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"eW3CdK\":[\"noted for the dembrane team\"],\"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.\"],\"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.\"],\"sC13lU\":[\"Noting this for the dembrane team\"],\"cH5kXP\":[\"Now\"],\"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.\"],\"dKeRoY\":[\"On your team. Gets a team seat (counts toward your plan) + access to this workspace.\"],\"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\"],\"ZNNVIf\":[\"One month of Changemaker on this account, comped. Auto-reverts to Free at expiry.\"],\"Sxidnu\":[\"One month of Changemaker on this org, comped. Auto-reverts to Free at expiry.\"],\"6naPW3\":[\"one month to try it.\"],\"+P5Okg\":[\"One number\"],\"MG/fiX\":[\"One plan for the whole organisation. Every workspace shares it and is billed per seat.\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"cm1lBI\":[\"one-time\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"uTmEDj\":[\"Ongoing Conversations\"],\"Dw7aQc\":[\"Only applies when report is published\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"9Uozkz\":[\"Only internally\"],\"lMXiOl\":[\"Only invited participants. Organisation admins can still find and join.\"],\"GUTiyu\":[\"Only invited participants. Team admins can still find and join.\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"fpJBWy\":[\"Only organisation admins and owners can request workspaces. Ask an admin on your organisation to create one, or ask them 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.\"],\"h77lb+\":[\"Only people you explicitly invite.\"],\"XLqKEu\":[\"Only people you explicitly invite. Available on innovator and above.\"],\"iyQldv\":[\"Only people you invite can see this workspace.\"],\"r2O4js\":[\"Only people you invite will see this workspace. Team admins can still discover and join; team members can't see it at all.\"],\"ATBdP9\":[\"Only people you invite. Team admins can still discover and join this workspace.\"],\"IVbMX4\":[\"Only people you invite. Team admins can still discover and join. Available on innovator and above.\"],\"ZW7EE2\":[\"Only team admins and owners can create workspaces. Ask an admin on your team to create one, or ask them to promote you first.\"],\"r8PFN6\":[\"Only team admins can change team settings.\"],\"QvvnWK\":[\"Only the \",[\"0\"],\" finished \",[\"1\"],\" will be included in the report right now. \"],\"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.\"],\"J17dTs\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"q+iPbO\":[\"Open actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"v34qbW\":[\"Open details\"],\"EUQ7ko\":[\"Open documentation\"],\"NRLF9V\":[\"Open Documentation\"],\"QTXl9z\":[\"Open feedback portal\"],\"aRGGej\":[\"Open for participation\"],\"2CyWv2\":[\"Open for Participation?\"],\"Z7K0px\":[\"Open guide\"],\"CD3rbs\":[\"Open host guide\"],\"JoAjm8\":[\"Open Host Guide\"],\"f04uGY\":[\"Open in library\"],\"PkMqME\":[\"Open in Library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"79ttnA\":[\"Open team\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"iI5vzg\":[\"Open the old chat experience\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"TcQzrj\":[\"Open to the organisation\"],\"ZaxMqe\":[\"Open to the team\"],\"SqsPuk\":[\"Open to the team — team admins get access automatically\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"7yrRHk\":[\"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\"],\"nWShZg\":[\"Optional — context for our team.\"],\"sgsFaU\":[\"Optional — what this workspace is for.\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"1E0RE3\":[\"Optional. Context for our team.\"],\"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\"],\"Nf3w90\":[\"Organisation billing is handled through support. For invoices, payment changes, or a shared contract, email <0>support@dembrane.com.\"],\"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\"],\"X9QndA\":[\"Organisation role\"],\"219oyt\":[\"Organisation templates are visible to everyone in this workspace. Leave off to keep it personal.\"],\"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\"],\"HAc+I8\":[\"Other hosts can see and copy your template. You can unpublish at any time.\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"gh06VD\":[\"Output\"],\"FlgGDK\":[\"Over\"],\"fabuSD\":[\"Over cap only\"],\"0Y6arb\":[\"Over hrs\"],\"XLyIZQ\":[\"Over seats\"],\"/yPQrP\":[\"Overage\"],\"NTkmOk\":[\"Overage billing applies\"],\"PGZGqF\":[\"Overage hrs\"],\"1hQ7Gb\":[\"Overage seats\"],\"IEUeP4\":[\"Overage this cycle\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"LtI9AS\":[\"Owner\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"6WdDG7\":[\"Page\"],\"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\"],\"wSuTzp\":[\"Partner handoff. Writes billed_to_team_id and notifies both organisations.\"],\"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.\"],\"vwGkYB\":[\"Password must be at least 8 characters\"],\"w3/J5c\":[\"Password protect portal (request feature)\"],\"lpIMne\":[\"Passwords do not match\"],\"R7v3cS\":[\"Paste an org id to narrow the list\"],\"IgrLD/\":[\"Pause\"],\"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\"],\"2B0V9T\":[\"Pending requests\"],\"2WtL62\":[\"Pending review\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"30ukRx\":[\"Per-workspace breakdown\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"ygzsQX\":[\"Permanent. Removes all conversations and data.\"],\"D0meML\":[\"person\"],\"OZdaTZ\":[\"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ть дату\"],\"Cu/2SC\":[\"Pick a member\"],\"ClIwLv\":[\"Pick a new tier and apply downgrade effects per matrix.\"],\"QuAEAM\":[\"Pick a plan for your team.\"],\"PYDbNJ\":[\"Pick an account\"],\"Z8PMUT\":[\"Pick at least one member or add an email.\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"ZZp6WZ\":[\"Pick at least one workspace.\"],\"SrBL1b\":[\"Pick date and time\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"5aTIg3\":[\"Pick members to bring into this workspace.\"],\"m+EMny\":[\"Pick one\"],\"fwmBX+\":[\"Pick one or more angles\"],\"cqAWJG\":[\"Pick one or more workspaces and we'll send the email.\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"ngBovh\":[\"Pick which workspaces this person should land in. They'll join the organisation through their first workspace.\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"lepv9z\":[\"Pin to chat bar\"],\"fr2ggG\":[\"pinned\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"Atb9XB\":[\"Pinned to chat bar\"],\"gukogg\":[\"Pioneer\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"3flRk2\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"S6iyis\":[\"Please do not close your browser\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"iMWXJN\":[\"Please keep this screen lit up (black screen = not recording)\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"D90h1s\":[\"Please login to continue.\"],\"mUGRqu\":[\"Please provide a concise summary of the following provided in the context.\"],\"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)\"],\"gEEhkM\":[\"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.\"],\"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.\"],\"ps5D2F\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon. \\n**Please keep this screen lit up** \\n(black screen = not recording)\"],\"TsuUyf\":[\"Please record your response by clicking the \\\"Start Recording\\\" button below. You may also choose to respond in text by clicking the text icon.\"],\"4TVnP7\":[\"Please select a language for your report\"],\"N63lmJ\":[\"Please select a language for your updated report\"],\"XvD4FK\":[\"Please select at least one source\"],\"hxTGLS\":[\"Please select conversations from the sidebar to proceed\"],\"GXZvZ7\":[\"Please wait \",[\"timeStr\"],\" before requesting another echo.\"],\"Am5V3+\":[\"Please wait \",[\"timeStr\"],\" before requesting another Echo.\"],\"CE1Qet\":[\"Please wait \",[\"timeStr\"],\" before requesting another ECHO.\"],\"Fx1kHS\":[\"Please wait \",[\"timeStr\"],\" before requesting another reply.\"],\"MgJuP2\":[\"Please wait while we generate your report. You will automatically be redirected to the report page.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"ei5r44\":[\"Please wait while we update your report. You will automatically be redirected to the report page.\"],\"j5KznP\":[\"Please wait while we verify your email address.\"],\"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\"],\"Tx36sk\":[\"Portal link\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"kL0m0z\":[\"Portal settings overview\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"g2UNkE\":[\"Powered by\"],\"cWkKWE\":[\"praise\"],\"HOo+d4\":[\"Prefer the old chat? Start a Specific Details chat\"],\"np1J1t\":[\"Prefer to chat directly? <0>Book a call with me\"],\"Q6hhn8\":[\"Preferences\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"MPWj35\":[\"Preparing your conversations... This may take a moment.\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"a7u1N9\":[\"Price\"],\"Ub/0bY\":[\"Prices exclude VAT.\"],\"QUNtu4\":[\"Pricing is still a conversation — we'll email you to work out what fits.\"],\"mIvVsm\":[\"Pricing is still a conversation. We'll email you to work out what fits.\"],\"OHFf2z\":[\"Pricing matrix\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"ANWB5x\":[\"Print this report\"],\"rjGI/Q\":[\"Privacy\"],\"SAoZaj\":[\"Privacy & defaults\"],\"nKiOIS\":[\"Privacy & Security\"],\"82KDPe\":[\"privacy and data portability.\"],\"zwqetg\":[\"Privacy Statements\"],\"zwBp5t\":[\"Private\"],\"lavCQa\":[\"Private — only people you explicitly invite\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"B5Pc6L\":[\"Private projects unlock on Innovator or higher.\"],\"1vsuTU\":[\"Private workspace\"],\"xzYMNB\":[\"Private workspace — ask a workspace admin for an invite\"],\"LJrMQL\":[\"Private workspace — ask the workspace owner for an invite\"],\"vXOtIa\":[\"Private workspaces\"],\"CLI4vR\":[\"Private, just me\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"stk3Hv\":[\"processing\"],\"vrnnn9\":[\"Processing\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"kvs/6G\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat.\"],\"q11K6L\":[\"Processing failed for this conversation. This conversation will not be available for analysis and chat. Last Known Status: \",[\"0\"]],\"NQiPr4\":[\"Processing Transcript\"],\"48px15\":[\"Processing your report...\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"vERlcd\":[\"Profile\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"2u+ykz\":[\"Project default: enabled. Disables audio playback, download, and retranscription.\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"0qmd8V\":[\"Project default: enabled. This will replace personally identifiable information with .\"],\"rmmNSG\":[\"Project defaults\"],\"xJ758z\":[\"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\"],\"hjaZqm\":[\"Project Overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"O1x7Ay\":[\"Project Overview and Edit\"],\"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\"]],\"8ytdnt\":[\"Projects across team · \",[\"0\"]],\"S9/MRb\":[\"Projects are where conversations happen — create your first one to get started.\"],\"JQVviE\":[\"Projects Home\"],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"+z9xdk\":[\"Promote\"],\"0jyUOa\":[\"Promote \",[\"0\"],\" to admin of \",[\"1\"],\"?\"],\"otGPYX\":[\"Promote a member to admin. Existing admins keep their role.\"],\"Eh2amD\":[\"Promote to admin\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"b7IXc8\":[\"Proposed billing\"],\"pAY+Io\":[\"Proposed changes\"],\"g6C5MV\":[\"Proposed tier\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"6oqr95\":[\"Provide specific context to improve transcript quality and accuracy. This may include key terms, specific instructions, or other relevant information.\"],\"UkXuCK\":[\"Provision a training, mark completion, and see who is trained. Lands with Wave E.\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"GwOmnT\":[\"Publish this report to enable printing\"],\"ZSi2AK\":[\"Publish this report to enable sharing\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"4R3R74\":[\"Published to community\"],\"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.\"],\"9iShh/\":[\"Quick Access (max 5)\"],\"utRRxm\":[\"Quick access is full (max 5)\"],\"dN0qso\":[\"Quick access:\"],\"eWLklq\":[\"Quotes\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"Z7tUbi\":[\"Rate this prompt:\"],\"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 →\"],\"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?\"],\"ZKOO0I\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"DqXVNZ\":[\"Ready to generate\"],\"4IZ7GT\":[\"Ready to record\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"rUqDqM\":[\"Recently approved\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"w80YWM\":[\"Record\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"JeS5If\":[\"Recording keeps working — your participants are unaffected.\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"OyfI/N\":[\"Recording, but no audio has come in for a while — the participant may have lost connection.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"9aloPG\":[\"References\"],\"YaFKza\":[\"Referrals\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"GwUI/g\":[\"Refresh team usage\"],\"/zZIA3\":[\"Refresh usage\"],\"Q5cYJO\":[\"Refresh will work when the canvas service is ready\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"844H5I\":[\"Regenerate Library\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"w3qEvq\":[\"Register as a new user\"],\"/PACVa\":[\"Release notes\"],\"7dZnmw\":[\"Relevance\"],\"tF5Smn\":[\"Перезавантажити сторінку\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"hTDMBB\":[\"Reload Page\"],\"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.\"],\"kGMG+f\":[\"Remove a member or external, or upgrade to invite more people.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"T/pF0Z\":[\"Remove from favorites\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"hHTkR9\":[\"Remove from quick access\"],\"0C1A5j\":[\"Remove from team\"],\"fNXnD/\":[\"Remove from team?\"],\"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\"],\"h16drr\":[\"Removed from team\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"2wxgft\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"ECPoNf\":[\"Replace logo\"],\"pirBu7\":[\"Replaces personal information with placeholders. Disables audio playback, download, and retranscription.\"],\"rnkWZt\":[\"Replies to participants\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"UZ6fKH\":[\"Report actions\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"sSy8vA\":[\"Report generation in progress...\"],\"KFQLa2\":[\"Report generation is currently in beta and limited to projects with fewer than 10 hours of recording.\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"mgTmvC\":[\"Report structure\"],\"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\"],\"uLZGK+\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"z9+ZWG\":[\"Request sent — we'll be in touch.\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"mMSvMI\":[\"Request submitted\"],\"3Tsd4q\":[\"Request submitted. We'll be in touch within 1 business day.\"],\"7rVjfL\":[\"Request support access\"],\"mzonkl\":[\"Request upgrade\"],\"XmXfrX\":[\"Request withdrawn.\"],\"EjkSfR\":[\"Request workspace\"],\"qAy5HI\":[\"Request workspace | dembrane\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"zygCqy\":[\"requested on \",[\"0\"]],\"PXQc8Y\":[\"Requester\"],\"iOpUrL\":[\"Requester proposed \",[\"0\"],\" billing — approving as \",[\"approvedBillingPeriod\"],\".\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"MepchF\":[\"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\"],\"ws6H8A\":[\"requires Innovator or higher\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Перепланувати на\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"xeMrqw\":[\"Reset All Options\"],\"I9EnzM\":[\"Reset filters\"],\"kvDiMS\":[\"Reset monthly usage\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"GdFnED\":[\"Reset this cycle's recorded hours for \",[\"0\"],\"? This is recorded in the audit trail.\"],\"L+rMC9\":[\"Reset to default\"],\"8xXw6q\":[\"Reset usage\"],\"s+MGs7\":[\"Resources\"],\"qNX9lN\":[\"Resulting workspace\"],\"participant.button.stop.resume\":[\"Resume\"],\"v39wLo\":[\"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.\"],\"eUwWVq\":[\"Review before submitting.\"],\"ad5nTJ\":[\"Review each change below. You can edit the new text first. Nothing changes until you apply.\"],\"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\"],\"3JjdaA\":[\"Run\"],\"IqCtR/\":[\"Run status:\"],\"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!\"],\"RgyKxd\":[\"Save Quick Access\"],\"5dVjYt\":[\"Save template\"],\"zaYZWH\":[\"Save to my templates\"],\"idD8Ev\":[\"Saved\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"XvjC4F\":[\"Saving...\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"yxrvvl\":[\"Скануйте або натиснiть, щоб вiдкрити портал зворотного зв'язку\"],\"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\"],\"QS1Nla\":[\"Schedule for later\"],\"wCGy0o\":[\"Schedule Report\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"IW5AEN\":[\"Scholarships are available for eligible organisations. Mention it in your message and we'll follow up.\"],\"fD+/8Z\":[\"Screen locked\"],\"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\"],\"zyeyST\":[\"Search and choose the conversations for this chat.\"],\"EJ1adC\":[\"Знайдіть і виберіть розмови для цього чату.\"],\"V0wu2W\":[\"Search by organisation\"],\"OWm+8o\":[\"Search conversations\"],\"2d+y5i\":[\"Search conversations for \\\"\",[\"0\"],\"\\\"\"],\"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...\"],\"NoN+jF\":[\"Search requester, organisation, tier\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"YOpybk\":[\"Search transcript\"],\"fEmYbH\":[\"Search transcript for \\\"\",[\"0\"],\"\\\"\"],\"nhvuQF\":[\"Search webhooks...\"],\"OAzP16\":[\"Search workspace, organisation, email, tier\"],\"S2BNQs\":[\"Search workspaces\"],\"a5EFtX\":[\"Search workspaces...\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"Wj2qJm\":[\"Searching through the most relevant sources\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"b/7cW9\":[\"Seats (included)\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"Eyh9/O\":[\"See conversation status details\"],\"ruKb0q\":[\"See plans\"],\"ic1SaJ\":[\"See upgrade options\"],\"x2i/3I\":[\"See usage\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rFD7VN\":[\"Sees usage, invoices, and payment. Doesn't touch projects.\"],\"1ZTiaz\":[\"Segments\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"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\"],\"G4qJaj\":[\"Select conversations to continue\"],\"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:\"],\"vKH1Ye\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"3mlq2q\":[\"Send a message to start an agentic run.\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"yrxqua\":[\"sent\"],\"h69WC6\":[\"Sent\"],\"u6/u3v\":[\"Sent \",[\"ok\"],\" of \",[\"0\"],\". \",[\"1\"]],\"npOqOv\":[\"Sent \",[\"ok\"],\" of \",[\"total\"],\". Check the list and retry the rest.\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"VTmyvi\":[\"Sentiment\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"fre4t8\":[\"Set an account managed, assign an account manager, and issue an offline invoice. Lands with Wave C.\"],\"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\"],\"BoR6Sz\":[\"Set up your team\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"DMl1JW\":[\"Setting up your first project\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"Z8lGw6\":[\"Share\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"/XNQag\":[\"Share this report\"],\"lRZMol\":[\"Share with community\"],\"vGu8Wy\":[\"Share with organisation\"],\"8styFN\":[\"Share with someone\"],\"dNCDbY\":[\"Share with the community\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"GxeM3V\":[\"Share your link with another team. When they upgrade to a paid tier, both of you get an hour of usage credit on us.\"],\"Dc7GM4\":[\"Share your voice\"],\"4o0klJ\":[\"Подiлiться своїм голосом, вiдсканувавши QR-код\"],\"swzLuF\":[\"Share your voice by scanning the QR code below.\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"QJX5AO\":[\"Sharing\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"h8lzfw\":[\"Show \",[\"0\"]],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"sN4DkP\":[\"Show a link for participants to contribute\"],\"lZw9AX\":[\"Show all\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"BowKyI\":[\"Show details\"],\"yrhNQG\":[\"Show duration\"],\"YbxwRo\":[\"Show generated suggestions\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"ersE21\":[\"Show projects\"],\"oNLvx+\":[\"Show raw data\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"3Sg56r\":[\"Show timeline in report (request feature)\"],\"DLEIpN\":[\"Show timestamps (experimental)\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"vcjQJN\":[\"Shown in the team header and in email subject lines.\"],\"P25g5B\":[\"Shown on the workspace selector and in email subject lines.\"],\"dbWo0h\":[\"Sign in with Google\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"lH0eLz\":[\"Skip data privacy slide (Host manages consent)\"],\"b6NHjr\":[\"Skip data privacy slide (Host manages legal base)\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"9VdvOk\":[\"Soft-delete the workspace from your team. Members lose access. Conversations stay in the database for the retention window but vanish from every view.\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"4Q9po3\":[\"Some conversations are still being processed. Auto-select will work optimally once audio processing is complete.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"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.\"],\"zazql1\":[\"Something went wrong generating your latest report. Showing your most recent completed report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"a75OAp\":[\"Something went wrong generating your report. You can try again below.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"JOKTb4\":[\"Something went wrong while uploading the file: \",[\"0\"]],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"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\"]],\"u7yVRn\":[\"Sources:\"],\"6Sh8FJ\":[\"Sovereign infrastructure and full set up.\"],\"65A04M\":[\"Spanish\"],\"zuoIYL\":[\"Speaker\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"vf1Tc/\":[\"Specific Details потребує щонайменше однієї розмови.\"],\"uXsB4R\":[\"Staff\"],\"rStJL+\":[\"Staff notes\"],\"wKG86B\":[\"Staff notes (internal, optional)\"],\"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\"],\"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\"],\"c6FrMu\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"IJaotC\":[\"Start recording\"],\"pHVkqA\":[\"Start Recording\"],\"87FQAB\":[\"Start when you are ready.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"aLMxTP\":[\"Stats light up once your first referral lands.\"],\"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\"],\"y01Zb9\":[\"Stop this run\"],\"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\"],\"ZU3JQG\":[\"Submitted\"],\"0Pd4R1\":[\"Submitted via text input\"],\"EDl9kS\":[\"Subscribe\"],\"fxvqTZ\":[\"Subscription updated.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"aZJj7n\":[\"Suggest prompts based on your conversations\"],\"FyUg+Y\":[\"Suggest prompts based on your conversations. Try sending a message to see it in action.\"],\"7NxNme\":[\"Suggested changes for your project\"],\"RBRwIV\":[\"Suggested project changes\"],\"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\"],\"4ZpfGe\":[\"Summarize key insights from my interviews\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"g6o+7L\":[\"Summary generated successfully.\"],\"zdF7Nh\":[\"Summary generated.\"],\"kiOob5\":[\"Summary not available yet\"],\"OUi+O3\":[\"Summary regenerated successfully.\"],\"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\"],\"S+yFI2\":[\"Support incident, double-counted upload, etc.\"],\"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\"],\"ay/vdo\":[\"Switch workspace\"],\"D+NlUC\":[\"System\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"DhO+ei\":[\"Tags (max 3)\"],\"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\"],\"nGZgMk\":[\"Target workspace\"],\"KM6m8p\":[\"Team\"],\"JE6ayA\":[\"Team | dembrane\"],\"4dtNEW\":[\"team admin\"],\"b0JT+b\":[\"Team admins and members will find this workspace from their home page. Admins can Join directly; members ask to join — you approve.\"],\"tWFOoc\":[\"Team admins can discover and join any workspace — including private ones. Team members see open workspaces only.\"],\"QDLqcd\":[\"Team admins can join any workspace to get a direct admin seat. Workspace invites live in each workspace's settings.\"],\"U26b98\":[\"Team admins get access automatically.\"],\"mJHjOG\":[\"Team logo\"],\"nLqMRA\":[\"Team member\"],\"G+JndD\":[\"Team members appear here once they join a workspace. Invites are sent from each workspace's Members tab.\"],\"kb9JYk\":[\"Team name\"],\"QZbc6d\":[\"Team not found\"],\"Pl0M8/\":[\"Team role\"],\"wkzD+0\":[\"Team settings\"],\"N5TbIi\":[\"Team settings | dembrane\"],\"DFAl9y\":[\"Team usage\"],\"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\"],\"1UeZgj\":[\"Template prompt content...\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"4Y5H+g\":[\"Terms\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"CPN34F\":[\"Thank you for participating!\"],\"EM1Aiy\":[\"Thank You Page\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"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.\"],\"52vwyn\":[\"The assistant is preparing this canvas.\"],\"ZfU8da\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal — it helps us fix things faster.\"],\"gtMB2A\":[\"The built-in issue reporter could not be loaded. You can still let us know what went wrong through our feedback portal. It helps us fix things faster than not submitting a report.\"],\"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.\"],\"nO942E\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"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.\"],\"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\"],\".\"],\"woefOb\":[\"The issue reporter could not be loaded. Please use the feedback portal to tell us what went wrong — it helps us fix things faster.\"],\"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.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"Lngj9Y\":[\"The Portal is the website that loads when participants scan the QR code.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"bWqoQ6\":[\"the project library.\"],\"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.\"],\"iV8+33\":[\"The summary is being regenerated. Please wait for the new summary to be available.\"],\"AgC2rn\":[\"The summary is being regenerated. Please wait upto 2 minutes for the new summary to be available.\"],\"PTNxDe\":[\"The transcript for this conversation is being processed. Please check back later.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"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.\"],\"J4a6pu\":[\"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.\"],\"e3JUb8\":[\"There was an error generating your report. In the meantime, you can analyze all your data using the library or select specific conversations to chat with.\"],\"7qENSx\":[\"There was an error updating your report. Please try again or contact support.\"],\"V7zEnY\":[\"There was an error verifying your email. Please try again.\"],\"gtlVJt\":[\"These are some helpful preset templates to get you started.\"],\"sd848K\":[\"These are your default view templates. Once you create your library these will be your first two views.\"],\"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.\"],\"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.\"],\"y+jwlP\":[\"This canvas is in your library.\"],\"MyT7if\":[\"This canvas is in your Library.\"],\"c46cYP\":[\"This canvas update is applied.\"],\"tku7ar\":[\"This conversation has no transcript yet\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"dt1MDy\":[\"This conversation is still being processed. It will be available for analysis and chat shortly.\"],\"5ZpZXq\":[\"This conversation is still being processed. It will be available for analysis and chat shortly. \"],\"SzU1mG\":[\"This email is already in the list.\"],\"JtPxD5\":[\"This email is already subscribed to notifications.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"llIx0K\":[\"This helps us set you up well. You can skip and answer later.\"],\"lja/om\":[\"This information is anonymized\"],\"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.\"],\"WXWXYi\":[\"This is the new chat experience\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"gqYJin\":[\"This is your project library. Currently, \",[\"0\"],\" conversations are waiting to be processed.\"],\"sNnJJH\":[\"This is your project library. Currently,\",[\"0\"],\" conversations are waiting to be processed.\"],\"BLwPhM\":[\"This isn't available to you\"],\"tJL2Lh\":[\"This language will be used for the Participant's Portal and transcription.\"],\"BAUPL8\":[\"This language will be used for the Participant's Portal and transcription. To change the language of this application, please use the language picker through the settings in the header.\"],\"zyA8Hj\":[\"This language will be used for the Participant's Portal, transcription and analysis. To change the language of this application, please use the language picker in the header user menu instead.\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"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.\"],\"ktjzjk\":[\"this member\"],\"b0F4W5\":[\"this month\"],\"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\"],\"BA9RFI\":[\"This person is\"],\"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.\"],\"bEbdFh\":[\"This project library was generated on\"],\"No7/sO\":[\"This project library was generated on \",[\"0\"],\".\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"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\"],\"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.\"],\"bZpqH1\":[\"This soft-deletes the project in \",[\"0\"],\". Conversations are preserved in the database but hidden from all views.\"],\"okY/ix\":[\"This summary is AI-generated and brief, for thorough analysis, use the Chat or Library.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"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\"],\"n4l4/n\":[\"This will replace personally identifiable information with .\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"T46QQU\":[\"This workspace is at its seat limit on the \",[\"0\"],\" tier. Free a seat by removing someone, or upgrade the workspace tier to invite more members.\"],\"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.\"],\"9jt2Oo\":[\"This workspace is on <0>\",[\"tier\"],\"\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"ZB15rL\":[\"This workspace joins your organisation's plan. Manage the plan and seats from the organisation's billing.\"],\"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\"],\"JzjmSo\":[\"Tier expires\"],\"LhMjLm\":[\"Час\"],\"Ww6cQ8\":[\"Time Created\"],\"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.\"],\"5h7Z+m\":[\"To assign a new tag, please create it first in the project overview.\"],\"o3rowT\":[\"To generate a report, please start by adding conversations in your project\"],\"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\"],\"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\"],\"1KLS0e\":[\"Transcribed\"],\"I/6viX\":[\"Transcribing\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"AJc6ig\":[\"Transcript not available\"],\"N/50DC\":[\"Transcript Settings\"],\"MzWrba\":[\"Transcription error\"],\"FRje2T\":[\"Transcription in progress...\"],\"0l9syB\":[\"Transcription in progress…\"],\"76Oe+B\":[\"Transfer the primary admin role to another member.\"],\"76KV1c\":[\"Transfer workspace to another organisation\"],\"H3fItl\":[\"Transform these transcripts into a LinkedIn post that cuts through the noise. Please:\\n\\nExtract the most compelling insights - skip anything that sounds like standard business advice\\nWrite it like a seasoned leader who challenges conventional wisdom, not a motivational poster\\nFind one genuinely unexpected observation that would make even experienced professionals pause\\nMaintain intellectual depth while being refreshingly direct\\nOnly use data points that actually challenge assumptions\\nKeep formatting clean and professional (minimal emojis, thoughtful spacing)\\nStrike a tone that suggests both deep expertise and real-world experience\\n\\nNote: If the content doesn't contain any substantive insights, please let me know we need stronger source material. I'm looking to contribute real value to the conversation, not add to the noise.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"0Ux4+O\":[\"Trial granted\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"qJb6G2\":[\"Try Again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"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.\"],\"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...\"],\"PD9mEt\":[\"Type a message...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"V9+2pH\":[\"Ukrainian\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"8vqTzl\":[\"Unable to load the generated artefact. Please try again.\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"dIoYmB\":[\"Unassigned organisation\"],\"8ryDoK\":[\"Under your organisation\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"3IsN/K\":[\"unlimited · €5000/mo\"],\"JVW+Ic\":[\"Unlimited hours\"],\"i5yNAO\":[\"Unlimited seats\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dFIzZ6\":[\"Unpin from chat bar\"],\"dx+iaL\":[\"Unpin project\"],\"KyKziT\":[\"Unpublish from community\"],\"KuVpz+\":[\"Unread\"],\"H899Z+\":[\"unread announcement\"],\"0pinHa\":[\"unread announcements\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"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\"],\"Q3MPWA\":[\"Update password\"],\"3RboBp\":[\"Update Report\"],\"H/FUVb\":[\"Update rhythm\"],\"4loE8L\":[\"Update the report to include the latest data\"],\"vEdQb2\":[\"Update your password\"],\"Jv5s94\":[\"Update your report to include the latest changes in your project. The link to share the report would remain the same.\"],\"dc7aFC\":[\"Update your team's name and branding. Workspace-level settings live on each workspace's own settings page.\"],\"x4Xp3c\":[\"updated\"],\"+b7T3G\":[\"Updated\"],\"4Y9aig\":[\"Updated \",[\"0\"]],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"A2aBzV\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"wOjjop\":[\"Updates every few minutes until \",[\"0\"],\".\"],\"tXerH7\":[\"Updates every few minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"kwkhPe\":[\"Upgrade\"],\"MOnP44\":[\"Upgrade pending\"],\"sv6ORV\":[\"Upgrade request\"],\"7PGyDS\":[\"Upgrade requests\"],\"doMiaH\":[\"Upgrade to \",[\"0\"]],\"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\"],\"UkyAtj\":[\"Upgrade to unlock Auto-select and analyze 10x more conversations in half the time—no more manual selection, just deeper insights instantly.\"],\"Rv1S1O\":[\"Upgrade to view this\"],\"A23Uef\":[\"Upgrade your plan to create more reports in this workspace.\"],\"5x82bP\":[\"Upgrade your plan to create more workspaces in this organisation.\"],\"HK7207\":[\"Upgrade your plan to keep chatting in this workspace.\"],\"lp2Qaw\":[\"Upgrade your plan to start more chats in this workspace.\"],\"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.\"],\"8XD6tj\":[\"Upload Audio\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"Wft2yh\":[\"Upload in progress\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"4vsWBY\":[\"Upload locked\"],\"QfiWpJ\":[\"Upload logo\"],\"JveaeL\":[\"Upload resources\"],\"3wG7HI\":[\"Uploaded\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"xUxqfR\":[\"Usage and billing, partner ledger, upgrade triage. Any Directus admin has access.\"],\"8SF73i\":[\"Usage and billing, partner ledger. Any Directus admin has access.\"],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"lo5FIu\":[\"Usage and tier\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"GSLtOt\":[\"Usage resets at the start of each calendar month.\"],\"RuzOGi\":[\"Usage this cycle\"],\"DsBeuB\":[\"Use\"],\"kqaF8V\":[\"Use default\"],\"VdaKZe\":[\"Use experimental features\"],\"rmMdgZ\":[\"Use PII Redaction\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"UATe28\":[\"Used / Included\"],\"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\"],\"GWpt68\":[\"Verification Topics\"],\"c242dc\":[\"verified\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"swn5Tq\":[\"verified artefact\"],\"ob18eo\":[\"Verified Artefacts\"],\"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\"],\"jfJ5G9\":[\"Very quiet right now — check the mic isn't muted\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SYcx92\":[\"View billing\"],\"+fxiY8\":[\"View conversation details\"],\"H1e6Hv\":[\"View Conversation Status\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"7bvD/5\":[\"View read announcements\"],\"U5dMR6\":[\"View workspace\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"+ZNmmW\":[\"Viewing \",[\"0\"],\". Back to live\"],\"nFTq4y\":[\"views\"],\"2q/Q7x\":[\"Visibility\"],\"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.\"],\"CExVNP\":[\"Visitor\"],\"RdG06l\":[\"Visitor details\"],\"tzEbkt\":[\"Wait \",[\"0\"],\":\",[\"1\"]],\"uUehLT\":[\"Waiting\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"tCfopB\":[\"Want custom report structures?\"],\"VKMCO0\":[\"Want to add a template to \\\"dembrane\\\"?\"],\"bO5RNo\":[\"Want to add a template to ECHO?\"],\"v8z9fL\":[\"Want to customize how your report looks?\"],\"r6y+jM\":[\"Warning\"],\"pUTmp1\":[\"Warning: You have added \",[\"0\"],\" key terms. Only the first \",[\"ASSEMBLYAI_MAX_HOTWORDS\"],\" will be used by the transcription engine.\"],\"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.\"],\"SrJOPD\":[\"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\":[\"Ми не знайшли сторінку, яку ви шукали. Можливо, її перемістили.\"],\"Ewk6kb\":[\"We couldn't load the audio. Please try again later.\"],\"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.\"],\"GS7RDc\":[\"We couldn't load this project. Try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"0rYxWL\":[\"We couldn't load your organisation's members.\"],\"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.\"],\"gUgn6H\":[\"We couldn't load your workspaces. Check your connection and try again.\"],\"beC4ZI\":[\"We couldn't update your billing\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"xMeAeQ\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder.\"],\"9qYWL7\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact evelien@dembrane.com\"],\"3fS27S\":[\"We have sent you an email with next steps. If you don't see it, check your spam folder. If you still don't see it, please contact jules@dembrane.com\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"BXujw+\":[\"We sent a verification link to <0>\",[\"0\"],\". Click the link to finish setting up your account.\"],\"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.\"],\"rKQ+xP\":[\"We sent you a verification link. Click the link 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.\"],\"OMMIQ7\":[\"We'll review it within 1 business day.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"tQtKw5\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"2ZUkkL\":[\"We're designing this feature and would love your input.\"],\"+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.\"],\"6YEYpD\":[\"We've added teams so you can organize projects and share them with colleagues. Everything you had before is still here — we just need a name for your team.\"],\"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\"]],\"qDZ8Jf\":[\"Welcome to \",[\"workspaceName\"],\". Taking you there…\"],\"i1hzzO\":[\"Welcome to Big Picture Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Details mode.\"],\"OM+lH0\":[\"Welcome to dembrane\"],\"1GYTCh\":[\"Ласкаво просимо до dembrane Chat! Використовуйте бічну панель, щоб обрати ресурси та розмови, які ви хочете проаналізувати. Потім ви зможете ставити запитання щодо обраних ресурсів і розмов.\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"TACmoL\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Deep Dive mode.\"],\"u4aLOz\":[\"Ласкаво просимо в режим Огляду! Я завантажив підсумки всіх ваших розмов. Запитуйте мене про закономірності, теми та висновки у ваших даних. Для точних цитат розпочніть нову бесіду в режимі Конкретного Контексту.\"],\"Bck6Du\":[\"Welcome to Reports!\"],\"aEpQkt\":[\"Welcome to Your Home! Here you can see all your projects and get access to tutorial resources. Currently, you have no projects. Click \\\"Create\\\" to configure to get started!\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"Tfxjl5\":[\"What are the main themes across all conversations?\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"En5QxT\":[\"What can Ask do?\"],\"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?\"],\"fyMvis\":[\"What patterns emerge from the data?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"ZsEVar\":[\"What should this report focus on?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"zVkRyZ\":[\"What this project is using, and who can see it.\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"Ul3erb\":[\"What you can reach\"],\"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.\"],\"LEYli4\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. This cannot be undone for already-processed conversations.\"],\"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.\"],\"g5bTUj\":[\"When participants scan the QR code, they'll appear here and move 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.\"],\"j6hUp4\":[\"Which team does this workspace belong to?\"],\"YJ6PSL\":[\"Which workspace?\"],\"WZ2PdU\":[\"Who\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"w3UV7F\":[\"Who can see this workspace?\"],\"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\"],\"tv8kMP\":[\"With clients\"],\"QdkkH5\":[\"With external clients\"],\"Y/i/jr\":[\"With partners\"],\"KWhZCH\":[\"Within my organisation\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"hqmXmc\":[\"Working...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"dF5lba\":[\"Workspace admin changed\"],\"tPe+ak\":[\"Workspace created\"],\"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\"],\"7etw3b\":[\"Workspace role\"],\"+sRN57\":[\"Workspace seats full on \",[\"tier\"],\". \",[\"seatLine\"],\" seats used. Free a seat or upgrade to add more.\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"SBlfWi\":[\"Workspace-level logo overrides the team logo when set.\"],\"WGAUb6\":[\"Workspace-level logo takes precedence when set.\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"HVOLFE\":[\"Workspaces | dembrane\"],\"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\"],\"FFuEHN\":[\"You already have a free workspace. <0>Open \",[\"0\"],\"\"],\"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.\"],\"ZPplNO\":[\"You can change this later on the organisation People tab.\"],\"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.\"],\"tbeb1Y\":[\"You can still use the Ask feature to chat with any conversation\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"D64xqE\":[\"You can't request a workspace yet\"],\"idzU6E\":[\"You don't have access to any workspace right now.\"],\"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.\"],\"9lUCKE\":[\"You don't have permission to create workspaces in that team. Falling back to your primary team 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.\"],\"vCyT5z\":[\"You have some conversations that have not been processed yet. Regenerate the library to process them.\"],\"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.\"],\"1kxxiH\":[\"You may choose to add a list of proper nouns, names, or other information that may be relevant to the conversation. This will be used to improve the quality of the transcripts.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"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.\"],\"436jz4\":[\"You'll get a notification once the request is approved or if we need more details. You can track the status on your workspaces page.\"],\"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.\"],\"Qzlz45\":[\"You're about to change your own role to <0>\",[\"v\"],\". 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.\"],\"SqF5u9\":[\"You're an external in this workspace. Projects will show up here once someone on the organisation shares one with you.\"],\"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.\"],\"9xoW9y\":[\"You're not in any team yet. Create a workspace to start a team, or ask a teammate 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.\"],\"A/aP1Q\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill.\"],\"HPypvw\":[\"You're over your included seats. Each new member adds €\",[\"seatOverageRate\"],\"/month to next bill. Upgrade to a higher tier if you'd rather not pay overage.\"],\"wvf2Vf\":[\"You're over your included seats. Overage applies on the next bill.\"],\"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.\"],\"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.\"],\"DivVK4\":[\"your brand, your integrations.\"],\"Pw2f/0\":[\"Your conversation is currently being transcribed. Please check back in a few moments.\"],\"OFDbfd\":[\"Your Conversations\"],\"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.\"],\"VrzR02\":[\"Your free plan includes one conversation. Upgrade to add more to the chat.\"],\"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.\"],\"PUWgP9\":[\"Your library is empty. Create a library to see your first insights.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"opMSof\":[\"Your organisation\"],\"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\"],\"8HeSu5\":[\"Your password no longer meets our security requirements. Set a stronger one to keep your account secure.\"],\"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.\"],\"65DeLY\":[\"Your referral link\"],\"hMnKHS\":[\"Your referrals\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"wurHZF\":[\"Your responses\"],\"F8OivI\":[\"Your team is waiting for you. Just one quick step to get set up.\"],\"vQVFLU\":[\"Your team or company\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lZNgiw\":[\"Your Views\"],\"cWxFvm\":[\"Your workspace is ready.\"],\"q48J96\":[\"Yours\"],\"crrqaX\":[\"yr\"],\"htVSbz\":[\"Zeroes this cycle's recorded hours from now on. Conversations are kept; only the billing count resets.\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/routes/project/ProjectRoutes.tsx b/echo/frontend/src/routes/project/ProjectRoutes.tsx index 11f8a9695..3ecac7d17 100644 --- a/echo/frontend/src/routes/project/ProjectRoutes.tsx +++ b/echo/frontend/src/routes/project/ProjectRoutes.tsx @@ -13,6 +13,7 @@ import { } from "@/components/project/hooks"; import ProjectBasicEdit from "@/components/project/ProjectBasicEdit"; import { ProjectDangerZone } from "@/components/project/ProjectDangerZone"; +import { ProjectExperimentalSection } from "@/components/project/ProjectExperimentalSection"; import { ProjectExportSection } from "@/components/project/ProjectExportSection"; import { ProjectMoveWorkspace } from "@/components/project/ProjectMoveWorkspace"; import { ProjectPortalEditor } from "@/components/project/ProjectPortalEditor"; @@ -23,7 +24,7 @@ import { } from "@/components/project/ProjectUsageAndSharing"; import { WebhookSection } from "@/components/project/webhooks/WebhookSettingsCard"; import { FeatureGate } from "@/components/workspace/FeatureGate"; -import { ENABLE_WEBHOOKS } from "@/config"; +import { ENABLE_CANVAS, ENABLE_WEBHOOKS } from "@/config"; import { useWorkspace } from "@/hooks/useWorkspace"; import { getProjectTranscriptsLink } from "@/lib/api"; import type { Tier } from "@/lib/tiers"; @@ -58,6 +59,7 @@ export const ProjectSettingsRoute = () => { "updated_at", "language", "is_conversation_allowed", + "is_canvas_enabled", "default_conversation_ask_for_participant_name", ], }), @@ -112,6 +114,13 @@ export const ProjectSettingsRoute = () => { {projectId && } + {ENABLE_CANVAS && ( + <> + + + + )} + diff --git a/echo/server/.env.sample b/echo/server/.env.sample index e145095ef..2b582ef88 100644 --- a/echo/server/.env.sample +++ b/echo/server/.env.sample @@ -30,6 +30,8 @@ DISABLE_CHAT_TITLE_GENERATION=0 SERVE_API_DOCS=0 DISABLE_SENTRY=0 ENABLE_MONITOR=1 +# Global canvas kill switch. Even when on, canvas is opt-in per project via +# the experimental toggle (project.is_canvas_enabled). Production sets 0. ENABLE_CANVAS=1 ############################################################ @@ -108,3 +110,10 @@ MOLLIE_WEBHOOK_URL= # a test_ key; ignored in production. Set to true, change a seat, watch the # billing dashboard flag the account, then set back to false to recover. MOLLIE_FORCE_RECONCILE_FAILURE=false + +# Support-request forwarding to sam (#gen-engineering triage, ISSUE-034). +# Both unset (the default) disables the forwarder. URL is sam's public edge +# function; the token is the shared static secret (echo-gitops sealed +# secrets ↔ sam's Secret Manager), sent as X-Echo-Support-Token. +SUPPORT_WEBHOOK_URL= +ECHO_SUPPORT_WEBHOOK_TOKEN= diff --git a/echo/server/dembrane/agentic_client.py b/echo/server/dembrane/agentic_client.py index 760bec834..4be7c2a4d 100644 --- a/echo/server/dembrane/agentic_client.py +++ b/echo/server/dembrane/agentic_client.py @@ -113,6 +113,7 @@ async def stream_agent_events( chat_id: Optional[str] = None, app_user_id: Optional[str] = None, message_id: Optional[str] = None, + canvas_enabled: bool = False, agent_service_url: Optional[str] = None, timeout_seconds: Optional[float] = None, ) -> AsyncGenerator[dict[str, Any], None]: @@ -133,6 +134,9 @@ async def stream_agent_events( headers["X-Dembrane-App-User-Id"] = app_user_id if message_id: headers["X-Dembrane-Message-Id"] = message_id + # Always explicit so the agent never guesses: canvas tools and prompt + # sections exist only when the project's beta toggle is on. + headers["X-Dembrane-Canvas-Enabled"] = "1" if canvas_enabled else "0" payload: dict[str, Any] = { "threadId": thread_id, diff --git a/echo/server/dembrane/agentic_worker.py b/echo/server/dembrane/agentic_worker.py index 7c127d714..0751f28cf 100644 --- a/echo/server/dembrane/agentic_worker.py +++ b/echo/server/dembrane/agentic_worker.py @@ -17,6 +17,7 @@ ) from dembrane.agentic_runtime import clear_cancel, publish_live_event, is_cancel_requested from dembrane.service.agentic import AgenticRunService +from dembrane.api.feature_flags import project_canvas_enabled logger = getLogger("dembrane.agentic_worker") @@ -403,6 +404,7 @@ async def _stream_with_overflow_retry( chat_id: str | None = None, app_user_id: str | None = None, message_id: str | None = None, + canvas_enabled: bool = False, ) -> AsyncGenerator[dict[str, Any], None]: attempts: list[list[dict[str, str]]] = [message_history] if len(message_history) > OVERFLOW_RETRY_WINDOW_SIZE: @@ -423,6 +425,7 @@ async def _stream_with_overflow_retry( chat_id=chat_id, app_user_id=app_user_id, message_id=message_id, + canvas_enabled=canvas_enabled, ): emitted_events = True yield event @@ -665,6 +668,7 @@ async def _emit_chat_error(error_code: str, message: str) -> None: svc=svc, run_id=run_id, ) + canvas_enabled = await project_canvas_enabled(project_id) async for event in _stream_with_overflow_retry( project_id=project_id, @@ -675,6 +679,7 @@ async def _emit_chat_error(error_code: str, message: str) -> None: chat_id=project_chat_id or None, app_user_id=app_user_id, message_id=message_id, + canvas_enabled=canvas_enabled, ): await _raise_if_cancelled(run_id, turn_seq) event_type = str(event.get("type") or event.get("event") or "agent.event") diff --git a/echo/server/dembrane/api/agentic.py b/echo/server/dembrane/api/agentic.py index 3daa6c399..47e3ac5f5 100644 --- a/echo/server/dembrane/api/agentic.py +++ b/echo/server/dembrane/api/agentic.py @@ -48,7 +48,7 @@ subscribe_live_events, ) from dembrane.service.agentic import TERMINAL_RUN_STATUSES, AgenticRunNotFoundException -from dembrane.api.feature_flags import require_canvas_enabled +from dembrane.api.feature_flags import require_canvas_enabled_for_project from dembrane.api.dependency_auth import DirectusSession, DependencyDirectusSession AgenticRouter = APIRouter(tags=["agentic"]) @@ -1588,7 +1588,7 @@ async def _get_project_chat_or_404( @AgenticRouter.get( "/projects/{project_id}/canvases", - dependencies=[Depends(require_canvas_enabled)], + dependencies=[Depends(require_canvas_enabled_for_project)], ) async def list_project_canvases( project_id: str, @@ -1660,7 +1660,7 @@ async def _recent_loop_runs(loop_id: str, limit: int) -> list[dict[str, Any]]: @AgenticRouter.get( "/projects/{project_id}/chats/{chat_id}/canvas-activity", - dependencies=[Depends(require_canvas_enabled)], + dependencies=[Depends(require_canvas_enabled_for_project)], ) async def list_chat_canvas_activity( project_id: str, @@ -1718,7 +1718,7 @@ async def list_chat_canvas_activity( @AgenticRouter.get( "/projects/{project_id}/canvases/{canvas_id}", - dependencies=[Depends(require_canvas_enabled)], + dependencies=[Depends(require_canvas_enabled_for_project)], ) async def get_project_canvas( project_id: str, @@ -1743,7 +1743,7 @@ async def get_project_canvas( @AgenticRouter.get( "/projects/{project_id}/canvases/{canvas_id}/history", - dependencies=[Depends(require_canvas_enabled)], + dependencies=[Depends(require_canvas_enabled_for_project)], ) async def get_project_canvas_history( project_id: str, @@ -1765,7 +1765,7 @@ async def get_project_canvas_history( @AgenticRouter.post( "/projects/{project_id}/canvases/{canvas_id}/edit", - dependencies=[Depends(require_canvas_enabled)], + dependencies=[Depends(require_canvas_enabled_for_project)], ) async def edit_project_canvas( project_id: str, @@ -1796,7 +1796,7 @@ async def edit_project_canvas( @AgenticRouter.post( "/projects/{project_id}/canvases/{canvas_id}/host-items", - dependencies=[Depends(require_canvas_enabled)], + dependencies=[Depends(require_canvas_enabled_for_project)], ) async def add_project_canvas_host_item( project_id: str, @@ -1822,7 +1822,7 @@ async def add_project_canvas_host_item( @AgenticRouter.post( "/projects/{project_id}/canvases/{canvas_id}/host-items/remove", - dependencies=[Depends(require_canvas_enabled)], + dependencies=[Depends(require_canvas_enabled_for_project)], ) async def remove_project_canvas_host_item( project_id: str, @@ -1843,7 +1843,7 @@ async def remove_project_canvas_host_item( @AgenticRouter.post( "/projects/{project_id}/canvases/{canvas_id}/loop/{action}", - dependencies=[Depends(require_canvas_enabled)], + dependencies=[Depends(require_canvas_enabled_for_project)], ) async def update_project_canvas_loop( project_id: str, diff --git a/echo/server/dembrane/api/feature_flags.py b/echo/server/dembrane/api/feature_flags.py index adf9cae0e..1a84ae4a2 100644 --- a/echo/server/dembrane/api/feature_flags.py +++ b/echo/server/dembrane/api/feature_flags.py @@ -2,6 +2,8 @@ from __future__ import annotations +from typing import Any + from fastapi import HTTPException, status from dembrane.settings import get_settings @@ -11,3 +13,38 @@ def require_canvas_enabled() -> None: """404 (not 403, to hide existence) when the canvas feature is disabled.""" if not get_settings().feature_flags.enable_canvas: raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Not found") + + +def require_project_canvas_enabled(project: dict[str, Any] | None) -> None: + """404 unless the global flag is on AND this project opted into the canvas beta. + + Canvas is off by default everywhere; a host flips project.is_canvas_enabled + via the experimental toggle in project settings. Pass the already-fetched + project row (e.g. ResourceAccess.project) to avoid a second read. + """ + require_canvas_enabled() + if not (project or {}).get("is_canvas_enabled"): + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Not found") + + +async def project_canvas_enabled(project_id: str) -> bool: + """Plain boolean: the global flag AND the project's beta toggle. + + Also used outside FastAPI (agentic worker, tick pipeline) to decide + whether canvas capabilities exist for a project at all. + """ + if not get_settings().feature_flags.enable_canvas: + return False + from dembrane.directus_async import async_directus + + try: + project = await async_directus.get_item("project", project_id) + except Exception: + return False + return bool(isinstance(project, dict) and project.get("is_canvas_enabled")) + + +async def require_canvas_enabled_for_project(project_id: str) -> None: + """Dependency variant for routes with a {project_id} path param.""" + if not await project_canvas_enabled(project_id): + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Not found") diff --git a/echo/server/dembrane/api/v2/bff/canvases.py b/echo/server/dembrane/api/v2/bff/canvases.py index c8a726b6e..74490bca6 100644 --- a/echo/server/dembrane/api/v2/bff/canvases.py +++ b/echo/server/dembrane/api/v2/bff/canvases.py @@ -38,7 +38,7 @@ ) from dembrane.directus_async import async_directus from dembrane.canvas.sanitize import sanitize_canvas_html -from dembrane.api.feature_flags import require_canvas_enabled +from dembrane.api.feature_flags import require_canvas_enabled, require_project_canvas_enabled from dembrane.api.v2.bff._access import resolve_report_access, resolve_project_access from dembrane.api.dependency_auth import DependencyDirectusSession @@ -109,6 +109,7 @@ def _report_id(report: dict[str, Any]) -> str: async def _require_canvas(report_id: str, auth: DependencyDirectusSession) -> tuple[dict, Any]: access, report = await resolve_report_access(report_id, auth) + require_project_canvas_enabled(access.project) access.require("project:read") if report.get("kind") != "canvas": raise HTTPException(status_code=404, detail="Canvas not found") @@ -218,6 +219,7 @@ async def list_canvases( project_id: str = Query(..., min_length=1), ) -> list[dict[str, Any]]: access = await resolve_project_access(project_id, auth) + require_project_canvas_enabled(access.project) access.require("project:read") return await list_canvas_summaries(project_id) @@ -228,6 +230,7 @@ async def create_canvas_endpoint( auth: DependencyDirectusSession, ) -> dict: access = await resolve_project_access(body.project_id, auth) + require_project_canvas_enabled(access.project) access.require("project:update") now = datetime.now(timezone.utc) @@ -265,6 +268,7 @@ async def preview_canvas( auth: DependencyDirectusSession, ) -> dict[str, str]: access = await resolve_project_access(body.project_id, auth) + require_project_canvas_enabled(access.project) access.require("project:update") client = await get_redis_client() diff --git a/echo/server/dembrane/api/v2/bff/tags.py b/echo/server/dembrane/api/v2/bff/tags.py index 09feaa1ed..278a9647c 100644 --- a/echo/server/dembrane/api/v2/bff/tags.py +++ b/echo/server/dembrane/api/v2/bff/tags.py @@ -247,6 +247,10 @@ class ProjectUpdate(BaseModel): is_get_reply_enabled: Optional[bool] = None is_verify_enabled: Optional[bool] = None is_verify_on_finish_enabled: Optional[bool] = None + # Per-project opt-in for the living canvas beta (experimental toggle + # in project settings). Pydantic drops unknown fields silently, so the + # toggle write no-ops unless this is whitelisted here. + is_canvas_enabled: Optional[bool] = None # CSV string, not a list: matches the text column and verify.py's # serialization (null clears the selection). selected_verification_key_list: Optional[str] = None diff --git a/echo/server/dembrane/canvas/ticks.py b/echo/server/dembrane/canvas/ticks.py index 037c2bb89..00a921ff4 100644 --- a/echo/server/dembrane/canvas/ticks.py +++ b/echo/server/dembrane/canvas/ticks.py @@ -817,6 +817,25 @@ async def _merge_extraction_for_tick( return living_state, combined_detail +async def _canvas_enabled_for_loop(loop: dict[str, Any]) -> bool: + """Canvas is opt-in per project; loops for non-opted-in projects no-op. + + Deliberately reads through this module's async_directus (not the shared + feature-flags helper) so the tick pipeline stays self-contained and + test-fakeable. + """ + if not get_settings().feature_flags.enable_canvas: + return False + project_id = _as_id(loop.get("project_id")) + if not project_id: + return False + try: + project = await async_directus.get_item("project", project_id) + except Exception: + return False + return bool(isinstance(project, dict) and project.get("is_canvas_enabled")) + + async def run_tick(loop_id: str, tick_kind: str = "scheduled") -> dict[str, Any]: """Run one bounded gather -> generate -> sanitize -> store tick.""" started_at = _now() @@ -824,6 +843,15 @@ async def run_tick(loop_id: str, tick_kind: str = "scheduled") -> dict[str, Any] if not loop: raise RuntimeError("Canvas loop not found") + if not await _canvas_enabled_for_loop(loop): + run = await _create_run( + loop_id=loop_id, + status="no_op", + detail="Canvas is disabled for this project", + started_at=started_at, + ) + return {"status": "disabled", "run": run} + expires_at = _parse_dt(loop.get("expires_at")) if expires_at and started_at >= expires_at: await async_directus.update_item("agent_loop", loop_id, {"status": "expired"}) @@ -1042,6 +1070,8 @@ async def run_tick(loop_id: str, tick_kind: str = "scheduled") -> dict[str, Any] async def reconcile_missing_canvas_tick_tasks() -> int: """Backfill one pending scheduled canvas tick for each active loop missing one.""" + if not get_settings().feature_flags.enable_canvas: + return 0 now = _now() loops = await async_directus.get_items( "agent_loop", diff --git a/echo/server/dembrane/scheduler.py b/echo/server/dembrane/scheduler.py index e83de57a8..705f20b92 100644 --- a/echo/server/dembrane/scheduler.py +++ b/echo/server/dembrane/scheduler.py @@ -80,6 +80,14 @@ replace_existing=True, ) +scheduler.add_job( + func="dembrane.tasks:task_forward_support_requests.send", + trigger=CronTrigger(minute="*/2"), + id="task_forward_support_requests", + name="Forward new support_request rows to sam for #gen-engineering triage (ISSUE-034)", + replace_existing=True, +) + scheduler.add_job( func="dembrane.tasks:task_expire_workspace_tiers.send", trigger=CronTrigger(minute=0), diff --git a/echo/server/dembrane/settings.py b/echo/server/dembrane/settings.py index 8780ddbf8..4cce0f89b 100644 --- a/echo/server/dembrane/settings.py +++ b/echo/server/dembrane/settings.py @@ -277,7 +277,9 @@ class FeatureFlagSettings(BaseSettings): alias="ENABLE_MONITOR", validation_alias=AliasChoices("ENABLE_MONITOR", "FEATURE_FLAGS__ENABLE_MONITOR"), ) - # Default on; production sets ENABLE_CANVAS=0 to pull the feature this release. + # Global kill switch. Even when on, canvas is opt-in per project via the + # experimental toggle (project.is_canvas_enabled, default false). + # Production sets ENABLE_CANVAS=0 this release (gitops values-prod.yaml). enable_canvas: bool = Field( default=True, alias="ENABLE_CANVAS", @@ -629,6 +631,33 @@ def reconcile_failure_forced(self) -> bool: return self.mollie_test_mode and self.mollie_force_reconcile_failure +class SupportSettings(BaseSettings): + """Support-request forwarding to sam, the engineering coworker bot + (ISSUE-034). The forwarder task no-ops unless BOTH are set — the local + default. The URL is sam's public edge function; the token is the shared + static secret sam validates (sent as `X-Echo-Support-Token`, since on + sam's ingress `Authorization` carries the GCP IAM identity token).""" + + model_config = SettingsConfigDict(env_file=".env", extra="ignore", case_sensitive=False) + + forward_webhook_url: Optional[str] = Field( + default=None, + alias="SUPPORT_WEBHOOK_URL", + validation_alias=AliasChoices("SUPPORT_WEBHOOK_URL", "SUPPORT__FORWARD_WEBHOOK_URL"), + ) + forward_webhook_token: Optional[str] = Field( + default=None, + alias="ECHO_SUPPORT_WEBHOOK_TOKEN", + validation_alias=AliasChoices( + "ECHO_SUPPORT_WEBHOOK_TOKEN", "SUPPORT__FORWARD_WEBHOOK_TOKEN" + ), + ) + + @property + def forwarding_enabled(self) -> bool: + return bool(self.forward_webhook_url and self.forward_webhook_token) + + class AppSettings: """ Aggregate application settings composed from modular sections. @@ -651,6 +680,7 @@ def __init__(self) -> None: self.embedding = EmbeddingSettings() self.agentic = AgenticSettings() self.billing = BillingSettings() + self.support = SupportSettings() self.transcription.ensure_valid() diff --git a/echo/server/dembrane/tasks.py b/echo/server/dembrane/tasks.py index 5f6251a34..bd2f3be34 100644 --- a/echo/server/dembrane/tasks.py +++ b/echo/server/dembrane/tasks.py @@ -2022,6 +2022,170 @@ def task_expire_staff_support_memberships() -> None: task_logger.exception("failed to expire staff support membership %s", row.get("id")) +def _support_forward_environment() -> str: + """Name the environment this deployment is, for the support payload. + + Same exact-host derivation as analytics._resolve_posthog_token — the + admin dashboard URL is the one per-env value every deployment already + has, so no new env var (ISSUE-034 design). Unknown hosts (previews, + local with a configured webhook) report the host itself — sam's + receiver forwards what it gets, so an honest odd label beats a wrong + known one. + """ + from urllib.parse import urlparse + + raw = (get_settings().urls.admin_base_url or "").lower().strip() + host = urlparse(raw if "://" in raw else f"https://{raw}").hostname or "" + if host == "dashboard.dembrane.com": + return "production" + if host == "dashboard.echo-next.dembrane.com": + return "echo-next" + return host or "development" + + +def build_support_request_forward_payload( + row: dict, org_id: Optional[str], environment: str +) -> dict: + """The webhook payload for one support_request row. + + Contract (mirrored in Dembrane/sam `src/recipes/product-support/ + recipe.md` — keep both ends in sync): every field optional except + `id`, `environment`, `message`; absent fields are omitted, not sent + as null/empty. No transcript content, ever. + """ + payload = { + "id": str(row["id"]), + "environment": environment, + # message is required on sam's side; a placeholder keeps a + # degenerate row deliverable instead of wedging the outbox. + "message": row.get("message") or "(empty message)", + } + for key in ( + "page_context", + "created_at", + "chat_id", + "project_id", + "workspace_id", + "app_user_id", + "directus_user_id", + ): + value = row.get(key) + if value: + payload[key] = str(value) + if org_id: + payload["org_id"] = str(org_id) + workspace_id, project_id = row.get("workspace_id"), row.get("project_id") + if workspace_id and project_id: + admin_base_url = (get_settings().urls.admin_base_url or "").rstrip("/") + if admin_base_url: + payload["origin_link"] = ( + f"{admin_base_url}/en-US/w/{workspace_id}/projects/{project_id}" + ) + return payload + + +@dramatiq.actor(queue_name="network", priority=40) +def task_forward_support_requests() -> None: + """Outbox forwarder for assistant support requests (ISSUE-034). + + The agentic chat's reachOutToDembraneSupport tool writes support_request + rows and tells the host "logged for the team". This catch-up makes that + true: rows with status=new and forwarded_at NULL are POSTed to sam's + webhook (sam posts them into #gen-engineering and triages in-thread), + and forwarded_at is stamped only on 2xx — at-least-once, with sam + deduping by id, so redelivery after a crash or non-2xx is safe. + + No-op when SUPPORT_WEBHOOK_URL / ECHO_SUPPORT_WEBHOOK_TOKEN are unset + (the local default). Receiver semantics: 2xx delivered-or-duplicate → + stamp; 4xx payload bug → log loudly, leave unstamped, keep going (the + row re-forwards once the bug is fixed); 5xx/network → receiver is down, + stop the batch and let the next cron run retry. + """ + import requests + + task_logger = getLogger("dembrane.tasks.task_forward_support_requests") + support = get_settings().support + webhook_url, webhook_token = support.forward_webhook_url, support.forward_webhook_token + if not webhook_url or not webhook_token: + return + + with directus_client_context() as client: + rows = client.get_items( + "support_request", + { + "query": { + "filter": { + "status": {"_eq": "new"}, + "forwarded_at": {"_null": True}, + }, + "fields": [ + "id", + "message", + "page_context", + "created_at", + "chat_id", + "project_id", + "workspace_id", + "app_user_id", + "directus_user_id", + ], + "sort": ["created_at"], + "limit": 50, + } + }, + ) + + if not isinstance(rows, list) or not rows: + return + + environment = _support_forward_environment() + task_logger.info("forwarding %d support request(s) to sam", len(rows)) + for row in rows: + # One workspace→org hop; support_request has no org_id column. + org_id = None + ws_id = row.get("workspace_id") + if ws_id: + with directus_client_context() as client: + ws = client.get_item("workspace", str(ws_id)) + org_id = ws.get("org_id") if ws else None + + payload = build_support_request_forward_payload(row, org_id, environment) + try: + response = requests.post( + webhook_url, + json=payload, + headers={"X-Echo-Support-Token": webhook_token}, + timeout=(10, 30), + ) + except requests.RequestException as e: + task_logger.warning( + "support forward: POST failed (%s); stopping batch, next run retries", e + ) + break + + if 200 <= response.status_code < 300: + with directus_client_context() as client: + client.update_item( + "support_request", + str(row["id"]), + {"forwarded_at": get_utc_timestamp().isoformat()}, + ) + elif 400 <= response.status_code < 500: + task_logger.error( + "support forward: %s rejected with %s (%s) — payload/config bug, " + "row stays unstamped until it's fixed", + row.get("id"), + response.status_code, + response.text[:200], + ) + else: + task_logger.warning( + "support forward: receiver returned %s; stopping batch, next run retries", + response.status_code, + ) + break + + @dramatiq.actor(queue_name="network", priority=30) def task_send_downgrade_email( audience_app_user_ids: list[str], diff --git a/echo/server/tests/api/test_agentic_api.py b/echo/server/tests/api/test_agentic_api.py index 1e862fd10..2c5a8cbfa 100644 --- a/echo/server/tests/api/test_agentic_api.py +++ b/echo/server/tests/api/test_agentic_api.py @@ -10,6 +10,7 @@ from fastapi import FastAPI, HTTPException import dembrane.api.agentic as agentic_api +from dembrane.api import feature_flags as feature_flags_module from dembrane.api.v2.bff import _access as bff_access from tests.agentic.fakes import InMemoryDirectus from dembrane.api.agentic import AgenticRouter @@ -224,6 +225,15 @@ async def _fake_resolve_project_access(project_id: str, auth: Any) -> Any: monkeypatch.setattr(bff_access, "resolve_project_access", _fake_resolve_project_access) + # Canvas routes gate on the per-project beta toggle; tests opt in by + # default and re-patch to False to exercise the 404 path. + async def _fake_project_canvas_enabled(project_id: str) -> bool: # noqa: ARG001 + return True + + monkeypatch.setattr( + feature_flags_module, "project_canvas_enabled", _fake_project_canvas_enabled + ) + # Hermetic seams: these hit Directus over the network in production. from dembrane import free_tier as free_tier_module from dembrane.api.v2 import middleware as middleware_module @@ -1172,6 +1182,26 @@ async def get_items(self, collection: str, params: dict[str, Any]) -> list[dict[ assert response.json() == {"canvases": []} +@pytest.mark.asyncio +async def test_agentic_canvas_routes_404_when_project_not_opted_into_beta(monkeypatch) -> None: + run_service = AgenticRunService(directus_client=InMemoryDirectus()) + + async with _build_api_client( + monkeypatch=monkeypatch, + session=_make_session(user_id="user-1"), + run_service=run_service, + owner_by_project_id={"project-1": "user-1"}, + ) as client: + async def _disabled(project_id: str) -> bool: # noqa: ARG001 + return False + + monkeypatch.setattr(feature_flags_module, "project_canvas_enabled", _disabled) + + response = await client.get("/api/agentic/projects/project-1/canvases") + + assert response.status_code == 404 + + @pytest.mark.asyncio async def test_agentic_canvas_lifecycle_delegates_to_shared_service(monkeypatch) -> None: run_service = AgenticRunService(directus_client=InMemoryDirectus()) diff --git a/echo/server/tests/api/test_bff_canvases.py b/echo/server/tests/api/test_bff_canvases.py index 25a7d4696..ba620015e 100644 --- a/echo/server/tests/api/test_bff_canvases.py +++ b/echo/server/tests/api/test_bff_canvases.py @@ -25,14 +25,18 @@ async def _override() -> DirectusSession: class _Access: - def __init__(self) -> None: + def __init__(self, canvas_enabled: bool = True) -> None: self.required: list[str] = [] + # Mirrors ResourceAccess.project; the canvas gate reads the beta toggle. + self.project: dict[str, Any] = {"id": "p1", "is_canvas_enabled": canvas_enabled} def require(self, policy: str) -> None: self.required.append(policy) class _DeniedAccess: + project: dict[str, Any] = {"id": "p1", "is_canvas_enabled": True} + def require(self, policy: str) -> None: # noqa: ARG002 raise HTTPException(status_code=403, detail="Not allowed") @@ -217,6 +221,28 @@ async def _list(project_id: str) -> list[dict[str, Any]]: assert access.required == ["project:read"] +@pytest.mark.asyncio +async def test_canvas_routes_404_when_project_not_opted_into_beta(monkeypatch) -> None: + access = _Access(canvas_enabled=False) + + async def _project(project_id: str, auth) -> _Access: # noqa: ARG001 + return access + + async def _report(report_id: str, auth) -> tuple[_Access, dict]: # noqa: ARG001 + return access, {"id": report_id, "kind": "canvas", "project_id": "p1"} + + monkeypatch.setattr(canvases_bff, "resolve_project_access", _project) + monkeypatch.setattr(canvases_bff, "resolve_report_access", _report) + + list_res = await _get("/api/v2/bff/canvases?project_id=p1") + get_res = await _get("/api/v2/bff/canvases/r1") + + assert list_res.status_code == 404 + assert get_res.status_code == 404 + # The gate fires before any policy check, hiding existence entirely. + assert access.required == [] + + @pytest.mark.asyncio async def test_create_requires_project_update_and_valid_expiry(monkeypatch) -> None: access = _Access() diff --git a/echo/server/tests/test_canvas_ticks.py b/echo/server/tests/test_canvas_ticks.py index 28c056524..c998a1cc7 100644 --- a/echo/server/tests/test_canvas_ticks.py +++ b/echo/server/tests/test_canvas_ticks.py @@ -23,7 +23,9 @@ def __init__(self) -> None: "acting_directus_user_id": "du1", "failure_count": 0, } - } + }, + # Ticks only run for projects opted into the canvas beta. + "project": {"p1": {"id": "p1", "is_canvas_enabled": True}}, } self.created: dict[str, list[dict[str, Any]]] = {} self.updated: list[tuple[str, str, dict[str, Any]]] = [] @@ -114,6 +116,21 @@ async def _enqueue(loop: dict[str, Any]) -> None: # noqa: ARG001 assert "canvas_generation" not in fake.created +@pytest.mark.asyncio +async def test_tick_no_ops_when_project_not_opted_into_canvas_beta(monkeypatch) -> None: + fake = _FakeDirectus() + fake.items["project"]["p1"]["is_canvas_enabled"] = False + + monkeypatch.setattr(ticks, "async_directus", fake) + + result = await ticks.run_tick("loop1", "scheduled") + + assert result["status"] == "disabled" + assert fake.created["agent_loop_run"][0]["status"] == "no_op" + assert fake.created["agent_loop_run"][0]["detail"] == "Canvas is disabled for this project" + assert "canvas_generation" not in fake.created + + @pytest.mark.asyncio async def test_tick_duplicate_window_exits_without_enqueuing(monkeypatch) -> None: fake = _FakeDirectus() diff --git a/echo/server/tests/test_support_request_forwarder.py b/echo/server/tests/test_support_request_forwarder.py new file mode 100644 index 000000000..1acdaaa05 --- /dev/null +++ b/echo/server/tests/test_support_request_forwarder.py @@ -0,0 +1,216 @@ +"""Tests for the support_request outbox forwarder (ISSUE-034). + +The delivery contract under test: rows with status=new and forwarded_at +NULL are POSTed to sam's webhook with the shared token header, and +forwarded_at is stamped ONLY on 2xx — a 4xx row stays unstamped (and the +batch continues), a 5xx/network failure stops the batch for the next cron +run. Payload shape per the contract mirrored in Dembrane/sam +src/recipes/product-support/recipe.md. +""" + +from types import SimpleNamespace +from unittest.mock import MagicMock, patch + +import requests + +from dembrane.tasks import ( + _support_forward_environment, + task_forward_support_requests, + build_support_request_forward_payload, +) + + +def _settings( + url="https://proxy.example/echo-support", + token="tok-123", + admin="https://dashboard.echo-next.dembrane.com", +): + return SimpleNamespace( + support=SimpleNamespace( + forward_webhook_url=url, + forward_webhook_token=token, + forwarding_enabled=bool(url and token), + ), + urls=SimpleNamespace(admin_base_url=admin), + ) + + +def _ctx(client): + ctx = MagicMock() + ctx.__enter__ = MagicMock(return_value=client) + ctx.__exit__ = MagicMock(return_value=False) + return ctx + + +def _row(rid="sr-1", **overrides): + row = { + "id": rid, + "message": "recording is stuck", + "page_context": "project overview", + "created_at": "2026-07-24T09:00:00Z", + "chat_id": "ch-1", + "project_id": "p-1", + "workspace_id": "w-1", + "app_user_id": "au-1", + "directus_user_id": "du-1", + } + row.update(overrides) + return row + + +def _client(rows, workspace_org="org-1"): + client = MagicMock() + client.get_items.return_value = rows + client.get_item.return_value = {"org_id": workspace_org} + return client + + +def _resp(status_code, text="ok"): + return SimpleNamespace(status_code=status_code, text=text) + + +# ─── Payload contract ───────────────────────────────────────────────────────── + + +def test_payload_full_row(): + with patch("dembrane.tasks.get_settings", return_value=_settings()): + payload = build_support_request_forward_payload(_row(), "org-1", "echo-next") + assert payload["id"] == "sr-1" + assert payload["environment"] == "echo-next" + assert payload["message"] == "recording is stuck" + assert payload["org_id"] == "org-1" + assert payload["origin_link"] == ( + "https://dashboard.echo-next.dembrane.com/en-US/w/w-1/projects/p-1" + ) + assert payload["workspace_id"] == "w-1" and payload["directus_user_id"] == "du-1" + + +def test_payload_omits_absent_fields(): + row = {"id": "sr-2", "message": "help"} + with patch("dembrane.tasks.get_settings", return_value=_settings()): + payload = build_support_request_forward_payload(row, None, "production") + assert "org_id" not in payload + assert "origin_link" not in payload # no workspace/project to link to + assert "page_context" not in payload + assert set(payload) == {"id", "environment", "message"} + + +def test_payload_empty_message_gets_placeholder(): + # message is required on sam's side; a degenerate row must not wedge + # the outbox as permanently-rejected. + with patch("dembrane.tasks.get_settings", return_value=_settings()): + payload = build_support_request_forward_payload( + {"id": "sr-3", "message": ""}, None, "echo-next" + ) + assert payload["message"] == "(empty message)" + + +def test_environment_derivation_by_admin_host(): + cases = [ + ("https://dashboard.dembrane.com", "production"), + ("https://dashboard.echo-next.dembrane.com", "echo-next"), + ("http://localhost:3000", "localhost"), + ("", "development"), + ] + for admin, expected in cases: + with patch("dembrane.tasks.get_settings", return_value=_settings(admin=admin)): + assert _support_forward_environment() == expected + + +# ─── Forwarder behaviour ────────────────────────────────────────────────────── + + +def test_noop_when_not_configured(): + with ( + patch("dembrane.tasks.get_settings", return_value=_settings(url=None, token=None)), + patch("dembrane.tasks.directus_client_context") as ctx, + ): + task_forward_support_requests() + ctx.assert_not_called() + + +def test_forwards_and_stamps_on_2xx(): + client = _client([_row()]) + with ( + patch("dembrane.tasks.get_settings", return_value=_settings()), + patch("dembrane.tasks.directus_client_context", return_value=_ctx(client)), + patch("requests.post", return_value=_resp(200)) as post, + ): + task_forward_support_requests() + + assert post.call_count == 1 + args, kwargs = post.call_args + assert args[0] == "https://proxy.example/echo-support" + assert kwargs["headers"]["X-Echo-Support-Token"] == "tok-123" + assert kwargs["json"]["id"] == "sr-1" + assert kwargs["json"]["environment"] == "echo-next" + assert kwargs["json"]["org_id"] == "org-1" + + client.update_item.assert_called_once() + collection, rid, patch_body = client.update_item.call_args[0] + assert (collection, rid) == ("support_request", "sr-1") + assert patch_body["forwarded_at"] # stamped + + +def test_4xx_leaves_unstamped_and_continues(): + client = _client([_row("sr-a"), _row("sr-b")]) + with ( + patch("dembrane.tasks.get_settings", return_value=_settings()), + patch("dembrane.tasks.directus_client_context", return_value=_ctx(client)), + patch("requests.post", side_effect=[_resp(400, "bad"), _resp(200)]) as post, + ): + task_forward_support_requests() + + assert post.call_count == 2 # the 400 didn't stop the batch + client.update_item.assert_called_once() # only sr-b stamped + assert client.update_item.call_args[0][1] == "sr-b" + + +def test_5xx_stops_batch_without_stamping(): + client = _client([_row("sr-a"), _row("sr-b")]) + with ( + patch("dembrane.tasks.get_settings", return_value=_settings()), + patch("dembrane.tasks.directus_client_context", return_value=_ctx(client)), + patch("requests.post", return_value=_resp(503, "retry")) as post, + ): + task_forward_support_requests() + + assert post.call_count == 1 # receiver down → stop, next cron retries + client.update_item.assert_not_called() + + +def test_network_error_stops_batch_without_stamping(): + client = _client([_row()]) + with ( + patch("dembrane.tasks.get_settings", return_value=_settings()), + patch("dembrane.tasks.directus_client_context", return_value=_ctx(client)), + patch("requests.post", side_effect=requests.ConnectionError("down")), + ): + task_forward_support_requests() + + client.update_item.assert_not_called() + + +def test_no_rows_is_quiet(): + client = _client([]) + with ( + patch("dembrane.tasks.get_settings", return_value=_settings()), + patch("dembrane.tasks.directus_client_context", return_value=_ctx(client)), + patch("requests.post") as post, + ): + task_forward_support_requests() + post.assert_not_called() + client.update_item.assert_not_called() + + +def test_missing_workspace_forwards_without_org(): + client = _client([_row(workspace_id=None)]) + with ( + patch("dembrane.tasks.get_settings", return_value=_settings()), + patch("dembrane.tasks.directus_client_context", return_value=_ctx(client)), + patch("requests.post", return_value=_resp(200)) as post, + ): + task_forward_support_requests() + client.get_item.assert_not_called() # no workspace hop attempted + assert "org_id" not in post.call_args[1]["json"] + client.update_item.assert_called_once()