From ba9db198dbb212f1b298afecd7c5f311b5cd8ce1 Mon Sep 17 00:00:00 2001 From: Jorim Theuns Date: Fri, 11 Sep 2026 16:17:29 +0200 Subject: [PATCH 1/2] feat(portal): assume the microphone works, and build the pages for a phone The onboarding deck loses its microphone check. Nearly every phone's microphone is fine, and the check cost every participant a permission prompt, a test, and a tap before they had said a word. The deck now runs privacy, then (if the host asks for one) a name and tags, then recording. The permission prompt moves to the first tap on Record. If nothing arrives once recording starts, the meter turns red and opens the microphone test itself, so the one participant in fifty who needs it still gets it, and the other forty-nine never see it. The mic_ok / mic_skipped / mic_blocked funnel stages stay in the monitor's vocabulary but the portal no longer emits them. The thank you page settles its hierarchy: "Show QR Code" and "Record another conversation" are tertiary text links; "dembrane at your event?" is a secondary outline button in the footer, full width on a phone and a fixed width on anything wider. The page fills the viewport so the footer sits at the bottom even when the content is short. The header keeps to the same column as the content beneath it. On a wide screen the logo and the actions used to sit at the window's edges, a foot away from the text they belong to; now everything shares one 42rem column, and the page reads as the phone layout it is. Co-Authored-By: Claude Fable 5.1 --- .../components/layout/ParticipantHeader.tsx | 122 +++++----- .../participant/DembraneEventCta.tsx | 10 +- .../ParticipantOnboardingCards.tsx | 222 +++--------------- echo/frontend/src/locales/cs-CZ.po | 47 ++-- echo/frontend/src/locales/cs-CZ.ts | 2 +- echo/frontend/src/locales/de-DE.po | 47 ++-- echo/frontend/src/locales/de-DE.ts | 2 +- echo/frontend/src/locales/en-US.po | 47 ++-- echo/frontend/src/locales/en-US.ts | 2 +- echo/frontend/src/locales/es-ES.po | 47 ++-- echo/frontend/src/locales/es-ES.ts | 2 +- echo/frontend/src/locales/fr-FR.po | 47 ++-- echo/frontend/src/locales/fr-FR.ts | 2 +- echo/frontend/src/locales/it-IT.po | 47 ++-- echo/frontend/src/locales/it-IT.ts | 2 +- echo/frontend/src/locales/nl-NL.po | 47 ++-- echo/frontend/src/locales/nl-NL.ts | 2 +- echo/frontend/src/locales/uk-UA.po | 47 ++-- echo/frontend/src/locales/uk-UA.ts | 2 +- .../ParticipantPostConversation.tsx | 6 +- 20 files changed, 299 insertions(+), 453 deletions(-) diff --git a/echo/frontend/src/components/layout/ParticipantHeader.tsx b/echo/frontend/src/components/layout/ParticipantHeader.tsx index c24b71f9..0112751b 100644 --- a/echo/frontend/src/components/layout/ParticipantHeader.tsx +++ b/echo/frontend/src/components/layout/ParticipantHeader.tsx @@ -67,66 +67,70 @@ export const ParticipantHeader = () => { onClose={closeShare} project={projectQuery.data} /> - - - {showBackButton ? ( - - ) : showCancelButton ? ( - - ) : ( - + {/* The shadow runs edge to edge; the contents keep to the same column + as the page below, so on a wide screen the logo and the actions + line up with the text rather than the window. */} + + + + {showBackButton ? ( + + ) : showCancelButton ? ( + + ) : ( + + )} + + {!hideHeaderActions && ( + + + + + + + + )} - - {!hideHeaderActions && ( - - - - - - - - - )} - + + ); }; diff --git a/echo/frontend/src/components/participant/DembraneEventCta.tsx b/echo/frontend/src/components/participant/DembraneEventCta.tsx index bd303a2b..907c745c 100644 --- a/echo/frontend/src/components/participant/DembraneEventCta.tsx +++ b/echo/frontend/src/components/participant/DembraneEventCta.tsx @@ -39,7 +39,7 @@ export const DembraneEventCta = ({ projectId }: { projectId: string }) => { of the viewport until the page runs out and it settles in place. */} - )} {currentCard.icon && (
- {currentCard?.type === "microphone" ? ( - <> - {currentSlideIndex > 0 && ( - - )} - - - ) : ( - <> - {currentSlideIndex > 0 && ( - - )} - {!isLastSlide && ( - + {currentSlideIndex > 0 && ( + + )} + {!isLastSlide && ( + )}
diff --git a/echo/frontend/src/locales/cs-CZ.po b/echo/frontend/src/locales/cs-CZ.po index a28f5518..57a35edc 100644 --- a/echo/frontend/src/locales/cs-CZ.po +++ b/echo/frontend/src/locales/cs-CZ.po @@ -53,6 +53,16 @@ msgstr "Preparing your dashboard" msgid "Welcome back" msgstr "Welcome back" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:542 +#~ msgid "participant.button.back.microphone" +#~ msgstr "Back" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:446 +#~ msgid "participant.mic.check.button.skip" +#~ msgstr "Skip" + #: src/components/popcorn/PopcornStatus.tsx:45 msgid " · {heldBack} held back" msgstr "" @@ -2088,13 +2098,8 @@ msgid "Back" msgstr "Back" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:542 -msgid "participant.button.back.microphone" -msgstr "Back" - -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:567 -#: src/components/layout/ParticipantHeader.tsx:87 +#: src/components/participant/ParticipantOnboardingCards.tsx:419 +#: src/components/layout/ParticipantHeader.tsx:90 msgid "participant.button.back" msgstr "Back" @@ -2381,7 +2386,7 @@ msgid "participant.concrete.action.button.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:97 +#: src/components/layout/ParticipantHeader.tsx:100 msgid "participant.concrete.instructions.button.cancel" msgstr "Cancel" @@ -3038,14 +3043,13 @@ msgid "Continue" msgstr "Continue" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:554 -#: src/components/participant/MicrophoneTest.tsx:414 -msgid "participant.button.continue" +#: src/components/participant/ParticipantInitiateForm.tsx:336 +msgid "participant.ready.to.begin.button.text" msgstr "Continue" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:336 -msgid "participant.ready.to.begin.button.text" +#: src/components/participant/MicrophoneTest.tsx:414 +msgid "participant.button.continue" msgstr "Continue" #: src/routes/organisation/OrganisationRoute.tsx:1629 @@ -7275,7 +7279,7 @@ msgid "Next" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:584 +#: src/components/participant/ParticipantOnboardingCards.tsx:436 msgid "participant.button.next" msgstr "Next" @@ -9276,7 +9280,7 @@ msgid "Reads every 2 minutes. Refresh reads now." msgstr "" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:418 +#: src/components/participant/ParticipantOnboardingCards.tsx:313 msgid "participant.ready.to.begin" msgstr "Ready to Begin?" @@ -10766,8 +10770,8 @@ msgstr "" #: src/features/sidebar/views/org/OrgSettingsView.tsx:31 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 -#: src/components/layout/ParticipantHeader.tsx:121 -#: src/components/layout/ParticipantHeader.tsx:122 +#: src/components/layout/ParticipantHeader.tsx:124 +#: src/components/layout/ParticipantHeader.tsx:125 msgid "Settings" msgstr "Settings" @@ -10810,8 +10814,8 @@ msgstr "" msgid "Share link" msgstr "" -#: src/components/layout/ParticipantHeader.tsx:111 -#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:114 +#: src/components/layout/ParticipantHeader.tsx:115 msgid "Share portal" msgstr "Sdílet portál" @@ -11026,11 +11030,6 @@ msgstr "Skip" msgid "participant.button.verify_prompt.skip" msgstr "Skip" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:446 -msgid "participant.mic.check.button.skip" -msgstr "Skip" - #. js-lingui-explicit-id #: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" diff --git a/echo/frontend/src/locales/cs-CZ.ts b/echo/frontend/src/locales/cs-CZ.ts index 2fc247a9..e0cad456 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\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message from dembrane\"],\"other\":[\"Messages from dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" isn't in this workspace yet.\"],\"RZUJFH\":[[\"0\"],\" isn't in this workspace yet. Ask a workspace admin to invite this collaborator.\"],\"iOmAhc\":[[\"0\"],\" isn't in this workspace yet. Send them a workspace invite and share this project when they join.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" people aren't in this workspace yet.\"],\"E6f0Mh\":[[\"0\"],\" people aren't in this workspace yet. Ask a workspace admin to invite them.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" views\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" people were already invited. The project is shared once they join.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" already has a pending invite for another project. Share this project once they join.\"],\"zB7Coe\":[[\"email\"],\" was added to the pending list but the invite email could not be sent. Resend it from Members.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invites sent. The project is shared once they join.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Spolehlivější nahrávání audia\"],\"XPY0OE\":[\"Nový asistent a živý monitor\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"sy1BvY\":[\"Portál účastníků pro nahrávání konverzací.\"],\"zm7GU7\":[\"Pro zpracování na základě souhlasu je vyžadován odkaz na zásady ochrany osobních údajů. Musí začínat http:// nebo https:// a mít nejvýše 255 znaků.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Plynulejší prostor pro rozhovory\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Výchozí hodnota účtu\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Přidej rozhovory do kontextu chatu, používej lepší šablony otázek a aktualizované možnosti přepisu. Opraveny jsou podpůrné citace a překlady.\"],\"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.\"],\"5phU36\":[\"Přidat obrázky\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"uqLJli\":[\"Add people by email. Anyone not in the workspace yet gets an invite and access to this project when they join.\"],\"1G8+6T\":[\"Add people by email. Anyone not in this workspace yet gets a workspace invite, and the project is shared with them when they join.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"QKlADn\":[\"Added \",[\"0\"],\" people\"],\"z9TWoF\":[\"Added \",[\"granted\"],\" people\"],\"q+wngh\":[\"Added and shared\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Všechna vydání na GitHubu\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Všechny roky\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Already invited. The project is shared once they join.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"Dzr23X\":[\"Announcements\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Anything else?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Ask a workspace admin to invite this collaborator.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Zpracování a nahrávání audia jsou robustnější a seznam rozhovorů ukazuje jasnější součty.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio Tip\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"WI8FHU\":[\"Automaticky vyber relevantní rozhovory pro chat a sleduj odkazy na zdroje. Odebírej upozornění na reporty a používej lepší nahrávání audia i textu.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"9aZHfH\":[\"Back to settings\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"g7YpV4\":[\"Před touto historií verzí\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Lepší zpětná vazba a snazší kontakt\"],\"5DnJa6\":[\"Lepší nahrávky, více způsobů odpovědi\"],\"9GKCNF\":[\"Lepší nahrávání, přepisy a hledání\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Book a call with us\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Opravy chyb\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Zrušit přepsání\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat s jednotlivými konverzacemi.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Chaty získávají automatické názvy a kontext obsahuje data a délky rozhovorů. Přejdi na poslední zprávu a používej jasnější postup nahrávání audia.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Chaty nastavené na češtinu nyní odpovídají česky místo anglicky.\"],\"gLvHXQ\":[\"Před nahráváním zkontroluj a vyber mikrofon, sleduj kvalitu audia a používej lepší vícejazyčný přepis. Vyber shrnutí, nové nápady nebo vlastní režimy odpovědí.\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"WQUm5N\":[\"Zkontrolujte text a obrázky a zkuste to znovu\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Vyber viditelné, pozvánkové nebo soukromé prostory. Členové se načítají rychleji, po nahrání se vrátíš k rozhovorům a automatická shrnutí i slučování fungují spolehlivěji.\"],\"okLwd9\":[\"Choose from your other projects\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Jasnější zdroje v chatu\"],\"xOlaOX\":[\"Jasnější přístup pro správce\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"EhtOYz\":[\"Zpracování na základě souhlasu je aktivní bez odkazu na zásady ochrany osobních údajů. Přidejte ho tam, kde je právní základ nastaven: účastníci si musí mít možnost zásady přečíst.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Odkazy na rozhovory jsou nyní pohromadě pod jedním nadpisem Zdroje. Formulář zpětné vazby může předvyplnit tvůj e-mail.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Stránky rozhovorů i načítání dat jsou jednodušší. Automatický výběr nechává více místa pro odpovědi a oznámení vytvářejí méně opakovaných upozornění.\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Shrnutí už nezůstávají zaseknutá v dotčených případech zpracování. Rozhovory pozastavené limity bezplatného plánu se zpracují po přechodu na vyšší plán.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Conversation tags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Could not save feedback\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Hlášení se nepodařilo odeslat. Zkuste to znovu\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Couldn't revoke invite\"],\"LPY4VY\":[\"Couldn't send invite\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Create Library\"],\"bUyyzw\":[\"Vytvoř více zpráv pro každý projekt a urči jejich podobu vlastními pokyny. Plánované zprávy (beta) zahrnují všechny konverzace nahrané před zvoleným časem. Vytvářej, ukládej a připínej vlastní šablony chatu (beta). Tato verze také přidává připínání projektů, nastavení profilu a podporu ukrajinštiny v chatu.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"České rozhovory, české odpovědi\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"ItMGda\":[\"Date range\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Smazané projekty a konverzace pozastavené kvůli limitům tarifu už nespouštějí opakované pokusy o vytvoření shrnutí.\"],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane na vaší akci?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"pozvánka na akci dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot byl náš dřívější projekt. Děkujeme organizátorům, účastníkům a přispěvatelům, kteří jej pomáhali utvářet.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Popište problém\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Určuje, na jakém právním základu GDPR se zpracovávají osobní údaje tohoto projektu.\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Hotovo, ozvěte se mi\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"N8MP2s\":[\"Stahuj audio a organizuj rozhovory\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Stahuj audio, přidávej tagy z dashboardu a používej shrnutí přizpůsobená rozhovoru. Opraveny jsou úpravy i náhled portálu.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Upravuj reporty přímo\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Upravuj reporty, snadněji kontroluj mikrofony v portálu a sleduj lepší stavy načítání a chybové zprávy.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"B7flm8\":[\"Prozkoumej opakující se témata v Library\"],\"EebTQD\":[\"Prozkoumej příběhy a pohledy pomocí šablony chatu Narratives v angličtině a nizozemštině.\"],\"HNnM2X\":[\"Prozkoumat archiv dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Failed to reschedule. Please choose a time further in the future and try again.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"2roTVj\":[\"Feedback sent\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filtrovat vydání podle roku\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"SdZBYB\":[\"Najdi správné rozhovory pro svou otázku\"],\"oRQsgh\":[\"Najdi prostory a pokračuj v rozhovorech\"],\"p2j2po\":[\"Najdi své místo v chatu\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Získej odpověď během rozhovoru\"],\"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.\"],\"Pl6LQ+\":[\"Ozvěte se nám\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Good response\"],\"76gPWk\":[\"Rozumím\"],\"hjZBYK\":[\"Máte dvě minuty? Pět nepovinných otázek nám pomůže s přípravou.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"skrýt pozvánku na akci dembrane\"],\"V3NvRL\":[\"Skrytí pozvánky na akci dembrane je součástí placeného plánu.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Za pozornost\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Host\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Host's feedback\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"I understand\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Pokud jste narazili na data viditelná pro nepovolané osoby, na někoho s přístupem, který by mít neměl, nebo na možnou bezpečnostní zranitelnost, použijte prosím náš <0>formulář pro hlášení bezpečnostních problémů. Dostane se k jinému týmu rychlejší cestou. V naléhavých případech napište na <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Obrázky musí být menší než \",[\"MAX_FILE_MB\"],\" MB\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Vylepšení\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Incorrect or made up\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Představujeme Popcorn\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invite sent to \",[\"email\"],\". The project is shared once they join.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invite sent. The project is shared once they join.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invite to workspace and share\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"1BIvTp\":[\"Italština pro hlavní postupy\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Připojit se k této relaci portálu\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Udržuj nahrávací zařízení vzhůru\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Pracuj dál během nahrávání audia, prohledávej tagy a sleduj postup přepisu. Lepší přehrávání a chytřejší výběr rozhovorů usnadňují analýzu.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Latest\"],\"lchnsl\":[\"Nejnovější vydání\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"J8VWes\":[\"Nechte nám svůj e-mail, ať se vám můžeme ozvat.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Právní základ\"],\"vRXsmZ\":[\"Legal Basis\"],\"CopiEV\":[\"Právní základ uložen\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Odkaz na zásady ochrany osobních údajů zobrazené účastníkům\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Loading\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Připojení MCP umožní tvému agentovi hledat projekty a konverzace, číst přepisy a procházet dokumentaci, s kontrolou organizace a výslovným souhlasem.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"azjxk1\":[\"Missed the question\"],\"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\"],\"f8jrkd\":[\"more\"],\"2FYpfJ\":[\"Další\"],\"JcD7qf\":[\"More actions\"],\"rAPyBz\":[\"Spolehlivější anonymizace a nahrávání\"],\"MmhZK+\":[\"Spolehlivější shrnutí rozhovorů\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Užitečnější kontext chatu\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"New conversations added since this report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"/yIxDf\":[\"Nové funkce\"],\"QnAEjj\":[\"Nové funkce, vylepšení a opravy v dembrane.\"],\"CSz4y/\":[\"Nový vzhled, nové funkce\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"oaDwXD\":[\"Není nastavena výchozí hodnota (platí správa klientem)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"No feedback yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"No one on the organisation yet.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Zatím tu nejsou žádné poznámky k vydání.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"z7dMhl\":[\"Přikládat lze jen obrázky\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Právní základ mohou měnit pouze administrátoři workspace.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Open replay\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"xam4uE\":[\"Nepovinná otázka \",[\"0\"],\" z \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Správci organizace mohou vstoupit do soukromých prostorů ze stránky členů. Ovládání přístupu vysvětluje, kdy se musíš nejprve připojit k prostoru.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organizace, pracovní prostory a projekty\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Uspořádej práci do prostorů, pozvi externí spolupracovníky a pozorovatele a spravuj přístup z nového panelu. Přesouvej rozhovory mezi projekty a projekty mezi prostory.\"],\"+g4lbW\":[\"Uspořádej si práci do organizací, pracovních prostorů a projektů a měj jasnější kontrolu nad tím, kdo má přístup.\"],\"ucgZ0o\":[\"Organizace\"],\"/IX/7x\":[\"Other\"],\"x0FjQV\":[\"Naše první hlavní vydání\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Přepsáno pro tento projekt\"],\"AR/qbs\":[\"Přepsat pro tento projekt\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Účastníci mohou požádat o odpověď během nahrávání a číst ji při příchodu. Hostitelé zapnou odpovědi a upraví pokyny v nastavení portálu.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Účastníci mohou ověřovat výsledky a zpřesňovat odpovědi. Nové režimy a návrhy podporují analýzu a dvoufaktorové ověření doplňuje přihlášení.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Pick a date\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Vybrat čas hned\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording)\"],\"Lu1j4b\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"jjdudv\":[\"Poor response\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Připravuj sezení s upravitelným průvodcem, sbírej e-maily a anonymizuj přepisy. Aktualizace přináší také vlastní loga a automatické názvy rozhovorů.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"DHhJ7s\":[\"Previous\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL zásad ochrany osobních údajů\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Vyhledávání projektů a konverzací s vlastními QR kódy.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Question\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Rating\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"Z5Tlsx\":[\"Ozvěte se mi\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Zařízení zůstávají spolehlivěji aktivní. Opraveny jsou úvodní kroky, zpřesňování odpovědí a výběr rozhovorů v chatu Specific Details.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"/l7qFE\":[\"Recording started\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"References\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"/PACVa\":[\"Poznámky k vydání\"],\"Gm7/K+\":[\"Poznámky k vydání | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Video k vydání: \",[\"0\"]],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Odebrat přepsání\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Replay\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Nahlásit problém\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Hlas problémy pomocí obrázků nebo hlasu, hodnoť odpovědi chatu a požádej o vhodný plán. Nastav výchozí právní základ pro svůj pracovní prostor.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"6g+4DA\":[\"Hlášení odesláno. Děkujeme\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"kX8Fjz\":[\"Response feedback\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Return home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Rows per page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Spusť přepis existujícího rozhovoru znovu. Aktualizována je také nizozemská dokumentace.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Saving...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Naskenujte a zahajte novou relaci portálu\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Plánované zprávy a vlastní šablony\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Vyber pro chat všechny nebo filtrované rozhovory a filtruj kliknutím na tag. Nahrávání záznamů je spolehlivější a zprávy při vysoké poptávce jasnější.\"],\"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\"],\"qtJxoV\":[\"Vybrat více konverzací\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"Dh99yE\":[\"Select up to 2 focus areas for your report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Odeslat hlášení\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Urči, jak účastníci ověřují výsledky\"],\"Z8lGw6\":[\"Sdílet\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Sdílet portál\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Share with \",[\"0\"],\" people\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Share with whole workspace\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Při sdílení soukromého projektu s nečlenem se nyní místo chyby nabídne pozvánka. Přístup získá po připojení k pracovnímu prostoru.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Zobrazit QR kód\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Zobrazit pozvánku\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"kZ0hFY\":[\"Showing \",[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" of \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"dE/7ox\":[\"Plynulejší nahrávání a rychlejší otázky\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanish\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Začni nahrávat bez duplicitních rozhovorů, sleduj skutečný čas začátku a používej uložené šablony z Ask. Aktualizace v postranním panelu ukazují počet nepřečtených.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Jasně\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"5dzzI6\":[\"Vypnutí je součástí placeného plánu.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"Systémová výchozí hodnota\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Textové příspěvky a navazující formuláře.\"],\"CPN34F\":[\"Thank you for participating!\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Děkujeme, do jednoho dne se vám ozveme.\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Tohle nevypadá jako e-mailová adresa.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"To je vše, díky\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"První hlavní vydání zavádí projekt pod Business Source License 1.1.\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"Library nabízí jasnější pohledy na opakující se témata. Šablony chatu jsou po ruce, rozhovory mají přímé odkazy a nahrávání se snadněji sleduje.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"Děkovná stránka končí kartou, která účastníky zve k uspořádání vlastní akce s dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Je nastaveno zpracování na základě souhlasu bez odkazu na zásady ochrany osobních údajů. Přidejte ho, aby nastavení zůstalo platné: účastníci si musí mít možnost zásady přečíst.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Tento portál nyní nepřijímá nové relace.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Tento projekt se pak bude řídit zděděným nastavením: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Thumbs down\"],\"Nuw8ty\":[\"Thumbs up\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Time\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"qgwLj6\":[\"Too long or unclear\"],\"lcsUaI\":[\"Příliš mnoho hlášení. Počkejte několik minut a zkuste to znovu\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Přepiš rozhovor znovu\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"5jqJzi\":[\"Anonymizace přepisů a nastavení opakovaného přepisu fungují jednotněji. Délka nahrávky zůstává správná po pozastavení a obnovení.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Proměň konverzace v živé snímky. Spusť živou relaci nebo analýzu na vyžádání, prezentuj skupině a dohledávej zdroje poznatků.\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Proměň rozhovory svého projektu v živé slidy pro sál.\\n\\n- Sleduj vznikající témata během rozhovorů.\\n- Prezentuj poznatky a ověř si rozhovory, ze kterých vycházejí.\\n- Spusť živé sezení nebo analýzu podle potřeby.\\n\\nDále: nové šablony chatu, připojení agentů a vylepšení pro mobily.\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Maximálně \",[\"MAX_FILES\"],\" obrázků\"],\"lLehih\":[\"Až \",[\"MAX_MESSAGE_CHARS\"],\" znaků\"],\"ia8YsC\":[\"Připravujeme\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Použít zděděnou hodnotu\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Používej italštinu pro chat, reporty, přepisy a úvodní karty účastníků. Toto vydání neobsahovalo úplný překlad rozhraní.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Ověřuj výsledky a zpřesňuj odpovědi\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Zobrazit poznámky k vydání\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Chcete to na své akci?\"],\"q7LnaV\":[\"Chcete uspořádat akci s dembrane?\"],\"La34Yq\":[\"Chcete použít dembrane na své příští akci?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Podívej se na video s úvodem do organizací, pracovních prostorů a projektů.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"mW8QSA\":[\"We couldn't find the page you were looking for. It may have moved.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Do jednoho dne se vám ozveme. Chcete si čas raději vybrat sami?\"],\"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.\"],\"FXjsEJ\":[\"Rádi si od vás poslechneme. Ať už máte nápad na něco nového, všimli jste si nepovedeného překladu, nebo se chcete jen podělit o to, jak se vám daří. Našli jste chybu? Použijte <0>Nahlásit problém a pošlete ji se snímky obrazovky.\"],\"XolQc4\":[\"Rádi si od vás poslechneme. Ať už máte nápad na něco nového, všimli jste si nepovedeného překladu, nebo se chcete jen podělit o to, jak se vám daří. Našli jste chybu? Použijte Nahlásit problém v postranním panelu a pošlete ji se snímky obrazovky.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Co se stalo? Vložte sem snímek obrazovky a přiložte ho\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"What went wrong?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Pracuj s novým konverzačním asistentem, sleduj sezení v živém monitoru a používej aktualizované zpracování přepisů.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Workspace / Project\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Výchozí hodnota workspace\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Nastavení workspace\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Napiš vlastní pokyny k ověření, vytvářej výsledky v jazyce projektu a připomeň ověření před koncem. Nastav možnosti pro každý právní základ.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Wrong language or tone\"],\"MNTYHt\":[\"Wrong sources\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"You can change this later in workspace settings after you add billing details.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"vy@priklad.cz\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Váš e-mail\"],\"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.\"],\"vaTeZ3\":[\"Your feedback and this response go to the dembrane team.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"VSneAo\":[\"Přikládáme vaše jméno, e-mail a aktuální stránku, abychom se vám mohli ozvat.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"DrJCbp\":[\"Vaše odpověď byla zaznamenána. Tuto kartu můžete zavřít. Můžete také nahrát další rozhovor nebo sdílet QR kód, aby mohli přispět i ostatní.\"],\"7i36j4\":[\"Vaše odpověď byla zaznamenána. Tuto kartu můžete zavřít. Můžete také sdílet QR kód, aby mohli přispět i ostatní, nebo nahrát další rozhovor.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message from dembrane\"],\"other\":[\"Messages from dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" isn't in this workspace yet.\"],\"RZUJFH\":[[\"0\"],\" isn't in this workspace yet. Ask a workspace admin to invite this collaborator.\"],\"iOmAhc\":[[\"0\"],\" isn't in this workspace yet. Send them a workspace invite and share this project when they join.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" people aren't in this workspace yet.\"],\"E6f0Mh\":[[\"0\"],\" people aren't in this workspace yet. Ask a workspace admin to invite them.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" views\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" people were already invited. The project is shared once they join.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" already has a pending invite for another project. Share this project once they join.\"],\"zB7Coe\":[[\"email\"],\" was added to the pending list but the invite email could not be sent. Resend it from Members.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invites sent. The project is shared once they join.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Spolehlivější nahrávání audia\"],\"XPY0OE\":[\"Nový asistent a živý monitor\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"sy1BvY\":[\"Portál účastníků pro nahrávání konverzací.\"],\"zm7GU7\":[\"Pro zpracování na základě souhlasu je vyžadován odkaz na zásady ochrany osobních údajů. Musí začínat http:// nebo https:// a mít nejvýše 255 znaků.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Plynulejší prostor pro rozhovory\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Výchozí hodnota účtu\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Přidej rozhovory do kontextu chatu, používej lepší šablony otázek a aktualizované možnosti přepisu. Opraveny jsou podpůrné citace a překlady.\"],\"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.\"],\"5phU36\":[\"Přidat obrázky\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"uqLJli\":[\"Add people by email. Anyone not in the workspace yet gets an invite and access to this project when they join.\"],\"1G8+6T\":[\"Add people by email. Anyone not in this workspace yet gets a workspace invite, and the project is shared with them when they join.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"QKlADn\":[\"Added \",[\"0\"],\" people\"],\"z9TWoF\":[\"Added \",[\"granted\"],\" people\"],\"q+wngh\":[\"Added and shared\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Všechna vydání na GitHubu\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Všechny roky\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Already invited. The project is shared once they join.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"Dzr23X\":[\"Announcements\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Anything else?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Ask a workspace admin to invite this collaborator.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Zpracování a nahrávání audia jsou robustnější a seznam rozhovorů ukazuje jasnější součty.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio Tip\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"WI8FHU\":[\"Automaticky vyber relevantní rozhovory pro chat a sleduj odkazy na zdroje. Odebírej upozornění na reporty a používej lepší nahrávání audia i textu.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"9aZHfH\":[\"Back to settings\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"g7YpV4\":[\"Před touto historií verzí\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Lepší zpětná vazba a snazší kontakt\"],\"5DnJa6\":[\"Lepší nahrávky, více způsobů odpovědi\"],\"9GKCNF\":[\"Lepší nahrávání, přepisy a hledání\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Book a call with us\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Opravy chyb\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Zrušit přepsání\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat s jednotlivými konverzacemi.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Chaty získávají automatické názvy a kontext obsahuje data a délky rozhovorů. Přejdi na poslední zprávu a používej jasnější postup nahrávání audia.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Chaty nastavené na češtinu nyní odpovídají česky místo anglicky.\"],\"gLvHXQ\":[\"Před nahráváním zkontroluj a vyber mikrofon, sleduj kvalitu audia a používej lepší vícejazyčný přepis. Vyber shrnutí, nové nápady nebo vlastní režimy odpovědí.\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"WQUm5N\":[\"Zkontrolujte text a obrázky a zkuste to znovu\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Vyber viditelné, pozvánkové nebo soukromé prostory. Členové se načítají rychleji, po nahrání se vrátíš k rozhovorům a automatická shrnutí i slučování fungují spolehlivěji.\"],\"okLwd9\":[\"Choose from your other projects\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Jasnější zdroje v chatu\"],\"xOlaOX\":[\"Jasnější přístup pro správce\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"EhtOYz\":[\"Zpracování na základě souhlasu je aktivní bez odkazu na zásady ochrany osobních údajů. Přidejte ho tam, kde je právní základ nastaven: účastníci si musí mít možnost zásady přečíst.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Odkazy na rozhovory jsou nyní pohromadě pod jedním nadpisem Zdroje. Formulář zpětné vazby může předvyplnit tvůj e-mail.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Stránky rozhovorů i načítání dat jsou jednodušší. Automatický výběr nechává více místa pro odpovědi a oznámení vytvářejí méně opakovaných upozornění.\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Shrnutí už nezůstávají zaseknutá v dotčených případech zpracování. Rozhovory pozastavené limity bezplatného plánu se zpracují po přechodu na vyšší plán.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Conversation tags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Could not save feedback\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Hlášení se nepodařilo odeslat. Zkuste to znovu\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Couldn't revoke invite\"],\"LPY4VY\":[\"Couldn't send invite\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Create Library\"],\"bUyyzw\":[\"Vytvoř více zpráv pro každý projekt a urči jejich podobu vlastními pokyny. Plánované zprávy (beta) zahrnují všechny konverzace nahrané před zvoleným časem. Vytvářej, ukládej a připínej vlastní šablony chatu (beta). Tato verze také přidává připínání projektů, nastavení profilu a podporu ukrajinštiny v chatu.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"České rozhovory, české odpovědi\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"ItMGda\":[\"Date range\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Smazané projekty a konverzace pozastavené kvůli limitům tarifu už nespouštějí opakované pokusy o vytvoření shrnutí.\"],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane na vaší akci?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"pozvánka na akci dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot byl náš dřívější projekt. Děkujeme organizátorům, účastníkům a přispěvatelům, kteří jej pomáhali utvářet.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Popište problém\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Určuje, na jakém právním základu GDPR se zpracovávají osobní údaje tohoto projektu.\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Hotovo, ozvěte se mi\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"N8MP2s\":[\"Stahuj audio a organizuj rozhovory\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Stahuj audio, přidávej tagy z dashboardu a používej shrnutí přizpůsobená rozhovoru. Opraveny jsou úpravy i náhled portálu.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Upravuj reporty přímo\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Upravuj reporty, snadněji kontroluj mikrofony v portálu a sleduj lepší stavy načítání a chybové zprávy.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"B7flm8\":[\"Prozkoumej opakující se témata v Library\"],\"EebTQD\":[\"Prozkoumej příběhy a pohledy pomocí šablony chatu Narratives v angličtině a nizozemštině.\"],\"HNnM2X\":[\"Prozkoumat archiv dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Failed to reschedule. Please choose a time further in the future and try again.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"2roTVj\":[\"Feedback sent\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filtrovat vydání podle roku\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"SdZBYB\":[\"Najdi správné rozhovory pro svou otázku\"],\"oRQsgh\":[\"Najdi prostory a pokračuj v rozhovorech\"],\"p2j2po\":[\"Najdi své místo v chatu\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Získej odpověď během rozhovoru\"],\"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.\"],\"Pl6LQ+\":[\"Ozvěte se nám\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Good response\"],\"76gPWk\":[\"Rozumím\"],\"hjZBYK\":[\"Máte dvě minuty? Pět nepovinných otázek nám pomůže s přípravou.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"skrýt pozvánku na akci dembrane\"],\"V3NvRL\":[\"Skrytí pozvánky na akci dembrane je součástí placeného plánu.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Za pozornost\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Host\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Host's feedback\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"I understand\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Pokud jste narazili na data viditelná pro nepovolané osoby, na někoho s přístupem, který by mít neměl, nebo na možnou bezpečnostní zranitelnost, použijte prosím náš <0>formulář pro hlášení bezpečnostních problémů. Dostane se k jinému týmu rychlejší cestou. V naléhavých případech napište na <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Obrázky musí být menší než \",[\"MAX_FILE_MB\"],\" MB\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Vylepšení\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Incorrect or made up\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Představujeme Popcorn\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invite sent to \",[\"email\"],\". The project is shared once they join.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invite sent. The project is shared once they join.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invite to workspace and share\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"1BIvTp\":[\"Italština pro hlavní postupy\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Připojit se k této relaci portálu\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Udržuj nahrávací zařízení vzhůru\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Pracuj dál během nahrávání audia, prohledávej tagy a sleduj postup přepisu. Lepší přehrávání a chytřejší výběr rozhovorů usnadňují analýzu.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Latest\"],\"lchnsl\":[\"Nejnovější vydání\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"J8VWes\":[\"Nechte nám svůj e-mail, ať se vám můžeme ozvat.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Právní základ\"],\"vRXsmZ\":[\"Legal Basis\"],\"CopiEV\":[\"Právní základ uložen\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Odkaz na zásady ochrany osobních údajů zobrazené účastníkům\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Loading\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Připojení MCP umožní tvému agentovi hledat projekty a konverzace, číst přepisy a procházet dokumentaci, s kontrolou organizace a výslovným souhlasem.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"azjxk1\":[\"Missed the question\"],\"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\"],\"f8jrkd\":[\"more\"],\"2FYpfJ\":[\"Další\"],\"JcD7qf\":[\"More actions\"],\"rAPyBz\":[\"Spolehlivější anonymizace a nahrávání\"],\"MmhZK+\":[\"Spolehlivější shrnutí rozhovorů\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Užitečnější kontext chatu\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"New conversations added since this report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"/yIxDf\":[\"Nové funkce\"],\"QnAEjj\":[\"Nové funkce, vylepšení a opravy v dembrane.\"],\"CSz4y/\":[\"Nový vzhled, nové funkce\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"oaDwXD\":[\"Není nastavena výchozí hodnota (platí správa klientem)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"No feedback yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"No one on the organisation yet.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Zatím tu nejsou žádné poznámky k vydání.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"z7dMhl\":[\"Přikládat lze jen obrázky\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Právní základ mohou měnit pouze administrátoři workspace.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Open replay\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"xam4uE\":[\"Nepovinná otázka \",[\"0\"],\" z \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Správci organizace mohou vstoupit do soukromých prostorů ze stránky členů. Ovládání přístupu vysvětluje, kdy se musíš nejprve připojit k prostoru.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organizace, pracovní prostory a projekty\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Uspořádej práci do prostorů, pozvi externí spolupracovníky a pozorovatele a spravuj přístup z nového panelu. Přesouvej rozhovory mezi projekty a projekty mezi prostory.\"],\"+g4lbW\":[\"Uspořádej si práci do organizací, pracovních prostorů a projektů a měj jasnější kontrolu nad tím, kdo má přístup.\"],\"ucgZ0o\":[\"Organizace\"],\"/IX/7x\":[\"Other\"],\"x0FjQV\":[\"Naše první hlavní vydání\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Přepsáno pro tento projekt\"],\"AR/qbs\":[\"Přepsat pro tento projekt\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Účastníci mohou požádat o odpověď během nahrávání a číst ji při příchodu. Hostitelé zapnou odpovědi a upraví pokyny v nastavení portálu.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Účastníci mohou ověřovat výsledky a zpřesňovat odpovědi. Nové režimy a návrhy podporují analýzu a dvoufaktorové ověření doplňuje přihlášení.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Pick a date\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Vybrat čas hned\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording)\"],\"Lu1j4b\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"jjdudv\":[\"Poor response\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Připravuj sezení s upravitelným průvodcem, sbírej e-maily a anonymizuj přepisy. Aktualizace přináší také vlastní loga a automatické názvy rozhovorů.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"DHhJ7s\":[\"Previous\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL zásad ochrany osobních údajů\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Vyhledávání projektů a konverzací s vlastními QR kódy.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Question\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Rating\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"Z5Tlsx\":[\"Ozvěte se mi\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Zařízení zůstávají spolehlivěji aktivní. Opraveny jsou úvodní kroky, zpřesňování odpovědí a výběr rozhovorů v chatu Specific Details.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"/l7qFE\":[\"Recording started\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"References\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"/PACVa\":[\"Poznámky k vydání\"],\"Gm7/K+\":[\"Poznámky k vydání | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Video k vydání: \",[\"0\"]],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Odebrat přepsání\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Replay\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Nahlásit problém\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Hlas problémy pomocí obrázků nebo hlasu, hodnoť odpovědi chatu a požádej o vhodný plán. Nastav výchozí právní základ pro svůj pracovní prostor.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"6g+4DA\":[\"Hlášení odesláno. Děkujeme\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"kX8Fjz\":[\"Response feedback\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Return home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Rows per page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Spusť přepis existujícího rozhovoru znovu. Aktualizována je také nizozemská dokumentace.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Saving...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Naskenujte a zahajte novou relaci portálu\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Plánované zprávy a vlastní šablony\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Vyber pro chat všechny nebo filtrované rozhovory a filtruj kliknutím na tag. Nahrávání záznamů je spolehlivější a zprávy při vysoké poptávce jasnější.\"],\"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\"],\"qtJxoV\":[\"Vybrat více konverzací\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"Dh99yE\":[\"Select up to 2 focus areas for your report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Odeslat hlášení\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Urči, jak účastníci ověřují výsledky\"],\"Z8lGw6\":[\"Sdílet\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Sdílet portál\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Share with \",[\"0\"],\" people\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Share with whole workspace\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Při sdílení soukromého projektu s nečlenem se nyní místo chyby nabídne pozvánka. Přístup získá po připojení k pracovnímu prostoru.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Zobrazit QR kód\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Zobrazit pozvánku\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"kZ0hFY\":[\"Showing \",[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" of \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"dE/7ox\":[\"Plynulejší nahrávání a rychlejší otázky\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanish\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Začni nahrávat bez duplicitních rozhovorů, sleduj skutečný čas začátku a používej uložené šablony z Ask. Aktualizace v postranním panelu ukazují počet nepřečtených.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Jasně\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"5dzzI6\":[\"Vypnutí je součástí placeného plánu.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"Systémová výchozí hodnota\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Textové příspěvky a navazující formuláře.\"],\"CPN34F\":[\"Thank you for participating!\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Děkujeme, do jednoho dne se vám ozveme.\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Tohle nevypadá jako e-mailová adresa.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"To je vše, díky\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"První hlavní vydání zavádí projekt pod Business Source License 1.1.\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"Library nabízí jasnější pohledy na opakující se témata. Šablony chatu jsou po ruce, rozhovory mají přímé odkazy a nahrávání se snadněji sleduje.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"Děkovná stránka končí kartou, která účastníky zve k uspořádání vlastní akce s dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Je nastaveno zpracování na základě souhlasu bez odkazu na zásady ochrany osobních údajů. Přidejte ho, aby nastavení zůstalo platné: účastníci si musí mít možnost zásady přečíst.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Tento portál nyní nepřijímá nové relace.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Tento projekt se pak bude řídit zděděným nastavením: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Thumbs down\"],\"Nuw8ty\":[\"Thumbs up\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Time\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"qgwLj6\":[\"Too long or unclear\"],\"lcsUaI\":[\"Příliš mnoho hlášení. Počkejte několik minut a zkuste to znovu\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Přepiš rozhovor znovu\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"5jqJzi\":[\"Anonymizace přepisů a nastavení opakovaného přepisu fungují jednotněji. Délka nahrávky zůstává správná po pozastavení a obnovení.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Proměň konverzace v živé snímky. Spusť živou relaci nebo analýzu na vyžádání, prezentuj skupině a dohledávej zdroje poznatků.\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Proměň rozhovory svého projektu v živé slidy pro sál.\\n\\n- Sleduj vznikající témata během rozhovorů.\\n- Prezentuj poznatky a ověř si rozhovory, ze kterých vycházejí.\\n- Spusť živé sezení nebo analýzu podle potřeby.\\n\\nDále: nové šablony chatu, připojení agentů a vylepšení pro mobily.\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Maximálně \",[\"MAX_FILES\"],\" obrázků\"],\"lLehih\":[\"Až \",[\"MAX_MESSAGE_CHARS\"],\" znaků\"],\"ia8YsC\":[\"Připravujeme\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Použít zděděnou hodnotu\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Používej italštinu pro chat, reporty, přepisy a úvodní karty účastníků. Toto vydání neobsahovalo úplný překlad rozhraní.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Ověřuj výsledky a zpřesňuj odpovědi\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Zobrazit poznámky k vydání\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Chcete to na své akci?\"],\"q7LnaV\":[\"Chcete uspořádat akci s dembrane?\"],\"La34Yq\":[\"Chcete použít dembrane na své příští akci?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Podívej se na video s úvodem do organizací, pracovních prostorů a projektů.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"mW8QSA\":[\"We couldn't find the page you were looking for. It may have moved.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Do jednoho dne se vám ozveme. Chcete si čas raději vybrat sami?\"],\"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.\"],\"FXjsEJ\":[\"Rádi si od vás poslechneme. Ať už máte nápad na něco nového, všimli jste si nepovedeného překladu, nebo se chcete jen podělit o to, jak se vám daří. Našli jste chybu? Použijte <0>Nahlásit problém a pošlete ji se snímky obrazovky.\"],\"XolQc4\":[\"Rádi si od vás poslechneme. Ať už máte nápad na něco nového, všimli jste si nepovedeného překladu, nebo se chcete jen podělit o to, jak se vám daří. Našli jste chybu? Použijte Nahlásit problém v postranním panelu a pošlete ji se snímky obrazovky.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Co se stalo? Vložte sem snímek obrazovky a přiložte ho\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"What went wrong?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Pracuj s novým konverzačním asistentem, sleduj sezení v živém monitoru a používej aktualizované zpracování přepisů.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Workspace / Project\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Výchozí hodnota workspace\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Nastavení workspace\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Napiš vlastní pokyny k ověření, vytvářej výsledky v jazyce projektu a připomeň ověření před koncem. Nastav možnosti pro každý právní základ.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Wrong language or tone\"],\"MNTYHt\":[\"Wrong sources\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"You can change this later in workspace settings after you add billing details.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"vy@priklad.cz\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Váš e-mail\"],\"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.\"],\"vaTeZ3\":[\"Your feedback and this response go to the dembrane team.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"VSneAo\":[\"Přikládáme vaše jméno, e-mail a aktuální stránku, abychom se vám mohli ozvat.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"DrJCbp\":[\"Vaše odpověď byla zaznamenána. Tuto kartu můžete zavřít. Můžete také nahrát další rozhovor nebo sdílet QR kód, aby mohli přispět i ostatní.\"],\"7i36j4\":[\"Vaše odpověď byla zaznamenána. Tuto kartu můžete zavřít. Můžete také sdílet QR kód, aby mohli přispět i ostatní, nebo nahrát další rozhovor.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/de-DE.po b/echo/frontend/src/locales/de-DE.po index 160b953d..5dea1697 100644 --- a/echo/frontend/src/locales/de-DE.po +++ b/echo/frontend/src/locales/de-DE.po @@ -54,6 +54,16 @@ msgstr "Dein Dashboard wird vorbereitet" msgid "Welcome back" msgstr "Willkommen zurück" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:542 +#~ msgid "participant.button.back.microphone" +#~ msgstr "Zurück" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:446 +#~ msgid "participant.mic.check.button.skip" +#~ msgstr "Überspringen" + #: src/components/popcorn/PopcornStatus.tsx:45 msgid " · {heldBack} held back" msgstr "" @@ -2089,13 +2099,8 @@ msgid "Back" msgstr "Zurück" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:542 -msgid "participant.button.back.microphone" -msgstr "Zurück" - -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:567 -#: src/components/layout/ParticipantHeader.tsx:87 +#: src/components/participant/ParticipantOnboardingCards.tsx:419 +#: src/components/layout/ParticipantHeader.tsx:90 msgid "participant.button.back" msgstr "Zurück" @@ -2382,7 +2387,7 @@ msgid "participant.concrete.action.button.cancel" msgstr "Abbrechen" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:97 +#: src/components/layout/ParticipantHeader.tsx:100 msgid "participant.concrete.instructions.button.cancel" msgstr "Abbrechen" @@ -3039,14 +3044,13 @@ msgid "Continue" msgstr "Weiter" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:554 -#: src/components/participant/MicrophoneTest.tsx:414 -msgid "participant.button.continue" +#: src/components/participant/ParticipantInitiateForm.tsx:336 +msgid "participant.ready.to.begin.button.text" msgstr "Weiter" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:336 -msgid "participant.ready.to.begin.button.text" +#: src/components/participant/MicrophoneTest.tsx:414 +msgid "participant.button.continue" msgstr "Weiter" #: src/routes/organisation/OrganisationRoute.tsx:1629 @@ -7276,7 +7280,7 @@ msgid "Next" msgstr "Weiter" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:584 +#: src/components/participant/ParticipantOnboardingCards.tsx:436 msgid "participant.button.next" msgstr "Weiter" @@ -9277,7 +9281,7 @@ msgid "Reads every 2 minutes. Refresh reads now." msgstr "" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:418 +#: src/components/participant/ParticipantOnboardingCards.tsx:313 msgid "participant.ready.to.begin" msgstr "Bereit zum Beginn" @@ -10767,8 +10771,8 @@ msgstr "" #: src/features/sidebar/views/org/OrgSettingsView.tsx:31 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 -#: src/components/layout/ParticipantHeader.tsx:121 -#: src/components/layout/ParticipantHeader.tsx:122 +#: src/components/layout/ParticipantHeader.tsx:124 +#: src/components/layout/ParticipantHeader.tsx:125 msgid "Settings" msgstr "Einstellungen" @@ -10811,8 +10815,8 @@ msgstr "" msgid "Share link" msgstr "" -#: src/components/layout/ParticipantHeader.tsx:111 -#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:114 +#: src/components/layout/ParticipantHeader.tsx:115 msgid "Share portal" msgstr "Portal teilen" @@ -11027,11 +11031,6 @@ msgstr "Überspringen" msgid "participant.button.verify_prompt.skip" msgstr "Überspringen" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:446 -msgid "participant.mic.check.button.skip" -msgstr "Überspringen" - #. js-lingui-explicit-id #: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" diff --git a/echo/frontend/src/locales/de-DE.ts b/echo/frontend/src/locales/de-DE.ts index 67472a1d..d7ac9a07 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\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Nachricht von dembrane\"],\"other\":[\"Nachrichten von dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" ist noch nicht in diesem Workspace.\"],\"RZUJFH\":[[\"0\"],\" ist noch nicht in diesem Workspace. Bitte einen Workspace-Admin, diese Person einzuladen.\"],\"iOmAhc\":[[\"0\"],\" ist noch nicht in diesem Workspace. Sende eine Einladung und teile dieses Projekt beim Beitritt.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" Personen sind noch nicht in diesem Workspace.\"],\"E6f0Mh\":[[\"0\"],\" Personen sind noch nicht in diesem Workspace. Bitte einen Workspace-Admin, sie einzuladen.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" Aufrufe\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" Personen waren bereits eingeladen. Das Projekt wird beim Beitritt geteilt.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Gespräche • Bearbeitet \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" hat bereits eine offene Einladung für ein anderes Projekt. Teile dieses Projekt nach dem Beitritt.\"],\"zB7Coe\":[[\"email\"],\" steht auf der Liste offener Einladungen, aber die E-Mail konnte nicht gesendet werden. Erneut senden unter Mitglieder.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" Einladungen gesendet. Das Projekt wird beim Beitritt geteilt.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspekte\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 Aufruf\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. Wenn ein Gesprächs- oder Berichtereignis eintritt, senden wir die Daten automatisch an deine URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Zuverlässigere Audio-Uploads\"],\"XPY0OE\":[\"Ein neuer Assistent und ein Live-Monitor\"],\"z9VxrW\":[\"Ein neuer Bericht wird automatisch zum geplanten Zeitpunkt erstellt und veröffentlicht.\"],\"sy1BvY\":[\"Ein Teilnehmerportal zum Aufzeichnen von Gesprächen.\"],\"zm7GU7\":[\"Für die Verarbeitung auf Basis von Einwilligung ist ein Link zur Datenschutzerklärung erforderlich. Er muss mit http:// oder https:// beginnen und darf höchstens 255 Zeichen lang sein.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Ein flüssigerer Gesprächsbereich\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Zugriff\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Konto-Standard\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Hinzufügen\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Füge Gespräche zum Chatkontext hinzu, nutze verbesserte Fragevorlagen und überarbeitete Transkriptionsoptionen. Belegzitate und Übersetzungen erhalten Fehlerbehebungen.\"],\"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.\"],\"5phU36\":[\"Bilder hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"uqLJli\":[\"Personen per E-Mail hinzufügen. Wer noch nicht im Workspace ist, erhält eine Einladung und beim Beitritt Zugriff auf dieses Projekt.\"],\"1G8+6T\":[\"Personen per E-Mail hinzufügen. Wer noch nicht in diesem Workspace ist, erhält eine Einladung, und das Projekt wird beim Beitritt geteilt.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Thema hinzufügen\"],\"AHaRrL\":[\"Übersetzungen hinzufügen\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"QKlADn\":[[\"0\"],\" Personen hinzugefügt\"],\"z9TWoF\":[[\"granted\"],\" Personen hinzugefügt\"],\"q+wngh\":[\"Hinzugefügt und geteilt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"Du6bPw\":[\"Adresse\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Werkzeuggetriebene Ausführung\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Alle\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Alle Versionen auf GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Alle Vorlagen\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Alle Jahre\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Bereits eingeladen. Das Projekt wird beim Beitritt geteilt.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"Ein unerwarteter Fehler ist aufgetreten. Neu laden oder zur Startseite zurückkehren hilft meistens.\"],\"F4cOH1\":[\"Analyse Sprache\"],\"ZlwDi6\":[\"Analytik\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"Dzr23X\":[\"Ankündigungen\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Transkript anonymisieren\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"YdiKaK\":[\"Anonymisierte Unterhaltung\"],\"iPiP6k\":[\"Anonymisierte Unterhaltung\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Noch etwas?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Erscheinungsbild\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Anwenden\"],\"4TwsNi\":[\"Vorlage anwenden\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"uqhbrg\":[\"Sind Sie sicher, dass Sie diesen Chat löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"yrk3z3\":[\"Sind Sie sicher, dass Sie dieses benutzerdefinierte Thema löschen möchten? Dies kann nicht rückgängig gemacht werden.\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"ELQ+fw\":[\"Bist du sicher, dass du diesen Bericht löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"e3BGhi\":[\"Möchten Sie diese Vorlage wirklich löschen? Dies kann nicht rückgängig gemacht werden.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"ZmeZPn\":[\"Sind Sie sicher, dass Sie Ihr Profilbild entfernen möchten?\"],\"wQ5jM6\":[\"Sind Sie sicher, dass Sie Ihr benutzerdefiniertes Logo entfernen möchten? Stattdessen wird das Standard-dembrane-Logo verwendet.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Fragen\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Bitte einen Workspace-Admin, diese Person einzuladen.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio-Download nicht verfügbar für anonymisierte Unterhaltungen\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio-Wiedergabe nicht verfügbar für anonymisierte Unterhaltungen\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Audioverarbeitung und Uploads sind robuster, und die Gesprächsliste zeigt klarere Gesamtzahlen.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio-Tipp\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"WI8FHU\":[\"Wähle automatisch relevante Gespräche für den Chat und folge Quellenverweisen. Abonniere Berichtsbenachrichtigungen und nutze verbesserte Audio- und Textuploads.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar entfernt\"],\"jSKImf\":[\"Avatar aktualisiert\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"9aZHfH\":[\"Back to settings\"],\"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\"],\"g7YpV4\":[\"Vor dieser Versionsgeschichte\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Besseres Feedback, einfachere Rückmeldung\"],\"5DnJa6\":[\"Bessere Aufnahmen, mehr Antwortmöglichkeiten\"],\"9GKCNF\":[\"Bessere Uploads, Transkripte und Suche\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"KKLfx1\":[\"Buchen Sie einen Termin mit uns\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Fehlerbehebungen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie absolut sicher?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Überschreibung abbrechen\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Planung abbrechen\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"SL9Qao\":[\"Kann nicht innerhalb von 10 Minuten vor dem geplanten Zeitpunkt umgeplant werden\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Karte\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Sprache ändern\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Passwort ändern\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat-Name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat mit einzelnen Gesprächen.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"Dv3TPp\":[\"Chats erhalten automatische Titel, und Gesprächskontext enthält Datum und Dauer. Springe zur neuesten Nachricht und nutze einen klareren Audio-Upload-Ablauf.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Auf Tschechisch eingestellte Chats antworten jetzt auf Tschechisch statt auf Englisch.\"],\"gLvHXQ\":[\"Prüfe und wähle dein Mikrofon vor der Aufnahme, sieh Audioqualitätsanzeigen und nutze verbesserte mehrsprachige Transkription. Wähle Zusammenfassung, Brainstorming oder eigene Antwortmodi.\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"WQUm5N\":[\"Prüfen Sie Text und Bilder und versuchen Sie es erneut\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Wähle auffindbare, einladungsbasierte oder private Workspaces. Organisationsmitglieder laden schneller, Uploads führen zurück zu deinen Gesprächen und automatische Zusammenfassungen und Zusammenführungen werden zuverlässiger.\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Klarere Quellen im Chat\"],\"xOlaOX\":[\"Klarerer Workspace-Zugriff für Admins\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-verwaltet\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Sammlung\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"CfO59/\":[\"Vergleichen & Gegenüberstellen Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"7VpPHA\":[\"Bestätigen\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Neues Passwort bestätigen\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"vz1fGK\":[\"Umplanung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"participant.modal.s3check.title\":[\"Verbindungsproblem\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Verbindung ungesund\"],\"l9fkrm\":[\"Einwilligung\"],\"EhtOYz\":[\"Die Verarbeitung auf Basis von Einwilligung ist aktiv, aber es fehlt ein Link zur Datenschutzerklärung. Fügen Sie einen hinzu, wo die Rechtsgrundlage festgelegt ist: Teilnehmende müssen die Datenschutzerklärung lesen können.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Inhalt\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"JX3KT4\":[\"Kontextbezogene Vorschläge\"],\"xGVfLh\":[\"Weiter\"],\"participant.button.continue\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"YyNOE7\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Gesprächsbelege stehen jetzt zusammen unter einer Quellenüberschrift. Das Feedbackformular kann deine E-Mail-Adresse vorausfüllen.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Gesprächsseiten und Datenladen werden vereinfacht. Automatische Gesprächsauswahl lässt mehr Platz für Antworten, und Ankündigungen erzeugen weniger wiederholte Benachrichtigungen.\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Gesprächszusammenfassungen bleiben in den betroffenen Verarbeitungsschritten nicht mehr hängen. Durch Limits des kostenlosen Tarifs pausierte Gespräche werden nach einem Upgrade weiterverarbeitet.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Gesprächstags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Link kopieren\"],\"H4brGj\":[\"Link in die Zwischenablage kopieren\"],\"AjrNNs\":[\"Berichtsinhalt kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Kopieren...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Deine Auswahl konnte nicht übernommen werden. Wähle unten erneut.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Konnte nicht in die Zwischenablage kopiert werden. Bitte versuchen Sie es erneut.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Die Gesprächsliste konnte nicht geöffnet werden. Versuche es erneut.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Feedback wurde nicht gespeichert\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Die Meldung konnte nicht gesendet werden. Versuchen Sie es noch einmal\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Einladung konnte nicht zurückgezogen werden\"],\"LPY4VY\":[\"Einladung konnte nicht gesendet werden\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"oJfYM5\":[\"Einen Forschungsbrief aus den letzten Gesprächen erstellen\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Bibliothek erstellen\"],\"bUyyzw\":[\"Erstelle mehrere Berichte pro Projekt und gestalte sie mit eigenen Anweisungen. Geplante Berichte (Beta) enthalten alle Gespräche, die vor dem geplanten Zeitpunkt aufgezeichnet wurden. Erstelle, speichere und pinne eigene Chatvorlagen (Beta). Diese Version ergänzt außerdem das Anpinnen von Projekten, Profileinstellungen und Chats auf Ukrainisch.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Bericht erstellen\"],\"A5hiCy\":[\"Vorlage erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Erstellt am\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Avatar zuschneiden\"],\"udBqWc\":[\"Bild zuschneiden\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Logo zuschneiden\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"Pn2B7/\":[\"Aktuelles Passwort\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Tschechische Gespräche, tschechische Antworten\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Datum\"],\"ItMGda\":[\"Zeitraum\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"K/78Yl\":[\"Multistufige Analyse mit live Werkzeugausführung delegieren\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Chat löschen\"],\"2GCE3m\":[\"Gespräch löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"j5pYC4\":[\"Benutzerdefiniertes Thema löschen\"],\"mp235G\":[\"Projekt löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"rUWrSE\":[\"Bericht löschen\"],\"qr0gpK\":[\"Tag löschen\"],\"DFjdv0\":[\"Vorlage löschen\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Webhook löschen\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Gelöschte Projekte und durch Tariflimits pausierte Gespräche lösen keine wiederholten Zusammenfassungsversuche mehr aus.\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane bei Ihrem Event?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"dembrane Event-Einladung\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot war unser früheres Projekt. Danke an die Gastgeber, Teilnehmenden und Mitwirkenden, die es mitgestaltet haben.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Beschreiben Sie das Problem\"],\"Fs/0D5\":[\"Beschreiben Sie, was die Sprachmodell aus dem Gespräch extrahieren oder zusammenfassen soll...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Legt fest, unter welcher DSGVO-Rechtsgrundlage personenbezogene Daten für dieses Projekt verarbeitet werden.\"],\"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.\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Anzeigename\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Fertig, kontaktieren Sie mich\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"N8MP2s\":[\"Audio herunterladen und Gespräche organisieren\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Lade Gesprächsaudio herunter, ergänze Tags im Dashboard und nutze Zusammenfassungen, die sich an das Gespräch anpassen. Bearbeitung und Portalvorschau erhalten Fehlerbehebungen.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Nächste Aktionen erstellen und nach Priorität organisieren\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplizieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"z.B. \\\"Fokus auf Nachhaltigkeitsthemen\\\" oder \\\"Was denken die Teilnehmenden über die neue Richtlinie?\\\"\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"z.B. Wöchentliche Stakeholder-Zusammenfassung\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"Y/3VME\":[\"Benutzerdefiniertes Thema bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Bearbeitungsmodus\"],\"niSWGL\":[\"Optionen bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Berichte direkt bearbeiten\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Bearbeite Berichte selbst, prüfe Mikrofone im Portal leichter und erhalte bessere Ladeanzeigen und Fehlermeldungen.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"E-Mail\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji, das neben dem Thema angezeigt wird, z.B. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Leer\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"2FA aktivieren\"],\"D3AnH0\":[\"Explore aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dashboard.dembrane.feature.verify.description\":[\"Aktivieren Sie diese Funktion, damit Teilnehmer \\\"Ergebnisse\\\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Aktuelles Passwort eingeben\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"VpwcSk\":[\"Neues Passwort eingeben\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Vollbild verlassen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimentell\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"B7flm8\":[\"Wiederkehrende Themen in der Library erkunden\"],\"EebTQD\":[\"Erkunde Geschichten und Perspektiven mit der Chatvorlage Narratives, auf Englisch und Niederländisch.\"],\"HNnM2X\":[\"Das dembrane/pilot-Archiv erkunden\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"UQ6LqT\":[\"Benutzerdefiniertes Thema konnte nicht erstellt werden\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Benutzerdefiniertes Thema konnte nicht gelöscht werden\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"rv8mO7\":[\"Avatar konnte nicht entfernt werden\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"IMUHg3\":[\"Neuplanung fehlgeschlagen. Bitte wahlen Sie einen spateren Zeitpunkt und versuchen Sie es erneut.\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Benutzerdefiniertes Thema konnte nicht aktualisiert werden\"],\"BpuK7o\":[\"Fehler beim Aktualisieren der Rechtsgrundlage\"],\"Avee+B\":[\"Name konnte nicht aktualisiert werden\"],\"gnm1CH\":[\"Anheften konnte nicht aktualisiert werden\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Avatar konnte nicht hochgeladen werden\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback-Portal\"],\"2roTVj\":[\"Feedback gesendet\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Versionen nach Jahr filtern\"],\"MRk67a\":[\"Finde Widersprüche und vorschlage Folgefragen\"],\"SdZBYB\":[\"Die passenden Gespräche für deine Frage finden\"],\"oRQsgh\":[\"Workspaces finden und Gespräche voranbringen\"],\"p2j2po\":[\"Im Chat den Überblick behalten\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Fokus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Passwort vergessen?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Französisch\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"3qkggm\":[\"Vollbild\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generieren\"],\"EIdJgG\":[\"Neuen Bericht erstellen\"],\"QsUhrf\":[\"Bericht erstellen\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Bibliothek generieren\"],\"5SWGxv\":[\"Jetzt erstellen\"],\"GWUJ9X\":[\"Stattdessen jetzt erstellen\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Während eines Gesprächs eine Antwort erhalten\"],\"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.\"],\"Pl6LQ+\":[\"Kontakt aufnehmen\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"DXr0zk\":[\"Vollbild\"],\"iWpEwy\":[\"Zur Startseite\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Gute Antwort\"],\"76gPWk\":[\"Verstanden\"],\"hjZBYK\":[\"Haben Sie zwei Minuten? Fünf optionale Fragen helfen uns bei der Vorbereitung.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Bericht anleiten\"],\"myXGZW\":[\"Angeleitet\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"eHo/Jc\":[\"Daten verbergen\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"die dembrane Event-Einladung ausblenden\"],\"V3NvRL\":[\"Das Ausblenden der dembrane Event-Einladung ist Teil eines bezahlten Plans.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Highlight\"],\"tn75xn\":[\"Bestimmtes Konzept hervorheben\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Startseite\"],\"Ai2U7L\":[\"Host\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Feedback des Hosts\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Wenn Sie etwas entdeckt haben, bei dem Daten für Unbefugte sichtbar sind, jemand Zugriff hat, den er nicht haben sollte, oder eine mögliche Sicherheitslücke, nutzen Sie bitte stattdessen unser <0>Meldeformular für Sicherheitsprobleme. Es erreicht ein anderes Team auf einem schnelleren Weg. In dringenden Fällen senden Sie eine E-Mail an <1>privacy@dembrane.com\"],\"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.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Bilder dürfen höchstens \",[\"MAX_FILE_MB\"],\"MB groß sein\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Verbesserungen\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portal-Link einschließen\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Falsch oder erfunden\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Erkenntnisse\"],\"MSVCjk\":[\"Anweisungen für die Generierung des Verifizierungsergebnisses\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Neu: Popcorn\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Einladung an \",[\"email\"],\" gesendet. Das Projekt wird beim Beitritt geteilt.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Einladung gesendet. Das Projekt wird beim Beitritt geteilt.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"In Workspace einladen und teilen\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP-Adresse\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"5dxEAB\":[\"Es sieht so aus, als hätten Sie noch keinen Bericht für dieses Projekt. Erstellen Sie einen, um eine Übersicht Ihrer Gespräche zu erhalten.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italienisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"1BIvTp\":[\"Italienisch für zentrale Arbeitsabläufe\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"An dieser Portal-Sitzung teilnehmen\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Einen Moment bitte\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Aufnahmegeräte wach halten\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Arbeite während Audio-Uploads weiter, durchsuche Tags und sieh den Transkriptionsfortschritt. Verbesserte Audiowiedergabe und intelligentere Gesprächsauswahl erleichtern die Analyse.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Sprache\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Neueste\"],\"lchnsl\":[\"Neueste Version\"],\"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\"],\"J8VWes\":[\"Hinterlassen Sie Ihre E-Mail-Adresse, damit wir Sie kontaktieren können.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Rechtsgrundlage\"],\"vRXsmZ\":[\"Rechtsgrundlage\"],\"CopiEV\":[\"Rechtsgrundlage gespeichert\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"gkv8iG\":[\"Kennzeichen\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Link zur Datenschutzerklärung, die Teilnehmenden angezeigt wird\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live Agent Ausführungsmodus\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Vorschau\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Laden\"],\"participant.verify.instructions.loading\":[\"Wird geladen\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Anmelden\"],\"LM/dWU\":[\"Anmelden | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo entfernt\"],\"MjfaMh\":[\"Logo aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Längste zuerst\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Vorlagen verwalten\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Über MCP-Verbindungen kann dein Agent Projekte finden, Gespräche durchsuchen, Transkripte lesen und Dokumentation nutzen, mit Organisationskontrollen und ausdrücklicher Zustimmung.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"azjxk1\":[\"Geht nicht auf die Frage ein\"],\"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\"],\"f8jrkd\":[\"weitere\"],\"2FYpfJ\":[\"Mehr\"],\"JcD7qf\":[\"Weitere Aktionen\"],\"rAPyBz\":[\"Zuverlässiger anonymisieren und aufnehmen\"],\"MmhZK+\":[\"Zuverlässigere Gesprächszusammenfassungen\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Nützlicherer Chatkontext\"],\"QWdKwH\":[\"Verschieben\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Muss mindestens 10 Minuten in der Zukunft liegen\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Meine Vorlagen\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name aktualisiert\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"Neu\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"u2uElg\":[\"Neue Gesprache seit diesem Bericht hinzugefugt\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"/yIxDf\":[\"Neue Funktionen\"],\"QnAEjj\":[\"Neue Funktionen, Verbesserungen und Fehlerbehebungen in dembrane.\"],\"CSz4y/\":[\"Neuer Look, neue Funktionen\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Neues Passwort\"],\"7vhWI8\":[\"Neues Passwort\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"Neuer Bericht\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Neueste zuerst\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.next\":[\"Weiter\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Noch keine Gesprache. Sie konnen jetzt einen Bericht planen und Gesprache werden aufgenommen, sobald sie hinzugefugt werden.\"],\"oaDwXD\":[\"Kein Standard festgelegt (Client-verwaltet gilt)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Noch kein Feedback.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Noch niemand in der Organisation.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Noch keine Versionshinweise.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"1iQvuD\":[\"Noch keine Berichte\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"KE6RCJ\":[\"Keine Vorlagen für {searchQuery} gefunden\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"pdWSGS\":[\"Keine Verify Themen verfügbar.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Älteste zuerst\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Sobald Sie diskutiert haben, klicken Sie auf \\\"Überarbeiten\\\", um \",[\"objectLabel\"],\" entsprechend Ihrer Diskussion anzupassen.\"],\"participant.verify.instructions.read.aloud\":[\"Sobald Sie \",[\"objectLabel\"],\" erhalten haben, lesen Sie es laut vor und teilen Sie mit, was Sie gegebenenfalls ändern möchten.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Laufend\"],\"conversation.ongoing\":[\"Laufend\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Ändern Sie diese Einstellung nur in Absprache mit den verantwortlichen Personen für die Datenschutzverantwortung in Ihrer Organisation.\"],\"z7dMhl\":[\"Es können nur Bilder angehängt werden\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Nur Workspace-Administrator*innen können die Rechtsgrundlage ändern.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Aufzeichnung öffnen\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls auf Englisch zurückgegriffen wird)\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"xam4uE\":[\"Optionale Frage \",[\"0\"],\" von \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Organisationsadmins können privaten Workspaces über die Mitgliederseite beitreten. Zugriffsoptionen erklären jetzt, wann du zuerst einem Workspace beitreten musst.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organisationen, Workspaces und Projekte\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organisiere Arbeit in Workspaces, lade externe Mitwirkende und Beobachter ein und verwalte den Zugriff über die neue Seitenleiste. Verschiebe Gespräche zwischen Projekten und Projekte zwischen Workspaces.\"],\"+g4lbW\":[\"Organisiere deine Arbeit in Organisationen, Workspaces und Projekten und steuere genauer, wer Zugriff hat.\"],\"ucgZ0o\":[\"Organisation\"],\"/IX/7x\":[\"Sonstiges\"],\"x0FjQV\":[\"Unsere erste Hauptversion\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Für dieses Projekt überschrieben\"],\"AR/qbs\":[\"Für dieses Projekt überschreiben\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Teilnehmende können während der Aufnahme eine Antwort anfordern und sie beim Erscheinen lesen. Hosts können Antworten aktivieren und den Prompt in den Portaleinstellungen anpassen.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Teilnehmende können Ergebnisse prüfen und Antworten verfeinern. Neue Chatmodi und Vorschläge unterstützen die Analyse, und Zwei-Faktor-Authentifizierung ergänzt die Anmeldung.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Passwort\"],\"zJx6Vx\":[\"Passwort geändert\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Ausstehend\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"zmwvG2\":[\"Telefon\"],\"B8mlc2\":[\"Wahlen Sie ein Datum\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Jetzt einen Termin wählen\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Anheften\"],\"u8qC4w\":[\"Projekt anheften\"],\"S+WiJ3\":[\"Vorlagen hier für schnellen Zugriff anheften.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Angeheftet ist voll (max. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Angeheftete Vorlagen\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch per Text antworten, indem Sie auf das Textsymbol klicken.\\n**Bitte lassen Sie diesen Bildschirm eingeschaltet**\\n(schwarzer Bildschirm = keine Aufnahme)\"],\"Lu1j4b\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch per Text antworten, indem Sie auf das Textsymbol klicken.\\n**Bitte lassen Sie diesen Bildschirm eingeschaltet**\\n(schwarzer Bildschirm = keine Aufnahme).\\nIhre Transkription wird anonymisiert und Ihr Host kann Ihre Aufnahme nicht anhören.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG oder WebP. Wird zu einem Kreis zugeschnitten.\"],\"jjdudv\":[\"Schlechte Antwort\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Inhalt\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Bereite Sitzungen mit einem bearbeitbaren Host-Leitfaden vor, sammle E-Mail-Adressen und anonymisiere Transkripte. Dieses Update führt auch eigene Logos und automatische Gesprächstitel ein.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"DHhJ7s\":[\"Zurück\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"S8ugMC\":[\"Bericht drucken\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL der Datenschutzerklärung\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Projekt- und Gesprächssuche mit QR-Codes im eigenen Design.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projekt erstellt\"],\"zjTrs1\":[\"Projektstandard: aktiviert. Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Projekt Meta Zusammenfassung\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Projektübersicht | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projekte\"],\"DK5DV3\":[\"Projekte | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Veröffentlichen\"],\"vsX8VJ\":[\"Veröffentlichen Sie diesen Bericht, um den Portal-Link anzuzeigen\"],\"IHzoSN\":[\"Veröffentlichen Sie diesen Bericht, um einen Freigabelink zu erhalten\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Frage\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Bewertung\"],\"wr9IYa\":[\"Neues Passwort erneut eingeben\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"Z5Tlsx\":[\"Kontaktieren Sie mich\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Vorlesen\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"VJScHU\":[\"Grund\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.s3check.reconnect\":[\"Erneut verbinden\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Aufnehmen\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Aufnahmegeräte bleiben zuverlässiger wach. Die Einführung für Teilnehmende, Antwortverfeinerung und Gesprächsauswahl im Specific-Details-Chat erhalten Fehlerbehebungen.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"/l7qFE\":[\"Aufnahme gestartet\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"Referenzen\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Neu generieren\"],\"PpFJd2\":[\"Zusammenfassung neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"HPitDS\":[\"Registrieren | dembrane\"],\"/PACVa\":[\"Versionshinweise\"],\"Gm7/K+\":[\"Versionshinweise | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Video zur Version: \",[\"0\"]],\"tF5Smn\":[\"Seite neu laden\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Benutzer daran erinnern, vor dem Abschließen zu überprüfen\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Entfernen\"],\"w61W3L\":[[\"0\"],\" entfernen\"],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Profilbild entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"O90CN2\":[\"Logo entfernen\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Überschreibung entfernen\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"6PsaMr\":[\"Chat umbenennen\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Aufzeichnung\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Antwort Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Bericht\"],\"e/MQa5\":[\"Bericht wird bereits erstellt\"],\"Q3LOVJ\":[\"Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"hh/mvZ\":[\"Berichtserstellung abgebrochen\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Bericht wird erstellt...\"],\"v7O77U\":[\"Die Berichtserstellung wurde abgebrochen. Du kannst unten einen neuen Bericht starten.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Melde Probleme mit Bildern oder Sprache, bewerte Chatantworten und frage einen passenden Tarif an. Lege eine Standardrechtsgrundlage für deinen Workspace fest.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"M9snPp\":[\"Bericht geplant\"],\"6g+4DA\":[\"Meldung gesendet. Danke\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report-Vorlagen stehen auf unserer Roadmap.\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"t9yxlZ\":[\"Berichte\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Zugriff anfordern\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"8H5nRH\":[\"Passwort zurücksetzen anfordern | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"TMLAx2\":[\"Erforderlich\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Umplanen\"],\"6eIR/n\":[\"Umplanen auf\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Zurücksetzen\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"9uplIY\":[\"Passwort zurücksetzen | dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"kX8Fjz\":[\"Feedback zur Antwort\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"+gmVxi\":[\"Hertranskription nicht verfügbar für anonymisierte Unterhaltungen\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"2fCpt5\":[\"Zur Startseite\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Starte die Transkription eines bestehenden Gesprächs erneut. Auch die niederländische Dokumentation wird aktualisiert.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Speichern\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Als Vorlage speichern\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Änderungen speichern\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"5dVjYt\":[\"Vorlage speichern\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Speichern...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Scannen, um eine neue Portal-Sitzung zu starten\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Planen\"],\"wCGy0o\":[\"Bericht planen\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Geplante Berichte und eigene Vorlagen\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Nach unten scrollen\"],\"A1taO8\":[\"Suchen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Suche und wähle die Gespräche für diesen Chat aus.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Gespräche suchen\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Tags suchen\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"Bis bald\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Wähle alle oder gefilterte Gespräche für den Chat aus und filtere per Klick auf ein Tag. Aufnahme-Uploads werden zuverlässiger, mit klareren Meldungen bei hoher Nachfrage.\"],\"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\"],\"qtJxoV\":[\"Mehrere Gespräche auswählen\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"Dh99yE\":[\"Wahlen Sie bis zu 2 Schwerpunkte fur Ihren Bericht\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer für \\\"Verifizieren\\\" verwenden können.\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Senden\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Einladung senden\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Meldung senden\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Sitzungsname\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Gestalte die Überprüfung von Ergebnissen\"],\"Z8lGw6\":[\"Teilen\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Portal teilen\"],\"OuFYHU\":[\"Bericht teilen\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Mit \",[\"0\"],\" Personen teilen\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Mit gesamtem Workspace teilen\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"nnWGzO\":[\"Teilen Sie Ihre Ideen mit unserem Team\"],\"4o0klJ\":[\"Teilen Sie Ihre Stimme, indem Sie den QR-Code scannen\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Beim Teilen eines privaten Projekts mit einem Nichtmitglied wird jetzt eine Einladung statt eines Fehlers angeboten. Der Zugriff wird beim Beitritt zum Arbeitsbereich gewährt.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"QR-Code anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Einladung anzeigen\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" von \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Ihr zuletzt fertiggestellter Bericht wird angezeigt.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Überspringen\"],\"participant.button.verify_prompt.skip\":[\"Überspringen\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack-Community\"],\"dE/7ox\":[\"Flüssigere Aufnahmen und schnellere Fragen\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Etwas blockiert Ihre Verbindung. Ihr Audio wird nicht gespeichert, solange dieses Problem nicht behoben ist.\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"mwpVVD\":[\"Beim Erstellen Ihres letzten Berichts ist etwas schiefgelaufen.\"],\"2WNFmv\":[\"Beim Erstellen Ihres Berichts ist etwas schiefgelaufen.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanisch\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Neu starten\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Starte Aufnahmen ohne doppelte Gespräche, sieh die tatsächliche Startzeit und nutze gespeicherte Fragevorlagen in Ask. Sidebar-Updates zeigen jetzt die Anzahl ungelesener Nachrichten.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategische Planung\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Erfolg\"],\"aG+cH9\":[\"Dynamische Vorschläge basierend auf Ihrem Gespräch vorschlagen.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Zusammenfassen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Gern\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"5dzzI6\":[\"Das Ausschalten ist Teil eines bezahlten Plans.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"Systemstandard\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template übernommen\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Vorlagenname\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Vorlagen\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Textbeiträge und Formulare zur Nachbereitung.\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Danke, wir melden uns innerhalb eines Tages.\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Das sieht nicht wie eine E-Mail-Adresse aus.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"Das war's, danke\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"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).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"Die erste Hauptversion stellt das Projekt unter die Business Source License 1.1.\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"Die Library bietet klarere Ansichten wiederkehrender Themen. Chatvorlagen bleiben erreichbar, Gespräche erhalten direkte Links und der Uploadstatus ist leichter zu verfolgen.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"Der Bericht kann bis zu 5 Minuten nach der gewählten Zeit starten.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"9DPC4t\":[\"Die Dankeseite endet mit einer Karte, die Teilnehmende einlädt, ein eigenes Event mit dembrane durchzuführen.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Design\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Denke nach...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Dies kann passieren, wenn ein VPN oder eine Firewall die Verbindung blockiert. Versuchen Sie, Ihr VPN zu deaktivieren, zu einem anderen Netzwerk zu wechseln (z. B. mobiler Hotspot) oder wenden Sie sich an Ihre IT-Abteilung.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Diese Informationen sind anonymisiert\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Hier ist Verarbeitung auf Basis von Einwilligung festgelegt, aber ohne Link zur Datenschutzerklärung. Fügen Sie einen hinzu, damit die Einstellung gültig bleibt: Teilnehmende müssen die Datenschutzerklärung lesen können.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"Bibliothek\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Dieses Portal nimmt derzeit keine neuen Sitzungen an.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Dieses Projekt folgt dann der übernommenen Einstellung: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"Dieser Arbeitsbereich hat seine Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Daumen runter\"],\"Nuw8ty\":[\"Daumen hoch\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Uhrzeit\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"Zb3ANR\":[\"Tipp: Sie können auch eine Vorlage aus jeder gesendeten Chat-Nachricht erstellen oder eine bestehende Vorlage duplizieren.\"],\"MHrjPM\":[\"Titel\"],\"1xkgU6\":[\"Titel automatisch generiert\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Um uns zu helfen, darauf zu reagieren, versuchen Sie anzugeben, wo es passiert ist und was Sie versucht haben zu tun. Bei Fehlern, sagen Sie uns, was schiefgelaufen ist. Bei Ideen, sagen Sie uns, welches Bedürfnis es für Sie lösen würde.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"qgwLj6\":[\"Zu lang oder unklar\"],\"lcsUaI\":[\"Zu viele Meldungen. Warten Sie ein paar Minuten und versuchen Sie es erneut\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Thema erfolgreich erstellt\"],\"Sawj4V\":[\"Thema erfolgreich gelöscht\"],\"xcp3ny\":[\"Themenbezeichnung\"],\"vQoAht\":[\"Thema erfolgreich aktualisiert\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Ein Gespräch erneut transkribieren\"],\"fp5rKh\":[\"Transcribieren...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transkript\"],\"5jqJzi\":[\"Transkriptanonymisierung und Einstellungen für erneute Transkription arbeiten konsistenter. Die Aufnahmedauer bleibt nach Pausieren und Fortsetzen korrekt.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Frag mal\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Verwandle Gespräche in Live-Folien. Starte eine Live-Sitzung oder eine Analyse bei Bedarf, präsentiere der Gruppe und verfolge Erkenntnisse bis zu ihren Quellen.\"],\"portal.anonymization.disable.confirm\":[\"Ausschalten\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Anonymisierung ausschalten?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Verwandle die Gespräche deines Projekts in Live-Folien für den Raum.\\n\\n- Verfolge neue Themen, während Menschen miteinander sprechen.\\n- Präsentiere Erkenntnisse und prüfe die Gespräche dahinter.\\n- Starte eine Live-Sitzung oder eine Auswertung bei Bedarf.\\n\\nAußerdem: neue Chatvorlagen, Agentenverbindungen und Verbesserungen für Mobilgeräte.\"],\"portal.anonymization.disable.warning\":[\"Das Deaktivieren der Anonymisierung während laufender Aufnahmen kann unbeabsichtigte Folgen haben. Aktive Gespräche werden auch während der Aufnahme betroffen. Bitte verwenden Sie dies mit Vorsicht.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Nachricht eingeben oder / für Vorlagen drücken...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"nWMRxa\":[\"Loslösen\"],\"vSdeRU\":[\"Löse zuerst ein Projekt (max. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Löse zuerst ein Projekt (max. 3)\"],\"dx+iaL\":[\"Projekt lösen\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Unbenannter Bericht\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Höchstens \",[\"MAX_FILES\"],\" Bilder\"],\"lLehih\":[\"Bis zu \",[\"MAX_MESSAGE_CHARS\"],\" Zeichen\"],\"ia8YsC\":[\"Demnächst\"],\"EkH9pt\":[\"Aktualisieren\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Avatar hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Übernommenen Standard verwenden\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Nutze Italienisch für Chat, Berichte, Transkription und Einführungskarten für Teilnehmende. Eine vollständige Übersetzung der Oberfläche war nicht Teil dieser Version.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Erinnerung zur Verifizierung\"],\"participant.banner.verification_required\":[\"Verifizierung erforderlich\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Ergebnisse prüfen und Antworten verfeinern\"],\"w6Mgbs\":[\"Verify Themen\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Ansicht\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Versionshinweise ansehen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Warten auf den Abschluss der Gespräche, bevor ein Bericht erstellt wird.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Das auch bei Ihrem Event?\"],\"q7LnaV\":[\"Möchten Sie ein Event mit dembrane durchführen?\"],\"La34Yq\":[\"Möchten Sie dembrane bei Ihrem nächsten Event einsetzen?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Sieh dir das Video als Einführung in Organisationen, Workspaces und Projekte an.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"mW8QSA\":[\"Wir konnten die gesuchte Seite nicht finden. Möglicherweise wurde sie verschoben.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Wir melden uns innerhalb eines Tages. Möchten Sie lieber selbst einen Termin wählen?\"],\"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.\"],\"FXjsEJ\":[\"Wir hören gerne von Ihnen. Ob Sie eine Idee für etwas Neues haben, eine Übersetzung entdeckt haben, die nicht passt, oder einfach erzählen möchten, wie es läuft. Einen Fehler gefunden? Nutzen Sie <0>Problem melden, um ihn mit Screenshots zu senden.\"],\"XolQc4\":[\"Wir hören gerne von Ihnen. Ob Sie eine Idee für etwas Neues haben, eine Übersetzung entdeckt haben, die nicht passt, oder einfach erzählen möchten, wie es läuft. Einen Fehler gefunden? Nutzen Sie Problem melden in der Seitenleiste, um ihn mit Screenshots zu senden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Willkommen bei dembrane!\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Willkommen!\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Was ist passiert? Fügen Sie hier einen Screenshot ein, um ihn anzuhängen\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"Was soll ECHO aus den Gesprächen analysieren oder generieren?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"Was lief schief?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Anonymisierte Unterhaltungen deaktivieren auch die Audio-Wiedergabe, den Audio-Download und die Hertranskription, um die Privatsphäre der Teilnehmer zu schützen. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"MEmr1I\":[\"Wenn das Gespräch abgeschlossen wird, werden Teilnehmer, die noch nicht verifiziert haben, aufgefordert, zu verifizieren oder zu überspringen\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"Wann soll der Bericht erstellt werden?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Arbeite mit dem neuen Gesprächsassistenten, verfolge Sitzungen im Live-Monitor und nutze die überarbeitete Transkriptionsverarbeitung.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Workspace / Projekt\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Workspace-Standard\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Workspace-Einstellungen\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Schreibe eigene Prüfaufforderungen, erzeuge Ergebnisse in der Projektsprache und erinnere Teilnehmende vor dem Abschluss an die Überprüfung. Konfiguriere Einstellungen je Rechtsgrundlage.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Falsche Sprache oder Tonfall\"],\"MNTYHt\":[\"Falsche Quellen\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Sie\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"Du kannst das später in den Arbeitsbereich-Einstellungen ändern, nachdem du deine Rechnungsdaten hinzugefügt hast.\"],\"uGP87g\":[\"Du kannst das später in den Arbeitsbereich-Einstellungen ändern.\"],\"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.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"Sie können es unten erneut versuchen.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Sie haben noch keine Ergebnisse verifiziert. Möchten Sie vor dem Abschluss verifizieren?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Sie erhalten bald \",[\"objectLabel\"],\" zur Verifizierung.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"sie@beispiel.de\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Ihre E-Mail-Adresse\"],\"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.\"],\"vaTeZ3\":[\"Ihr Feedback und diese Antwort gehen an das dembrane-Team.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Die Erstellung deines neuesten Berichts wurde abgebrochen. Dein letzter abgeschlossener Bericht wird angezeigt.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Ihr Name\"],\"VSneAo\":[\"Ihr Name, Ihre E-Mail-Adresse und die aktuelle Seite werden mitgesendet, damit wir nachfragen können.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"DrJCbp\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen. Sie können auch ein weiteres Gespräch aufnehmen oder den QR-Code teilen, damit andere beitragen können.\"],\"7i36j4\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen. Sie können auch den QR-Code teilen, damit andere beitragen können, oder ein weiteres Gespräch aufnehmen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Sie sind nicht authentifiziert\"],\"You don't have permission to access this.\":[\"Sie haben keine Berechtigung, darauf zuzugreifen.\"],\"Resource not found\":[\"Ressource nicht gefunden\"],\"Server error\":[\"Serverfehler\"],\"Something went wrong\":[\"Etwas ist schief gelaufen\"],\"We're preparing your workspace.\":[\"Wir bereiten deinen Arbeitsbereich vor.\"],\"Preparing your dashboard\":[\"Dein Dashboard wird vorbereitet\"],\"Welcome back\":[\"Willkommen zurück\"],\"participant.button.back.microphone\":[\"Zurück\"],\"participant.mic.check.button.skip\":[\"Überspringen\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\"Die Bibliothek wird \",[\"duration\"],\" dauern.\"],\"uDvV8j\":[\" Absenden\"],\"aMNEbK\":[\" Von Benachrichtigungen abmelden\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bald verfügbar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Erkunden\\\" bald verfügbar\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Überprüfen\\\" bald verfügbar\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Tag\"],\"other\":[\"#\",\" Tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Nachricht von dembrane\"],\"other\":[\"Nachrichten von dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" hinzugefügt\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Gespräche • Bearbeitet \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" ist noch nicht in diesem Workspace.\"],\"RZUJFH\":[[\"0\"],\" ist noch nicht in diesem Workspace. Bitte einen Workspace-Admin, diese Person einzuladen.\"],\"iOmAhc\":[[\"0\"],\" ist noch nicht in diesem Workspace. Sende eine Einladung und teile dieses Projekt beim Beitritt.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" nicht hinzugefügt\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" Personen sind noch nicht in diesem Workspace.\"],\"E6f0Mh\":[[\"0\"],\" Personen sind noch nicht in diesem Workspace. Bitte einen Workspace-Admin, sie einzuladen.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" Aufrufe\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" Personen waren bereits eingeladen. Das Projekt wird beim Beitritt geteilt.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Gespräche • Bearbeitet \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" ausgewählt\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" hat bereits eine offene Einladung für ein anderes Projekt. Teile dieses Projekt nach dem Beitritt.\"],\"zB7Coe\":[[\"email\"],\" steht auf der Liste offener Einladungen, aber die E-Mail konnte nicht gesendet werden. Erneut senden unter Mitglieder.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Derzeit ist \",\"#\",\" Unterhaltung bereit zur Analyse.\"],\"other\":[\"Derzeit sind \",\"#\",\" Unterhaltungen bereit zur Analyse.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" liest gerade\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" Einladungen gesendet. Das Projekt wird beim Beitritt geteilt.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" werden noch verarbeitet.\"],\"ZpJ0wx\":[\"*Transkription wird durchgeführt.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" Unterhaltungen\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspekte\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 Aufruf\"],\"AeSuqs\":[\"1. Sie geben eine URL an, an die Sie Benachrichtigungen erhalten möchten\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. Wenn ein Gesprächs- oder Berichtereignis eintritt, senden wir die Daten automatisch an deine URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Ihr System empfängt die Daten und kann darauf reagieren (z.B. in eine Datenbank speichern, eine E-Mail senden, ein Spreadsheet aktualisieren)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Ein freundlicher Name, um diesen Webhook zu identifizieren\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Zuverlässigere Audio-Uploads\"],\"XPY0OE\":[\"Ein neuer Assistent und ein Live-Monitor\"],\"z9VxrW\":[\"Ein neuer Bericht wird automatisch zum geplanten Zeitpunkt erstellt und veröffentlicht.\"],\"sy1BvY\":[\"Ein Teilnehmerportal zum Aufzeichnen von Gesprächen.\"],\"zm7GU7\":[\"Für die Verarbeitung auf Basis von Einwilligung ist ein Link zur Datenschutzerklärung erforderlich. Er muss mit http:// oder https:// beginnen und darf höchstens 255 Zeichen lang sein.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Ein flüssigerer Gesprächsbereich\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Zugriff\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Konto-Standard\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Hinzufügen\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Zusätzlichen Kontext hinzufügen (Optional)\"],\"Se1KZw\":[\"Alle zutreffenden hinzufügen\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Füge Gespräche zum Chatkontext hinzu, nutze verbesserte Fragevorlagen und überarbeitete Transkriptionsoptionen. Belegzitate und Übersetzungen erhalten Fehlerbehebungen.\"],\"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.\"],\"5phU36\":[\"Bilder hinzufügen\"],\"1xDwr8\":[\"Fügen Sie Schlüsselbegriffe oder Eigennamen hinzu, um die Qualität und Genauigkeit der Transkription zu verbessern.\"],\"ndpRPm\":[\"Neue Aufnahmen zu diesem Projekt hinzufügen. Dateien, die Sie hier hochladen, werden verarbeitet und in Gesprächen erscheinen.\"],\"uqLJli\":[\"Personen per E-Mail hinzufügen. Wer noch nicht im Workspace ist, erhält eine Einladung und beim Beitritt Zugriff auf dieses Projekt.\"],\"1G8+6T\":[\"Personen per E-Mail hinzufügen. Wer noch nicht in diesem Workspace ist, erhält eine Einladung, und das Projekt wird beim Beitritt geteilt.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Tag hinzufügen\"],\"add.tag.filter.modal.title\":[\"Tag zu Filtern hinzufügen\"],\"IKoyMv\":[\"Tags hinzufügen\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Zu Filtern hinzufügen\"],\"NffMsn\":[\"Zu diesem Chat hinzufügen\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Thema hinzufügen\"],\"AHaRrL\":[\"Übersetzungen hinzufügen\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Webhook hinzufügen\"],\"UZ07em\":[\"Ihren ersten Webhook hinzufügen\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Hinzugefügt\"],\"QKlADn\":[[\"0\"],\" Personen hinzugefügt\"],\"z9TWoF\":[[\"granted\"],\" Personen hinzugefügt\"],\"q+wngh\":[\"Hinzugefügt und geteilt\"],\"Na90E+\":[\"Hinzugefügte E-Mails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zum Chat hinzufügen\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" hinzufügen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" weitere Unterhaltung\"],\"other\":[\"#\",\" weitere Unterhaltungen\"]}],\" mit den folgenden Filtern hinzufügen:\"],\"select.all.modal.loading.title\":[\"Unterhaltungen werden hinzugefügt\"],\"Du6bPw\":[\"Adresse\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Die Basis-Schriftgröße für die Oberfläche anpassen\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Erweitert\"],\"OaKXud\":[\"Erweitert (Tipps und best practices)\"],\"JiIKww\":[\"Erweiterte Einstellungen\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Werkzeuggetriebene Ausführung\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Alle\"],\"cF7bEt\":[\"Alle Aktionen\"],\"O1367B\":[\"Alle Sammlungen\"],\"gvykaX\":[\"Alle Unterhaltungen\"],\"u/fl/S\":[\"Alle Dateien wurden erfolgreich hochgeladen.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Alle Versionen auf GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Alle Vorlagen\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Alle Jahre\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Bereits eingeladen. Das Projekt wird beim Beitritt geteilt.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"Eine E-Mail-Benachrichtigung wird an \",[\"0\"],\" Teilnehmer\",[\"1\"],\" gesendet. Möchten Sie fortfahren?\"],\"8q/YVi\":[\"Beim Laden des Portals ist ein Fehler aufgetreten. Bitte kontaktieren Sie das Support-Team.\"],\"XyOToQ\":[\"Ein Fehler ist aufgetreten.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"Ein unerwarteter Fehler ist aufgetreten. Neu laden oder zur Startseite zurückkehren hilft meistens.\"],\"F4cOH1\":[\"Analyse Sprache\"],\"ZlwDi6\":[\"Analytik\"],\"1x2m6d\":[\"Analyse diese Elemente mit Tiefe und Nuance. Bitte:\\n\\nFokussieren Sie sich auf unerwartete Verbindungen und Gegenüberstellungen\\nGehen Sie über offensichtliche Oberflächenvergleiche hinaus\\nIdentifizieren Sie versteckte Muster, die die meisten Analysen übersehen\\nBleiben Sie analytisch rigoros, während Sie ansprechend bleiben\\nVerwenden Sie Beispiele, die tiefere Prinzipien erhellen\\nStrukturieren Sie die Analyse, um Verständnis zu erlangen\\nZiehen Sie Erkenntnisse hervor, die konventionelle Weisheiten herausfordern\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"Dzr23X\":[\"Ankündigungen\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Transkript anonymisieren\"],\"gd1W+U\":[\"Transkripte anonymisieren\"],\"YdiKaK\":[\"Anonymisierte Unterhaltung\"],\"iPiP6k\":[\"Anonymisierte Unterhaltung\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Noch etwas?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Erscheinungsbild\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Anwenden\"],\"4TwsNi\":[\"Vorlage anwenden\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Freigeben\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Genehmigt\"],\"tq+4rb\":[\"Sind Sie sicher, dass Sie den Webhook \\\"\",[\"0\"],\"\\\" löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"uqhbrg\":[\"Sind Sie sicher, dass Sie diesen Chat löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"Q5Z2wp\":[\"Sind Sie sicher, dass Sie dieses Gespräch löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"yrk3z3\":[\"Sind Sie sicher, dass Sie dieses benutzerdefinierte Thema löschen möchten? Dies kann nicht rückgängig gemacht werden.\"],\"YF1Re1\":[\"Sind Sie sicher, dass Sie dieses Projekt löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"ELQ+fw\":[\"Bist du sicher, dass du diesen Bericht löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.\"],\"aUsm4A\":[\"Sind Sie sicher, dass Sie diesen Tag löschen möchten? Dies wird den Tag aus den bereits enthaltenen Gesprächen entfernen.\"],\"e3BGhi\":[\"Möchten Sie diese Vorlage wirklich löschen? Dies kann nicht rückgängig gemacht werden.\"],\"participant.modal.finish.message.text.mode\":[\"Sind Sie sicher, dass Sie das Gespräch beenden möchten?\"],\"sOql0x\":[\"Sind Sie sicher, dass Sie die Bibliothek generieren möchten? Dies wird eine Weile dauern und Ihre aktuellen Ansichten und Erkenntnisse überschreiben.\"],\"UXCOMn\":[\"Sind Sie sicher, dass Sie das Zusammenfassung erneut generieren möchten? Sie werden die aktuelle Zusammenfassung verlieren.\"],\"ZmeZPn\":[\"Sind Sie sicher, dass Sie Ihr Profilbild entfernen möchten?\"],\"wQ5jM6\":[\"Sind Sie sicher, dass Sie Ihr benutzerdefiniertes Logo entfernen möchten? Stattdessen wird das Standard-dembrane-Logo verwendet.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Fragen\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Bitte einen Workspace-Admin, diese Person einzuladen.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"E-Mail anfragen?\"],\"Rjlwvz\":[\"Nach Namen fragen?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspekt\"],\"HkigHK\":[\"Aspekte\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Mindestens ein Thema muss ausgewählt werden, um Verify zu aktivieren\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio-Download nicht verfügbar für anonymisierte Unterhaltungen\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio-Wiedergabe nicht verfügbar für anonymisierte Unterhaltungen\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Audioverarbeitung und Uploads sind robuster, und die Gesprächsliste zeigt klarere Gesamtzahlen.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio-Tipp\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit-Protokolle\"],\"aL1eBt\":[\"Audit-Protokolle als CSV exportiert\"],\"mS51hl\":[\"Audit-Protokolle als JSON exportiert\"],\"z8CQX2\":[\"Authentifizierungscode\"],\"R+PyK8\":[\"Titel automatisch generieren\"],\"voAvDv\":[\"Titel automatisch generieren\"],\"Wrpmw7\":[\"Automatisch generiert oder manuell eingeben\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatisch einen kurzen themenbasierten Titel für jedes Gespräch nach der Zusammenfassung generieren. Der Titel beschreibt, was besprochen wurde, nicht, wer teilgenommen hat. Der ursprüngliche Name des Teilnehmers wird separat gespeichert, wenn er bereitgestellt wurde.\"],\"F95AYw\":[\"Transkripte automatisch in Ihre CRM oder Datenbank speichern\"],\"WI8FHU\":[\"Wähle automatisch relevante Gespräche für den Chat und folge Quellenverweisen. Abonniere Berichtsbenachrichtigungen und nutze verbesserte Audio- und Textuploads.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Gesprächdaten automatisch an Ihre anderen Tools und Dienste senden, wenn Ereignisse auftreten.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar entfernt\"],\"jSKImf\":[\"Avatar aktualisiert\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Zurück\"],\"participant.button.back\":[\"Zurück\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Zurück zur Auswahl\"],\"9aZHfH\":[\"Back to settings\"],\"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\"],\"g7YpV4\":[\"Vor dieser Versionsgeschichte\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Besseres Feedback, einfachere Rückmeldung\"],\"5DnJa6\":[\"Bessere Aufnahmen, mehr Antwortmöglichkeiten\"],\"9GKCNF\":[\"Bessere Uploads, Transkripte und Suche\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Einen Anruf buchen\"],\"KKLfx1\":[\"Buchen Sie einen Termin mit uns\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Ideen brainstormen\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Fehlerbehebungen\"],\"4eBtkM\":[\"Benutzerdefinierte Dashboards mit realtime Gesprächdaten erstellen\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"Durch das Löschen dieses Projekts werden alle damit verbundenen Daten gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie absolut sicher?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Überschreibung abbrechen\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Planung abbrechen\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Leeres Gespräch kann nicht hinzugefügt werden\"],\"SL9Qao\":[\"Kann nicht innerhalb von 10 Minuten vor dem geplanten Zeitpunkt umgeplant werden\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Karte\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Sprache ändern\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Passwort ändern\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Änderungen werden automatisch gespeichert\"],\"xF/jsW\":[\"Das Ändern der Sprache während eines aktiven Chats kann unerwartete Ergebnisse hervorrufen. Es wird empfohlen, ein neues Gespräch zu beginnen, nachdem die Sprache geändert wurde. Sind Sie sicher, dass Sie fortfahren möchten?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat-Name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat mit einzelnen Gesprächen.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chat\"],\"project.sidebar.chat.title\":[\"Chat\"],\"Dv3TPp\":[\"Chats erhalten automatische Titel, und Gesprächskontext enthält Datum und Dauer. Springe zur neuesten Nachricht und nutze einen klareren Audio-Upload-Ablauf.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Auf Tschechisch eingestellte Chats antworten jetzt auf Tschechisch statt auf Englisch.\"],\"gLvHXQ\":[\"Prüfe und wähle dein Mikrofon vor der Aufnahme, sieh Audioqualitätsanzeigen und nutze verbesserte mehrsprachige Transkription. Wähle Zusammenfassung, Brainstorming oder eigene Antwortmodi.\"],\"+e4Yxz\":[\"Mikrofonzugriff prüfen\"],\"participant.button.check.microphone.access\":[\"Mikrofonzugriff prüfen\"],\"WQUm5N\":[\"Prüfen Sie Text und Bilder und versuchen Sie es erneut\"],\"v4fiSg\":[\"Überprüfen Sie Ihre E-Mail\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Ein Logo-Datei auswählen\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Wähle auffindbare, einladungsbasierte oder private Workspaces. Organisationsmitglieder laden schneller, Uploads führen zurück zu deinen Gesprächen und automatische Zusammenfassungen und Zusammenführungen werden zuverlässiger.\"],\"okLwd9\":[\"Aus Ihren anderen Projekten auswählen\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Wählen Sie, wann Sie Benachrichtigungen erhalten möchten\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Wähl dein Theme für das Interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Klarere Quellen im Chat\"],\"xOlaOX\":[\"Klarerer Workspace-Zugriff für Admins\"],\"B2pdef\":[\"Klicken Sie auf \\\"Dateien hochladen\\\", wenn Sie bereit sind, den Upload-Prozess zu starten.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Klicken, um zu bearbeiten\"],\"jcSz6S\":[\"Klicken, um alle \",[\"totalCount\"],\" Unterhaltungen anzuzeigen\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-verwaltet\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Von einem anderen Projekt klonen\"],\"nCnTY0\":[\"Von Projekt klonen\"],\"BPrdpc\":[\"Projekt klonen\"],\"9U86tL\":[\"Projekt klonen\"],\"yz7wBu\":[\"Schließen\"],\"select.all.modal.close\":[\"Schließen\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Sammlung\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Häufige Anwendungsfälle:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Vergleichen & Gegenüberstellen\"],\"CfO59/\":[\"Vergleichen & Gegenüberstellen Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Abgeschlossen\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Weiter\"],\"7VpPHA\":[\"Bestätigen\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Neues Passwort bestätigen\"],\"yjkELF\":[\"Neues Passwort bestätigen\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Veröffentlichung bestätigen\"],\"vz1fGK\":[\"Umplanung bestätigen\"],\"L0k594\":[\"Bestätigen Sie Ihr Passwort, um ein neues Geheimnis für Ihre Authentifizierungs-App zu generieren.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Verbindung zu den Berichtsdiensten wird hergestellt...\"],\"wX/BfX\":[\"Verbindung gesund\"],\"participant.modal.s3check.title\":[\"Verbindungsproblem\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Verbindung ungesund\"],\"l9fkrm\":[\"Einwilligung\"],\"EhtOYz\":[\"Die Verarbeitung auf Basis von Einwilligung ist aktiv, aber es fehlt ein Link zur Datenschutzerklärung. Fügen Sie einen hinzu, wo die Rechtsgrundlage festgelegt ist: Teilnehmende müssen die Datenschutzerklärung lesen können.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Inhalt\"],\"M73whl\":[\"Kontext\"],\"VHSco4\":[\"Kontext hinzugefügt:\"],\"JX3KT4\":[\"Kontextbezogene Vorschläge\"],\"xGVfLh\":[\"Weiter\"],\"participant.ready.to.begin.button.text\":[\"Weiter\"],\"participant.button.continue\":[\"Weiter\"],\"F1pfAy\":[\"Gespräch\"],\"YyNOE7\":[\"Gespräch\"],\"EiHu8M\":[\"Gespräch zum Chat hinzugefügt\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Gesprächsbelege stehen jetzt zusammen unter einer Quellenüberschrift. Das Feedbackformular kann deine E-Mail-Adresse vorausfüllen.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Gespräch beendet\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Gesprächsseiten und Datenladen werden vereinfacht. Automatische Gesprächsauswahl lässt mehr Platz für Antworten, und Ankündigungen erzeugen weniger wiederholte Benachrichtigungen.\"],\"OtdHFE\":[\"Gespräch aus dem Chat entfernt\"],\"zTKMNm\":[\"Gesprächstatus\"],\"Rdt7Iv\":[\"Gesprächstatusdetails\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Gesprächszusammenfassungen bleiben in den betroffenen Verarbeitungsschritten nicht mehr hängen. Durch Limits des kostenlosen Tarifs pausierte Gespräche werden nach einem Upgrade weiterverarbeitet.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Gesprächstags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"Gespräche\"],\"EnJuK0\":[\"Gespräche\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Link kopieren\"],\"H4brGj\":[\"Link in die Zwischenablage kopieren\"],\"AjrNNs\":[\"Berichtsinhalt kopieren\"],\"vAkFou\":[\"Geheimnis kopieren\"],\"v3StFl\":[\"Zusammenfassung kopieren\"],\"/4gGIX\":[\"In die Zwischenablage kopieren\"],\"RTxUjI\":[\"In die Zwischenablage kopieren\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Kopieren...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Deine Auswahl konnte nicht übernommen werden. Wähle unten erneut.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Konnte nicht in die Zwischenablage kopiert werden. Bitte versuchen Sie es erneut.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Die Gesprächsliste konnte nicht geöffnet werden. Versuche es erneut.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Feedback wurde nicht gespeichert\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Die Meldung konnte nicht gesendet werden. Versuchen Sie es noch einmal\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Einladung konnte nicht zurückgezogen werden\"],\"LPY4VY\":[\"Einladung konnte nicht gesendet werden\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Erstellen\"],\"VW1ecc\":[\"Einen neuen Webhook von Grund auf erstellen\"],\"oJfYM5\":[\"Einen Forschungsbrief aus den letzten Gesprächen erstellen\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Bibliothek erstellen\"],\"bUyyzw\":[\"Erstelle mehrere Berichte pro Projekt und gestalte sie mit eigenen Anweisungen. Geplante Berichte (Beta) enthalten alle Gespräche, die vor dem geplanten Zeitpunkt aufgezeichnet wurden. Erstelle, speichere und pinne eigene Chatvorlagen (Beta). Diese Version ergänzt außerdem das Anpinnen von Projekten, Profileinstellungen und Chats auf Ukrainisch.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Neue Ansicht erstellen\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Bericht erstellen\"],\"A5hiCy\":[\"Vorlage erstellen\"],\"library.create.view\":[\"Ansicht erstellen\"],\"3D0MXY\":[\"Ansicht erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Erstellt am\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Avatar zuschneiden\"],\"udBqWc\":[\"Bild zuschneiden\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Logo zuschneiden\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Aktuelles Logo\"],\"Pn2B7/\":[\"Aktuelles Passwort\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Benutzerdefiniert\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Benutzerdefinierter Dateiname\"],\"GrXJvi\":[\"Benutzerdefiniertes Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Benutzerdefinierter Titel-Prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Tschechische Gespräche, tschechische Antworten\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard-URL (direkter Link zur Gesprächsübersicht)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Datum\"],\"ItMGda\":[\"Zeitraum\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Standard\"],\"ucTqrC\":[\"Standard - Kein Tutorial (Nur Datenschutzbestimmungen)\"],\"K/78Yl\":[\"Multistufige Analyse mit live Werkzeugausführung delegieren\"],\"cnGeoo\":[\"Löschen\"],\"project.sidebar.chat.delete\":[\"Chat löschen\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Chat löschen\"],\"2GCE3m\":[\"Gespräch löschen\"],\"2DzmAq\":[\"Gespräch löschen\"],\"j5pYC4\":[\"Benutzerdefiniertes Thema löschen\"],\"mp235G\":[\"Projekt löschen\"],\"++iDlT\":[\"Projekt löschen\"],\"rUWrSE\":[\"Bericht löschen\"],\"qr0gpK\":[\"Tag löschen\"],\"DFjdv0\":[\"Vorlage löschen\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Webhook löschen\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Gelöschte Projekte und durch Tariflimits pausierte Gespräche lösen keine wiederholten Zusammenfassungsversuche mehr aus.\"],\"+m7PfT\":[\"Erfolgreich gelöscht\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane bei Ihrem Event?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"dembrane Event-Einladung\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot war unser früheres Projekt. Danke an die Gastgeber, Teilnehmenden und Mitwirkenden, die es mitgestaltet haben.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Beschreiben Sie das Problem\"],\"Fs/0D5\":[\"Beschreiben Sie, was die Sprachmodell aus dem Gespräch extrahieren oder zusammenfassen soll...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Legt fest, unter welcher DSGVO-Rechtsgrundlage personenbezogene Daten für dieses Projekt verarbeitet werden.\"],\"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.\"],\"NMz7xK\":[\"Entwickeln Sie ein strategisches Framework, das bedeutende Ergebnisse fördert. Bitte:\\n\\nIdentifizieren Sie die Kernziele und ihre Abhängigkeiten\\nEntwickeln Sie Implementierungspfade mit realistischen Zeiträumen\\nVorhersagen Sie potenzielle Hindernisse und Minderungsstrategien\\nDefinieren Sie klare Metriken für Erfolg, die über Vanity-Indikatoren hinausgehen\\nHervorheben Sie Ressourcenanforderungen und Allokationsprioritäten\\nStrukturieren Sie das Planung für sowohl sofortige Maßnahmen als auch langfristige Vision\\nEntscheidungsgrenzen und Pivot-Punkte einschließen\\n\\nHinweis: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"2FA deaktivieren\"],\"yrMawf\":[\"Zwei-Faktor-Authentifizierung deaktivieren\"],\"E/QGRL\":[\"Deaktiviert\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Anzeigename\"],\"fDGgw4\":[\"Benötige ich dies?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Möchten Sie auf dem Laufenden bleiben?\"],\"TvY/XA\":[\"Dokumentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Fertig, kontaktieren Sie mich\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Herunterladen\"],\"5YVf7S\":[\"Alle Transkripte der Gespräche, die für dieses Projekt generiert wurden, herunterladen.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Herunterladen als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio herunterladen\"],\"N8MP2s\":[\"Audio herunterladen und Gespräche organisieren\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Lade Gesprächsaudio herunter, ergänze Tags im Dashboard und nutze Zusammenfassungen, die sich an das Gespräch anpassen. Bearbeitung und Portalvorschau erhalten Fehlerbehebungen.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"QR-Code herunterladen\"],\"+bBcKo\":[\"Transkript herunterladen\"],\"5XW2u5\":[\"Transkript-Download-Optionen\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Nächste Aktionen erstellen und nach Priorität organisieren\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Ziehen Sie Audio-Dateien hier oder klicken Sie, um Dateien auszuwählen\"],\"KGi3u9\":[\"Ziehen, um umzusortieren\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplizieren\"],\"lkz6PL\":[\"Dauer\"],\"KIjvtr\":[\"Niederländisch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"z.B. \\\"Fokus auf Nachhaltigkeitsthemen\\\" oder \\\"Was denken die Teilnehmenden über die neue Richtlinie?\\\"\"],\"pO9dOq\":[\"z.B. \\\"Verwenden Sie kurze Nomen-Phrasen wie 'Stadtbäume' oder 'Jugendliche Arbeitsplätze'. Vermeiden Sie generische Titel.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"z.B. Wöchentliche Stakeholder-Zusammenfassung\"],\"ffuZIY\":[\"z.B. Slack-Benachrichtigungen, Make-Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Bearbeiten\"],\"9WkyHF\":[\"Gespräch bearbeiten\"],\"Y/3VME\":[\"Benutzerdefiniertes Thema bearbeiten\"],\"/8fAkm\":[\"Dateiname bearbeiten\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Bearbeitungsmodus\"],\"niSWGL\":[\"Optionen bearbeiten\"],\"G2KpGE\":[\"Projekt bearbeiten\"],\"DdevVt\":[\"Bericht bearbeiten\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Berichte direkt bearbeiten\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Bearbeite Berichte selbst, prüfe Mikrofone im Portal leichter und erhalte bessere Ladeanzeigen und Fehlermeldungen.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"E-Mail\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji, das neben dem Thema angezeigt wird, z.B. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Leer\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"2FA aktivieren\"],\"D3AnH0\":[\"Explore aktivieren\"],\"4KKbfZ\":[\"Teilnahme aktivieren\"],\"G3dSLc\":[\"Benachrichtigungen für Berichte aktivieren\"],\"ZUS4uO\":[\"Aktivieren Sie diese Funktion, um Teilnehmern die Möglichkeit zu geben, KI-gesteuerte Antworten während ihres Gesprächs anzufordern. Teilnehmer können nach Aufnahme ihrer Gedanken auf \\\"Explore\\\" klicken, um kontextbezogene Rückmeldungen zu erhalten, die tiefere Reflexion und Engagement fördern. Ein Abkühlungszeitraum gilt zwischen Anfragen.\"],\"dashboard.dembrane.feature.verify.description\":[\"Aktivieren Sie diese Funktion, damit Teilnehmer \\\"Ergebnisse\\\" aus ihren Beiträgen verifizieren und genehmigen können. Dies hilft, Schlüsselideen, Bedenken oder Zusammenfassungen zu konkretisieren. Nach dem Gespräch können Sie nach Diskussionen mit verifizierten Ergebnissen filtern und diese in der Übersicht einsehen.\"],\"C027jd\":[\"Transkript anonymisieren aktivieren\"],\"329BBO\":[\"Zwei-Faktor-Authentifizierung aktivieren\"],\"x35ZEt\":[\"Verify aktivieren\"],\"RxzN1M\":[\"Aktiviert\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"Englisch\"],\"GboWYL\":[\"Geben Sie einen Schlüsselbegriff oder Eigennamen ein\"],\"TSHJTb\":[\"Geben Sie einen Namen für das neue Gespräch ein\"],\"KovX5R\":[\"Geben Sie einen Namen für Ihr geklontes Projekt ein\"],\"DRYPFp\":[\"Geheimen Schlüssel eingeben\"],\"34YqUw\":[\"Geben Sie einen gültigen Code ein, um die Zwei-Faktor-Authentifizierung zu deaktivieren.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Aktuelles Passwort eingeben\"],\"2FPsPl\":[\"Dateiname eingeben (ohne Erweiterung)\"],\"VpwcSk\":[\"Neues Passwort eingeben\"],\"oIn7d4\":[\"Geben Sie den 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"q1OmsR\":[\"Geben Sie den aktuellen 6-stelligen Code aus Ihrer Authentifizierungs-App ein.\"],\"NgaR6B\":[\"Geben Sie Ihr Passwort ein\"],\"42tLXR\":[\"Geben Sie Ihre Anfrage ein\"],\"HRbyGE\":[\"Von dem Teilnehmer auf dem Portal eingetragen\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Fehler\"],\"Ne0Dr1\":[\"Fehler beim Klonen des Projekts\"],\"AEkJ6x\":[\"Fehler beim Erstellen des Berichts\"],\"edh3aY\":[\"Fehler beim Laden des Projekts\"],\"4kVRov\":[\"Fehler aufgetreten\"],\"hmk+3M\":[\"Fehler beim Hochladen von \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Ereignisse\"],\"VFClUG\":[\"Ereignisse, die beobachtet werden sollen\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Alles sieht gut aus – Sie können fortfahren.\"],\"jqsg/I\":[\"Beispiel-Webhook-Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Vollbild verlassen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimentell\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Erkunden\"],\"B7flm8\":[\"Wiederkehrende Themen in der Library erkunden\"],\"EebTQD\":[\"Erkunde Geschichten und Perspektiven mit der Chatvorlage Narratives, auf Englisch und Niederländisch.\"],\"HNnM2X\":[\"Das dembrane/pilot-Archiv erkunden\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[[\"conversationCount\"],\" Gespräche werden analysiert\"],\"GS+Mus\":[\"Exportieren\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Fehlgeschlagen\"],\"bh2Vob\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\"],\"ajvYcJ\":[\"Fehler beim Hinzufügen des Gesprächs zum Chat\",[\"0\"]],\"g5wCZj\":[\"Fehler beim Hinzufügen von Unterhaltungen zum Kontext\"],\"pmwvUt\":[\"Ergebnis konnte nicht freigegeben werden. Bitte versuchen Sie es erneut.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Fehler beim Kopieren des Chats. Bitte versuchen Sie es erneut.\"],\"uvu6eC\":[\"Transkript konnte nicht kopiert werden. Versuch es noch mal.\"],\"UQ6LqT\":[\"Benutzerdefiniertes Thema konnte nicht erstellt werden\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Benutzerdefiniertes Thema konnte nicht gelöscht werden\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Fehler beim Löschen der Antwort\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Fehler beim Beenden des Gesprächs. Bitte versuchen Sie es erneut.\"],\"vx5bTP\":[\"Fehler beim Generieren von \",[\"label\"],\". Bitte versuchen Sie es erneut.\"],\"Fa1ewI\":[\"Zusammenfassung konnte nicht erstellt werden. Versuch es später noch mal.\"],\"Z77bMM\":[\"Webhooks konnten nicht geladen werden\"],\"T7KYJY\":[\"Fehler beim Markieren aller Ankündigungen als gelesen\"],\"eGHX/x\":[\"Fehler beim Markieren der Ankündigung als gelesen\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Verbindung fehlgeschlagen. Bitte versuche, die Seite neu zu laden.\"],\"SVtMXb\":[\"Fehler beim erneuten Generieren der Zusammenfassung. Bitte versuchen Sie es erneut.\"],\"h49o9M\":[\"Neu laden fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"rv8mO7\":[\"Avatar konnte nicht entfernt werden\"],\"kE1PiG\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\"],\"+piK6h\":[\"Fehler beim Entfernen des Gesprächs aus dem Chat\",[\"0\"]],\"P9wLTJ\":[\"Logo konnte nicht entfernt werden\"],\"IMUHg3\":[\"Neuplanung fehlgeschlagen. Bitte wahlen Sie einen spateren Zeitpunkt und versuchen Sie es erneut.\"],\"SmP70M\":[\"Fehler beim Hertranskribieren des Gesprächs. Bitte versuchen Sie es erneut.\"],\"kClMar\":[\"Ergebnis konnte nicht überarbeitet werden. Bitte versuchen Sie es erneut.\"],\"wMEdO3\":[\"Fehler beim Beenden der Aufnahme bei Änderung des Mikrofons. Bitte versuchen Sie es erneut.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Benutzerdefiniertes Thema konnte nicht aktualisiert werden\"],\"BpuK7o\":[\"Fehler beim Aktualisieren der Rechtsgrundlage\"],\"Avee+B\":[\"Name konnte nicht aktualisiert werden\"],\"gnm1CH\":[\"Anheften konnte nicht aktualisiert werden\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Avatar konnte nicht hochgeladen werden\"],\"RW4V7P\":[\"Logo konnte nicht hochgeladen werden\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Funktion bald verfügbar\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback-Portal\"],\"2roTVj\":[\"Feedback gesendet\"],\"87gcCP\":[\"Datei \\\"\",[\"0\"],\"\\\" überschreitet die maximale Größe von \",[\"1\"],\".\"],\"ena+qV\":[\"Datei \\\"\",[\"0\"],\"\\\" hat ein nicht unterstütztes Format. Nur Audio-Dateien sind erlaubt.\"],\"LkIAge\":[\"Datei \\\"\",[\"0\"],\"\\\" ist kein unterstütztes Audio-Format. Nur Audio-Dateien sind erlaubt.\"],\"RW2aSn\":[\"Datei \\\"\",[\"0\"],\"\\\" ist zu klein (\",[\"1\"],\"). Mindestgröße ist \",[\"2\"],\".\"],\"+aBwxq\":[\"Dateigröße: Min \",[\"0\"],\", Max \",[\"1\"],\", bis zu \",[\"MAX_FILES\"],\" Dateien\"],\"UkgMPE\":[\"Dateiname aus hochgeladener Datei\"],\"5g0xbt\":[\"Audit-Protokolle nach Aktion filtern\"],\"9clinz\":[\"Audit-Protokolle nach Sammlung filtern\"],\"O39Ph0\":[\"Nach Aktion filtern\"],\"DiDNkt\":[\"Nach Sammlung filtern\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Versionen nach Jahr filtern\"],\"MRk67a\":[\"Finde Widersprüche und vorschlage Folgefragen\"],\"SdZBYB\":[\"Die passenden Gespräche für deine Frage finden\"],\"oRQsgh\":[\"Workspaces finden und Gespräche voranbringen\"],\"p2j2po\":[\"Im Chat den Überblick behalten\"],\"participant.button.stop.finish\":[\"Beenden\"],\"participant.button.finish.text.mode\":[\"Beenden\"],\"participant.button.finish\":[\"Beenden\"],\"participant.modal.finish.title.text.mode\":[\"Gespräch beenden\"],\"4dQFvz\":[\"Beendet\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Fokus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Passwort vergessen?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Französisch\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Vollständiges Transkript (wenn verfügbar)\"],\"3qkggm\":[\"Vollbild\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generieren\"],\"EIdJgG\":[\"Neuen Bericht erstellen\"],\"QsUhrf\":[\"Bericht erstellen\"],\"GRy59I\":[\"Erstellen Sie zuerst eine Zusammenfassung\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Bibliothek generieren\"],\"5SWGxv\":[\"Jetzt erstellen\"],\"GWUJ9X\":[\"Stattdessen jetzt erstellen\"],\"QqIxfi\":[\"Geheimnis generieren\"],\"gitFA/\":[\"Zusammenfassung generieren\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Während eines Gesprächs eine Antwort erhalten\"],\"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.\"],\"Pl6LQ+\":[\"Kontakt aufnehmen\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Geben Sie mir eine Liste von 5-10 Themen, die diskutiert werden.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Zurück\"],\"DXr0zk\":[\"Vollbild\"],\"iWpEwy\":[\"Zur Startseite\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Zur neuen Unterhaltung gehen\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Gute Antwort\"],\"76gPWk\":[\"Verstanden\"],\"hjZBYK\":[\"Haben Sie zwei Minuten? Fünf optionale Fragen helfen uns bei der Vorbereitung.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Leitfaden, wie Titel generiert werden. Titel beschreiben das Thema des Gesprächs, nicht den Teilnehmer.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Bericht anleiten\"],\"myXGZW\":[\"Angeleitet\"],\"ZqBGoi\":[\"Hat verifizierte Artefakte\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Verborgener Schatz\"],\"vLyv1R\":[\"Verstecken\"],\"eHo/Jc\":[\"Daten verbergen\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Revisionsdaten verbergen\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"die dembrane Event-Einladung ausblenden\"],\"V3NvRL\":[\"Das Ausblenden der dembrane Event-Einladung ist Teil eines bezahlten Plans.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Highlight\"],\"tn75xn\":[\"Bestimmtes Konzept hervorheben\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Startseite\"],\"Ai2U7L\":[\"Host\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Feedback des Hosts\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Wie es funktioniert:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"Ich verstehe\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identifizieren Sie wiederkehrende Themen, Themen und Argumente, die in Gesprächen konsistent auftreten. Analysieren Sie ihre Häufigkeit, Intensität und Konsistenz. Erwartete Ausgabe: 3-7 Aspekte für kleine Datensätze, 5-12 für mittlere Datensätze, 8-15 für große Datensätze. Verarbeitungsanleitung: Konzentrieren Sie sich auf unterschiedliche Muster, die in mehreren Gesprächen auftreten.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Wenn Sie etwas entdeckt haben, bei dem Daten für Unbefugte sichtbar sind, jemand Zugriff hat, den er nicht haben sollte, oder eine mögliche Sicherheitslücke, nutzen Sie bitte stattdessen unser <0>Meldeformular für Sicherheitsprobleme. Es erreicht ein anderes Team auf einem schnelleren Weg. In dringenden Fällen senden Sie eine E-Mail an <1>privacy@dembrane.com\"],\"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.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"Wenn Sie nicht sicher sind, möchten Sie es wahrscheinlich noch nicht. Webhooks sind eine fortgeschrittene Funktion, die typischerweise von Entwicklern oder Teams mit benutzerdefinierten Integrationen verwendet wird. Sie können sie jederzeit später einrichten.\"],\"hDVOQQ\":[\"Wenn Sie Webhook-Integrationen einrichten, würden wir uns sehr freuen, Ihr Anwendungsfall kennen zu lernen. Wir entwickeln auch Observability-Funktionen, einschließlich Audit-Protokolle und Lieferungstracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Bilder dürfen höchstens \",[\"MAX_FILE_MB\"],\"MB groß sein\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Verbesserungen\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portal-Link einschließen\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Falsch oder erfunden\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Erkenntnisse\"],\"MSVCjk\":[\"Anweisungen für die Generierung des Verifizierungsergebnisses\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Neu: Popcorn\"],\"crUYYp\":[\"Ungültiger Code. Bitte fordern Sie einen neuen an.\"],\"jLr8VJ\":[\"Ungültige Anmeldedaten.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Einladung an \",[\"email\"],\" gesendet. Das Projekt wird beim Beitritt geteilt.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Einladung gesendet. Das Projekt wird beim Beitritt geteilt.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"In Workspace einladen und teilen\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP-Adresse\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"Das Gespräch wurde während der Aufnahme gelöscht. Wir haben die Aufnahme beendet, um Probleme zu vermeiden. Sie können jederzeit ein neues Gespräch starten.\"],\"library.not.available.message\":[\"Es scheint, dass die Bibliothek für Ihr Konto nicht verfügbar ist. Bitte fordern Sie Zugriff an, um dieses Feature zu entsperren.\"],\"participant.outcome.error.description\":[\"Wir konnten dieses Ergebnis nicht laden. Dies könnte ein vorübergehendes Problem sein. Sie können versuchen, neu zu laden oder zurückzugehen, um ein anderes Thema auszuwählen.\"],\"5dxEAB\":[\"Es sieht so aus, als hätten Sie noch keinen Bericht für dieses Projekt. Erstellen Sie einen, um eine Übersicht Ihrer Gespräche zu erhalten.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Es klingt, als würden mehrere Personen sprechen. Wenn Sie abwechselnd sprechen, können wir alle deutlich hören.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italienisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"1BIvTp\":[\"Italienisch für zentrale Arbeitsabläufe\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"An dieser Portal-Sitzung teilnehmen\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Einen Moment bitte\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Aufnahmegeräte wach halten\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Arbeite während Audio-Uploads weiter, durchsuche Tags und sieh den Transkriptionsfortschritt. Verbesserte Audiowiedergabe und intelligentere Gesprächsauswahl erleichtern die Analyse.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Sprache\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Zuletzt gespeichert am \",[\"0\"]],\"K7P0jz\":[\"Zuletzt aktualisiert\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Neueste\"],\"lchnsl\":[\"Neueste Version\"],\"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\"],\"J8VWes\":[\"Hinterlassen Sie Ihre E-Mail-Adresse, damit wir Sie kontaktieren können.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Rechtsgrundlage\"],\"vRXsmZ\":[\"Rechtsgrundlage\"],\"CopiEV\":[\"Rechtsgrundlage gespeichert\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliothek\"],\"library.title\":[\"Bibliothek\"],\"T50lwc\":[\"Bibliothekserstellung läuft\"],\"gkv8iG\":[\"Kennzeichen\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Link zur Datenschutzerklärung, die Teilnehmenden angezeigt wird\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live Agent Ausführungsmodus\"],\"participant.live.audio.level\":[\"Live Audiopegel:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Vorschau\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Laden\"],\"participant.verify.instructions.loading\":[\"Wird geladen\"],\"yQ9yN3\":[\"Aktionen werden geladen...\"],\"participant.concrete.loading.artefact\":[\"Artefakt wird geladen…\"],\"JOvnq+\":[\"Audit-Protokolle werden geladen…\"],\"y+JWgj\":[\"Sammlungen werden geladen...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Mikrofone werden geladen...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Transkript wird geladen ...\"],\"3SKW0s\":[\"Verify Themen werden geladen…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"wird geladen...\"],\"Z3FXyt\":[\"Laden...\"],\"Pwqkdw\":[\"Laden…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Anmelden\"],\"LM/dWU\":[\"Anmelden | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo entfernt\"],\"MjfaMh\":[\"Logo aktualisiert\"],\"nOhz3x\":[\"Abmelden\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Längste zuerst\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Vorlagen verwalten\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Über MCP-Verbindungen kann dein Agent Projekte finden, Gespräche durchsuchen, Transkripte lesen und Dokumentation nutzen, mit Organisationskontrollen und ausdrücklicher Zustimmung.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Besprechungsnotizen\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Nachrichten von \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Der Mikrofonzugriff ist weiterhin verweigert. Bitte überprüfen Sie Ihre Einstellungen und versuchen Sie es erneut.\"],\"azjxk1\":[\"Geht nicht auf die Frage ein\"],\"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\"],\"f8jrkd\":[\"weitere\"],\"2FYpfJ\":[\"Mehr\"],\"JcD7qf\":[\"Weitere Aktionen\"],\"rAPyBz\":[\"Zuverlässiger anonymisieren und aufnehmen\"],\"MmhZK+\":[\"Zuverlässigere Gesprächszusammenfassungen\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Nützlicherer Chatkontext\"],\"QWdKwH\":[\"Verschieben\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Gespräch verschieben\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Gespräch zu einem anderen Projekt verschieben\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Muss mindestens 10 Minuten in der Zukunft liegen\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Meine Vorlagen\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name ist erforderlich\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name aktualisiert\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"Neu\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"Neuer Gespräch Name\"],\"u2uElg\":[\"Neue Gesprache seit diesem Bericht hinzugefugt\"],\"library.new.conversations\":[\"Seit der Erstellung der Bibliothek wurden neue Gespräche hinzugefügt. Generieren Sie die Bibliothek neu, um diese zu verarbeiten.\"],\"/yIxDf\":[\"Neue Funktionen\"],\"QnAEjj\":[\"Neue Funktionen, Verbesserungen und Fehlerbehebungen in dembrane.\"],\"CSz4y/\":[\"Neuer Look, neue Funktionen\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Neues Passwort\"],\"7vhWI8\":[\"Neues Passwort\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"Neuer Bericht\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Neueste zuerst\"],\"hXzOVo\":[\"Weiter\"],\"participant.button.next\":[\"Weiter\"],\"participant.verify.selection.button.next\":[\"Weiter\"],\"participant.verify.instructions.button.next\":[\"Weiter\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Nein\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Keine Aktionen gefunden\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"Keine Audit-Protokolle entsprechen den aktuellen Filtern.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Keine Chats gefunden. Starten Sie einen Chat mit dem \\\"Fragen\\\"-Button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"Keine Sammlungen gefunden\"],\"zsslJv\":[\"Kein Inhalt\"],\"1pZsdx\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"library.no.conversations\":[\"Keine Gespräche verfügbar, um eine Bibliothek zu erstellen\"],\"EtMtH/\":[\"Keine Gespräche gefunden.\"],\"BuikQT\":[\"Keine Gespräche gefunden. Starten Sie ein Gespräch über den Teilnahme-Einladungslink aus der <0><1>Projektübersicht.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"Es wurden keine Unterhaltungen verarbeitet. Dies kann passieren, wenn alle Unterhaltungen bereits im Kontext sind oder nicht den ausgewählten Filtern entsprechen.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Noch keine Gesprache. Sie konnen jetzt einen Bericht planen und Gesprache werden aufgenommen, sobald sie hinzugefugt werden.\"],\"oaDwXD\":[\"Kein Standard festgelegt (Client-verwaltet gilt)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Noch kein Feedback.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"Noch kein neues Feedback erkannt. Bitte fahren Sie mit Ihrer Diskussion fort und versuchen Sie es später erneut.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Noch niemand in der Organisation.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Keine Projekte gefunden \",[\"0\"]],\"y29l+b\":[\"Keine Projekte für den Suchbegriff gefunden\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Noch keine Versionshinweise.\"],\"ctlSnm\":[\"Kein Bericht gefunden\"],\"1iQvuD\":[\"Noch keine Berichte\"],\"Ev2r9A\":[\"Keine Ergebnisse\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"Keine Tags gefunden\"],\"LcBe0w\":[\"Diesem Projekt wurden noch keine Tags hinzugefügt. Fügen Sie ein Tag über die Texteingabe oben hinzu, um zu beginnen.\"],\"KE6RCJ\":[\"Keine Vorlagen für {searchQuery} gefunden\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Kein Transkript verfügbar\"],\"vq+6l+\":[\"Noch kein Transkript für dieses Gespräch vorhanden. Bitte später erneut prüfen.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"Es wurden keine gültigen Audio-Dateien ausgewählt. Bitte wählen Sie nur Audio-Dateien (MP3, WAV, OGG, etc.) aus.\"],\"tNWcWM\":[\"Für dieses Projekt sind keine Verifizierungsthemen konfiguriert.\"],\"pdWSGS\":[\"Keine Verify Themen verfügbar.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"Keine Webhooks konfiguriert\"],\"/PUkCU\":[\"Keine Webhooks gefunden\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Nicht hinzugefügt\"],\"OJx3wK\":[\"Nicht verfügbar\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Teilnehmer benachrichtigen, wenn ein Bericht veröffentlicht wird.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Älteste zuerst\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Sobald Sie diskutiert haben, klicken Sie auf \\\"Überarbeiten\\\", um \",[\"objectLabel\"],\" entsprechend Ihrer Diskussion anzupassen.\"],\"participant.verify.instructions.read.aloud\":[\"Sobald Sie \",[\"objectLabel\"],\" erhalten haben, lesen Sie es laut vor und teilen Sie mit, was Sie gegebenenfalls ändern möchten.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Laufend\"],\"conversation.ongoing\":[\"Laufend\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Ändern Sie diese Einstellung nur in Absprache mit den verantwortlichen Personen für die Datenschutzverantwortung in Ihrer Organisation.\"],\"z7dMhl\":[\"Es können nur Bilder angehängt werden\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Nur Workspace-Administrator*innen können die Rechtsgrundlage ändern.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Ups! Es scheint, dass der Mikrofonzugriff verweigert wurde. Keine Sorge! Wir haben einen praktischen Fehlerbehebungsleitfaden für Sie. Schauen Sie ihn sich an. Sobald Sie das Problem behoben haben, kommen Sie zurück und besuchen Sie diese Seite erneut, um zu überprüfen, ob Ihr Mikrofon bereit ist.\"],\"1TNIig\":[\"Öffnen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Aufzeichnung öffnen\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Fehlerbehebungsleitfaden öffnen\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Öffnen Sie Ihre Authentifizierungs-App und geben Sie den aktuellen 6-stelligen Code ein.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls auf Englisch zurückgegriffen wird)\"],\"V44CS4\":[\"Optionales Feld auf der Startseite\"],\"bkndzy\":[\"Optionales Feld auf der Danksagungsseite\"],\"xam4uE\":[\"Optionale Frage \",[\"0\"],\" von \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Organisationsadmins können privaten Workspaces über die Mitgliederseite beitreten. Zugriffsoptionen erklären jetzt, wann du zuerst einem Workspace beitreten musst.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organisationen, Workspaces und Projekte\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organisiere Arbeit in Workspaces, lade externe Mitwirkende und Beobachter ein und verwalte den Zugriff über die neue Seitenleiste. Verschiebe Gespräche zwischen Projekten und Projekte zwischen Workspaces.\"],\"+g4lbW\":[\"Organisiere deine Arbeit in Organisationen, Workspaces und Projekten und steuere genauer, wer Zugriff hat.\"],\"ucgZ0o\":[\"Organisation\"],\"/IX/7x\":[\"Sonstiges\"],\"x0FjQV\":[\"Unsere erste Hauptversion\"],\"GC75c7\":[\"Ergebnis erfolgreich freigeschaltet!\"],\"QLXrh9\":[\"Ergebnis erfolgreich neu geladen!\"],\"LJg1UW\":[\"Ergebnis erfolgreich überarbeitet!\"],\"df3S+R\":[\"Ergebnis erfolgreich aktualisiert!\"],\"1fjbvD\":[\"Ergebnisse\"],\"ZU3zZC\":[\"Ergebnisse\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Für dieses Projekt überschrieben\"],\"AR/qbs\":[\"Für dieses Projekt überschreiben\"],\"6/dCYd\":[\"Übersicht\"],\"/fAXQQ\":[\"Overview – Themes & Patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Seiteninhalt\"],\"8F1i42\":[\"Seite nicht gefunden\"],\"6+Py7/\":[\"Seitentitel\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Teilnehmer\"],\"h3AUOJ\":[\"Teilnehmer-E-Mail\"],\"WdEzKM\":[\"Teilnehmer-E-Mails\"],\"Uc9fP1\":[\"Teilnehmer-Funktionen\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Teilnehmer-Name und -E-Mail\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Teilnehmende können während der Aufnahme eine Antwort anfordern und sie beim Erscheinen lesen. Hosts können Antworten aktivieren und den Prompt in den Portaleinstellungen anpassen.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Teilnehmende können Ergebnisse prüfen und Antworten verfeinern. Neue Chatmodi und Vorschläge unterstützen die Analyse, und Zwei-Faktor-Authentifizierung ergänzt die Anmeldung.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Teilnehmer können beim Erstellen von Gesprächen Tags auswählen\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Passwort\"],\"zJx6Vx\":[\"Passwort geändert\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwörter stimmen nicht überein\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Vorlesen pausieren\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Ausstehend\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"zmwvG2\":[\"Telefon\"],\"B8mlc2\":[\"Wahlen Sie ein Datum\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Jetzt einen Termin wählen\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Wähl den Ansatz, der zu deiner Frage passt\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Anheften\"],\"u8qC4w\":[\"Projekt anheften\"],\"S+WiJ3\":[\"Vorlagen hier für schnellen Zugriff anheften.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Angeheftet ist voll (max. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Angeheftete Vorlagen\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Bitte erlauben Sie den Mikrofonzugriff, um den Test zu starten.\"],\"SQSc5o\":[\"Bitte prüfen Sie später erneut oder wenden Sie sich an den Projektbesitzer für weitere Informationen.\"],\"T8REcf\":[\"Bitte überprüfen Sie Ihre Eingaben auf Fehler.\"],\"n6oAnk\":[\"Bitte aktivieren Sie die Teilnahme, um das Teilen zu ermöglichen\"],\"fwrPh4\":[\"Bitte geben Sie eine gültige E-Mail-Adresse ein.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch per Text antworten, indem Sie auf das Textsymbol klicken.\\n**Bitte lassen Sie diesen Bildschirm eingeschaltet**\\n(schwarzer Bildschirm = keine Aufnahme)\"],\"Lu1j4b\":[\"Bitte nehmen Sie Ihre Antwort auf, indem Sie unten auf die Schaltfläche \\\"Aufnehmen\\\" klicken. Sie können auch per Text antworten, indem Sie auf das Textsymbol klicken.\\n**Bitte lassen Sie diesen Bildschirm eingeschaltet**\\n(schwarzer Bildschirm = keine Aufnahme).\\nIhre Transkription wird anonymisiert und Ihr Host kann Ihre Aufnahme nicht anhören.\"],\"library.processing.request\":[\"Bibliothek wird verarbeitet\"],\"04DMtb\":[\"Bitte warten Sie, während wir Ihre Hertranskription anfragen verarbeiten. Sie werden automatisch zur neuen Konversation weitergeleitet, wenn fertig.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG oder WebP. Wird zu einem Kreis zugeschnitten.\"],\"jjdudv\":[\"Schlechte Antwort\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Inhalt\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Bereite Sitzungen mit einem bearbeitbaren Host-Leitfaden vor, sammle E-Mail-Adressen und anonymisiere Transkripte. Dieses Update führt auch eigene Logos und automatische Gesprächstitel ein.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Ihre Erfahrung wird vorbereitet\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Vorschau: Der schnelle braune Fuchs springt über den faulen Hund.\"],\"DHhJ7s\":[\"Zurück\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"PDF drucken / speichern\"],\"S8ugMC\":[\"Bericht drucken\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL der Datenschutzerklärung\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Fortfahren\"],\"select.all.modal.proceed\":[\"Fortfahren\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" werden verarbeitet und zu Ihrem Chat hinzugefügt\"],\"gzGDMM\":[\"Ihre Hertranskription anfragen werden verarbeitet...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Projekt- und Gesprächssuche mit QR-Codes im eigenen Design.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projekt erstellt\"],\"zjTrs1\":[\"Projektstandard: aktiviert. Persönliche Informationen werden durch Platzhalter ersetzt. Audiowiedergabe, Download und erneute Transkription werden für das neue Gespräch deaktiviert.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Projekt Meta Zusammenfassung\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Projektname\"],\"3gh0L6\":[\"Projektname und -ID\"],\"6Z2q2Y\":[\"Der Projektname muss mindestens 4 Zeichen lang sein\"],\"n7JQEk\":[\"Projekt nicht gefunden\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Projektübersicht | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Projekt Einstellungen\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projekte\"],\"DK5DV3\":[\"Projekte | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Bieten Sie eine Übersicht über die Hauptthemen und wiederkehrende Themen\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Veröffentlichen\"],\"vsX8VJ\":[\"Veröffentlichen Sie diesen Bericht, um den Portal-Link anzuzeigen\"],\"IHzoSN\":[\"Veröffentlichen Sie diesen Bericht, um einen Freigabelink zu erhalten\"],\"u3wRF+\":[\"Veröffentlicht\"],\"E7YTYP\":[\"Hol dir die wichtigsten Zitate aus dieser Session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Frage\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Bewertung\"],\"wr9IYa\":[\"Neues Passwort erneut eingeben\"],\"0ZBIgY\":[\"Einstellungen aus einem bestehenden Webhook wiederverwenden\"],\"Z5Tlsx\":[\"Kontaktieren Sie mich\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Vorlesen\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Bereit zum Beginn\"],\"ShoKlK\":[\"Bereit, Ihre Werkzeuge zu verbinden? Fügen Sie einen Webhook hinzu, um automatisch Gesprächdaten zu erhalten, wenn Ereignisse auftreten.\"],\"VJScHU\":[\"Grund\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Empfohlene Apps\"],\"participant.button.s3check.reconnect\":[\"Erneut verbinden\"],\"participant.button.interruption.reconnect\":[\"Erneut verbinden\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Aufnehmen\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Ein weiteres Gespräch aufnehmen\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Aufnahmegeräte bleiben zuverlässiger wach. Die Einführung für Teilnehmende, Antwortverfeinerung und Gesprächsauswahl im Specific-Details-Chat erhalten Fehlerbehebungen.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Aufnahme unterbrochen\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Aufnahme pausiert\"],\"/l7qFE\":[\"Aufnahme gestartet\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Ansicht neu erstellen\"],\"view.recreate.modal.title\":[\"Ansicht neu erstellen\"],\"CqnkB0\":[\"Wiederkehrende Themen\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"Referenzen\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Aktualisieren\"],\"ZMXpAp\":[\"Audit-Protokolle aktualisieren\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Neu generieren\"],\"PpFJd2\":[\"Zusammenfassung neu generieren\"],\"bluvj0\":[\"Zusammenfassung neu generieren\"],\"participant.regenerating.outcome\":[\"Ergebnis wird neu generiert\"],\"oYlYU+\":[\"Zusammenfassung wird neu erstellt. Kurz warten ...\"],\"HPitDS\":[\"Registrieren | dembrane\"],\"/PACVa\":[\"Versionshinweise\"],\"Gm7/K+\":[\"Versionshinweise | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Video zur Version: \",[\"0\"]],\"tF5Smn\":[\"Seite neu laden\"],\"participant.button.reload.page.text.mode\":[\"Seite neu laden\"],\"participant.button.reload\":[\"Seite neu laden\"],\"participant.concrete.artefact.action.button.reload\":[\"Neu laden\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Benutzer daran erinnern, vor dem Abschließen zu überprüfen\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Entfernen\"],\"w61W3L\":[[\"0\"],\" entfernen\"],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Profilbild entfernen\"],\"Kl7//J\":[\"E-Mail entfernen\"],\"cILfnJ\":[\"Datei entfernen\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Aus diesem Chat entfernen\"],\"O90CN2\":[\"Logo entfernen\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Überschreibung entfernen\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Umbenennen\"],\"6PsaMr\":[\"Chat umbenennen\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Aufzeichnung\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Antwort Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Bericht\"],\"e/MQa5\":[\"Bericht wird bereits erstellt\"],\"Q3LOVJ\":[\"Problem melden\"],\"DUmD+q\":[\"Bericht erstellt - \",[\"0\"]],\"hh/mvZ\":[\"Berichtserstellung abgebrochen\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Bericht wird erstellt...\"],\"v7O77U\":[\"Die Berichtserstellung wurde abgebrochen. Du kannst unten einen neuen Bericht starten.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Melde Probleme mit Bildern oder Sprache, bewerte Chatantworten und frage einen passenden Tarif an. Lege eine Standardrechtsgrundlage für deinen Workspace fest.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Berichtsbenachrichtigungen\"],\"M9snPp\":[\"Bericht geplant\"],\"6g+4DA\":[\"Meldung gesendet. Danke\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report-Vorlagen stehen auf unserer Roadmap.\"],\"lNo4U2\":[\"Bericht aktualisiert - \",[\"0\"]],\"t9yxlZ\":[\"Berichte\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Zugriff anfordern\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Passwort zurücksetzen anfordern\"],\"8H5nRH\":[\"Passwort zurücksetzen anfordern | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Mikrofonzugriff wird angefragt...\"],\"TMLAx2\":[\"Erforderlich\"],\"0Hf+6m\":[\"Benötigt \\\"E-Mail anfordern?\\\" um aktiviert zu sein\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Umplanen\"],\"6eIR/n\":[\"Umplanen auf\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Zurücksetzen\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"9uplIY\":[\"Passwort zurücksetzen | dembrane\"],\"L+rMC9\":[\"Auf Standard zurücksetzen\"],\"kX8Fjz\":[\"Feedback zur Antwort\"],\"participant.button.stop.resume\":[\"Fortsetzen\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Hertranskribieren\"],\"ehyRtB\":[\"Gespräch hertranskribieren\"],\"1JHQpP\":[\"Gespräch hertranskribieren\"],\"+gmVxi\":[\"Hertranskription nicht verfügbar für anonymisierte Unterhaltungen\"],\"MXwASV\":[\"Hertranskription gestartet. Das neue Gespräch wird bald verfügbar sein.\"],\"6gRgw8\":[\"Erneut versuchen\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Upload erneut versuchen\"],\"2fCpt5\":[\"Zur Startseite\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Überprüfen Sie die Aktivität für Ihren Arbeitsbereich. Filtern Sie nach Sammlung oder Aktion und exportieren Sie die aktuelle Ansicht für weitere Untersuchungen.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Dateien vor dem Hochladen überprüfen\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Überprüfen Sie den Status der Verarbeitung für jedes Gespräch, das in diesem Projekt gesammelt wurde.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Überarbeiten\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Rechtsklick, um hervorzuheben\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Zeilen pro Seite\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Starte die Transkription eines bestehenden Gesprächs erneut. Auch die niederländische Dokumentation wird aktualisiert.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Speichern\"],\"participant.concrete.action.button.save\":[\"Speichern\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Als Vorlage speichern\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Änderungen speichern\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Speichern fehlgeschlagen!\"],\"5dVjYt\":[\"Vorlage speichern\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Speichern...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scannen Sie den QR-Code oder kopieren Sie das Geheimnis in Ihre App.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Scannen, um eine neue Portal-Sitzung zu starten\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Planen\"],\"wCGy0o\":[\"Bericht planen\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Geplante Berichte und eigene Vorlagen\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Nach unten scrollen\"],\"A1taO8\":[\"Suchen\"],\"select.all.modal.loading.search\":[\"Suchen\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Suche und wähle die Gespräche für diesen Chat aus.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Gespräche suchen\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Projekte suchen\"],\"I0hU01\":[\"Projekte suchen\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Projekte suchen...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Tags suchen\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Vorlagen suchen...\"],\"select.all.modal.search.text\":[\"Suchtext:\"],\"nhvuQF\":[\"Webhooks suchen...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Durchsucht die relevantesten Quellen\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Geheimnis\"],\"Y1y+VB\":[\"Geheimnis kopiert\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"Bis bald\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Mikrofon auswählen\"],\"s5OrCL\":[\"Einen Webhook auswählen um zu klonen\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Alle auswählen\"],\"+fRipn\":[\"Alle auswählen (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Wähle alle oder gefilterte Gespräche für den Chat aus und filtere per Klick auf ein Tag. Aufnahme-Uploads werden zuverlässiger, mit klareren Meldungen bei hoher Nachfrage.\"],\"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\"],\"qtJxoV\":[\"Mehrere Gespräche auswählen\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Projekt auswählen\"],\"ekUnNJ\":[\"Tags auswählen\"],\"CG1cTZ\":[\"Wählen Sie die Anweisungen aus, die den Teilnehmern beim Starten eines Gesprächs angezeigt werden\"],\"qxzrcD\":[\"Wählen Sie den Typ der Rückmeldung oder der Beteiligung, die Sie fördern möchten.\"],\"QdpRMY\":[\"Tutorial auswählen\"],\"Dh99yE\":[\"Wahlen Sie bis zu 2 Schwerpunkte fur Ihren Bericht\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Wählen Sie aus, welche Themen Teilnehmer für \\\"Verifizieren\\\" verwenden können.\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Mikrofon auswählen\"],\"gU5H9I\":[\"Ausgewählte Dateien (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Ausgewähltes Mikrofon\"],\"tP/pEQ\":[\"Auswahl zu groß\"],\"select.all.modal.context.limit.reached\":[\"Auswahl zu groß. Einige Gespräche wurden nicht hinzugefügt.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Senden\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Einladung senden\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Meldung senden\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Slack/Teams Benachrichtigungen senden, wenn neue Gespräche abgeschlossen sind\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Sitzungsname\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Einstellungen\"],\"participant.settings.modal.title\":[\"Einstellungen\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Gestalte die Überprüfung von Ergebnissen\"],\"Z8lGw6\":[\"Teilen\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Portal teilen\"],\"OuFYHU\":[\"Bericht teilen\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Mit \",[\"0\"],\" Personen teilen\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Mit gesamtem Workspace teilen\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Teilen Sie hier Ihre Daten\"],\"nnWGzO\":[\"Teilen Sie Ihre Ideen mit unserem Team\"],\"4o0klJ\":[\"Teilen Sie Ihre Stimme, indem Sie den QR-Code scannen\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Beim Teilen eines privaten Projekts mit einem Nichtmitglied wird jetzt eine Einladung statt eines Fehlers angeboten. Der Zugriff wird beim Beitritt zum Arbeitsbereich gewährt.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Kürzeste zuerst\"],\"8vETh9\":[\"Anzeigen\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Audio-Player anzeigen\"],\"pzaNzD\":[\"Daten anzeigen\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"IP-Adressen anzeigen\"],\"6lGV3K\":[\"Weniger anzeigen\"],\"fMPkxb\":[\"Mehr anzeigen\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"QR-Code anzeigen\"],\"3bGwZS\":[\"Referenzen anzeigen\"],\"OV2iSn\":[\"Revisionsdaten anzeigen\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Einladung anzeigen\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[[\"displayFrom\"],\"–\",[\"displayTo\"],\" von \",[\"totalItems\"],\" Einträgen werden angezeigt\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" von \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Ihr zuletzt fertiggestellter Bericht wird angezeigt.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Überspringen\"],\"participant.button.verify_prompt.skip\":[\"Überspringen\"],\"select.all.modal.context.limit.reached.description\":[\"Übersprungen, da die Auswahl zu groß war.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack-Community\"],\"dE/7ox\":[\"Flüssigere Aufnahmen und schnellere Fragen\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Einige Dateien wurden bereits ausgewählt und werden nicht erneut hinzugefügt.\"],\"select.all.modal.skip.disclaimer\":[\"Einige können übersprungen werden (kein Transkript oder Auswahl zu groß).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Etwas blockiert Ihre Verbindung. Ihr Audio wird nicht gespeichert, solange dieses Problem nicht behoben ist.\"],\"nwtY4N\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error.text.mode\":[\"Etwas ist schief gelaufen\"],\"participant.conversation.error\":[\"Etwas ist schief gelaufen\"],\"mwpVVD\":[\"Beim Erstellen Ihres letzten Berichts ist etwas schiefgelaufen.\"],\"2WNFmv\":[\"Beim Erstellen Ihres Berichts ist etwas schiefgelaufen.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Beim Exportieren der Audit-Protokolle ist ein Fehler aufgetreten.\"],\"q9A2tm\":[\"Beim Generieren des Geheimnisses ist ein Fehler aufgetreten.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Beim Gespräch ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut, indem Sie die Schaltfläche <0>Erkunden drücken, oder kontaktieren Sie den Support, wenn das Problem weiterhin besteht.\"],\"fWsBTs\":[\"Etwas ist schief gelaufen. Bitte versuchen Sie es erneut.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Der Inhalt verstößt gegen unsere Richtlinien. Änder den Text und versuch es nochmal.\"],\"f6Hub0\":[\"Sortieren\"],\"/AhHDE\":[\"Quelle \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanisch\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Spezifischer Kontext\"],\"mORM2E\":[\"Konkrete Details\"],\"Etejcu\":[\"Konkrete Details – ausgewählte Gespräche\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Neu starten\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Neues Gespräch starten\"],\"participant.button.start.new.conversation\":[\"Neues Gespräch starten\"],\"i88wdJ\":[\"Neu beginnen\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Starte Aufnahmen ohne doppelte Gespräche, sieh die tatsächliche Startzeit und nutze gespeicherte Fragevorlagen in Ask. Sidebar-Updates zeigen jetzt die Anzahl ungelesener Nachrichten.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stopp\"],\"participant.button.stop\":[\"Beenden\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategische Planung\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Absenden\"],\"participant.button.submit.text.mode\":[\"Absenden\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Erfolg\"],\"aG+cH9\":[\"Dynamische Vorschläge basierend auf Ihrem Gespräch vorschlagen.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Vorgeschlagen:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Zusammenfassen\"],\"5Y4tAB\":[\"Fass dieses Interview als teilbaren Artikel zusammen\"],\"dXoieq\":[\"Zusammenfassung\"],\"+bZY9/\":[\"Zusammenfassung (wenn verfügbar)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Die Zusammenfassung ist verfügbar, sobald das Gespräch transkribiert ist.\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Unterstützte Formate: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Gern\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Zur Texteingabe wechseln\"],\"5dzzI6\":[\"Das Ausschalten ist Teil eines bezahlten Plans.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"Systemstandard\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template übernommen\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Vorlagenname\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Vorlagen\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Textbeiträge und Formulare zur Nachbereitung.\"],\"CPN34F\":[\"Vielen Dank für Ihre Teilnahme!\"],\"u+Whi9\":[\"Danke-Seite Inhalt\"],\"1LLF3Z\":[\"Vielen Dank!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Danke, wir melden uns innerhalb eines Tages.\"],\"2yHHa6\":[\"Der Code hat nicht funktioniert. Versuchen Sie es erneut mit einem neuen Code aus Ihrer Authentifizierungs-App.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Das sieht nicht wie eine E-Mail-Adresse aus.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"Das war's, danke\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"Der Code hat nicht funktioniert, versuch’s nochmal.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"participant.conversation.error.loading\":[\"Das Gespräch konnte nicht geladen werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"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).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"Die erste Hauptversion stellt das Projekt unter die Business Source License 1.1.\"],\"Jo19Pu\":[\"Die folgenden Gespräche wurden automatisch zum Kontext hinzugefügt\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"Die Library bietet klarere Ansichten wiederkehrender Themen. Chatvorlagen bleiben erreichbar, Gespräche erhalten direkte Links und der Uploadstatus ist leichter zu verfolgen.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"Der Bericht kann bis zu 5 Minuten nach der gewählten Zeit starten.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"hTCMdd\":[\"Die Zusammenfassung wird erstellt. Warte, bis sie verfügbar ist.\"],\"+AT8nl\":[\"Die Zusammenfassung wird neu erstellt. Warte, bis sie verfügbar ist.\"],\"9DPC4t\":[\"Die Dankeseite endet mit einer Karte, die Teilnehmende einlädt, ein eigenes Event mit dembrane durchzuführen.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"Die Webhook-URL und Ereignisse werden geklont. Sie müssen das Geheimnis erneut eingeben, wenn eines konfiguriert wurde.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Design\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"Beim Klonen Ihres Projekts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"JDFjCg\":[\"Beim Erstellen Ihres Berichts ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"Diese Unterhaltungen wurden aufgrund fehlender Transkripte ausgeschlossen.\"],\"8xYB4s\":[\"Diese Standard-Ansichtsvorlagen werden generiert, wenn Sie Ihre erste Bibliothek erstellen.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Denke nach...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Dies kann passieren, wenn ein VPN oder eine Firewall die Verbindung blockiert. Versuchen Sie, Ihr VPN zu deaktivieren, zu einem anderen Netzwerk zu wechseln (z. B. mobiler Hotspot) oder wenden Sie sich an Ihre IT-Abteilung.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Dieses Gespräch hat die folgenden Kopien:\"],\"conversation.linking_conversations.description\":[\"Dieses Gespräch ist eine Kopie von\"],\"SzU1mG\":[\"Diese E-Mail ist bereits in der Liste.\"],\"participant.modal.refine.info.available.in\":[\"Diese Funktion wird in \",[\"remainingTime\"],\" Sekunden verfügbar sein.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Diese Informationen sind anonymisiert\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Dies ist eine Live-Vorschau des Teilnehmerportals. Sie müssen die Seite aktualisieren, um die neuesten Änderungen zu sehen.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"Dies ist ein Beispiel für die JSON-Daten, die an Ihre Webhook-URL gesendet werden, wenn ein Gespräch zusammengefasst wird.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Hier ist Verarbeitung auf Basis von Einwilligung festgelegt, aber ohne Link zur Datenschutzerklärung. Fügen Sie einen hinzu, damit die Einstellung gültig bleibt: Teilnehmende müssen die Datenschutzerklärung lesen können.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"Bibliothek\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Diese Sprache wird für das Teilnehmerportal verwendet.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Dieses Portal nimmt derzeit keine neuen Sitzungen an.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Dieses Projekt folgt dann der übernommenen Einstellung: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"Dieser Prompt leitet ein, wie die KI auf die Teilnehmer reagiert. Passen Sie ihn an, um den Typ der Rückmeldung oder Engagement zu bestimmen, den Sie fördern möchten.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"Dieser Bericht ist derzeit nicht verfügbar. \"],\"GQTpnY\":[\"Dieser Bericht wurde von \",[\"0\"],\" Personen geöffnet\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Dieser Titel wird den Teilnehmern angezeigt, wenn sie ein Gespräch beginnen\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"Dies wird Ihre aktuelle Eingabe löschen. Sind Sie sicher?\"],\"NrRH+W\":[\"Dies wird eine Kopie des aktuellen Projekts erstellen. Nur Einstellungen und Tags werden kopiert. Berichte, Chats und Gespräche werden nicht in der Kopie enthalten. Sie werden nach dem Klonen zum neuen Projekt weitergeleitet.\"],\"hsNXnX\":[\"Dies wird ein neues Gespräch mit derselben Audio-Datei erstellen, aber mit einer neuen Transkription. Das ursprüngliche Gespräch bleibt unverändert.\"],\"add.tag.filter.modal.info\":[\"Dies filtert die Unterhaltungsliste, um Unterhaltungen mit diesem Tag anzuzeigen.\"],\"participant.concrete.regenerating.artefact.description\":[\"Wir erstellen dein Artefakt neu. Das kann einen Moment dauern.\"],\"participant.concrete.loading.artefact.description\":[\"Wir laden dein Artefakt. Das kann einen Moment dauern.\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"Dieser Arbeitsbereich hat seine Aufnahmestunden verbraucht. Upgrade, um Sprache weiter zu nutzen.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Daumen runter\"],\"Nuw8ty\":[\"Daumen hoch\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Uhrzeit\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Zeitstempel\"],\"XSqo4Y\":[\"Zeitstempel und Dauer\"],\"rm2Cxd\":[\"Tipp\"],\"fEocaE\":[\"Tipp: Verwenden Sie den Play-Button (▶), um einen Test-Payload an Ihren Webhook zu senden und zu überprüfen, ob er korrekt funktioniert.\"],\"Zb3ANR\":[\"Tipp: Sie können auch eine Vorlage aus jeder gesendeten Chat-Nachricht erstellen oder eine bestehende Vorlage duplizieren.\"],\"MHrjPM\":[\"Titel\"],\"1xkgU6\":[\"Titel automatisch generiert\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Um uns zu helfen, darauf zu reagieren, versuchen Sie anzugeben, wo es passiert ist und was Sie versucht haben zu tun. Bei Fehlern, sagen Sie uns, was schiefgelaufen ist. Bei Ideen, sagen Sie uns, welches Bedürfnis es für Sie lösen würde.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Zu groß\"],\"yIsdT7\":[\"Zu lang\"],\"qgwLj6\":[\"Zu lang oder unklar\"],\"lcsUaI\":[\"Zu viele Meldungen. Warten Sie ein paar Minuten und versuchen Sie es erneut\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Thema erfolgreich erstellt\"],\"Sawj4V\":[\"Thema erfolgreich gelöscht\"],\"xcp3ny\":[\"Themenbezeichnung\"],\"vQoAht\":[\"Thema erfolgreich aktualisiert\"],\"th8cMZ\":[\"Thematischer Titel, der beschreibt, was besprochen wurde\"],\"sFMBP5\":[\"Themen\"],\"ONchxy\":[\"gesamt\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Ein Gespräch erneut transkribieren\"],\"fp5rKh\":[\"Transcribieren...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transkript\"],\"5jqJzi\":[\"Transkriptanonymisierung und Einstellungen für erneute Transkription arbeiten konsistenter. Die Aufnahmedauer bleibt nach Pausieren und Fortsetzen korrekt.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transkript in die Zwischenablage kopiert\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transformieren Sie diesen Inhalt in Einblicke, die wirklich zählen. Bitte:\\nExtrahieren Sie die wichtigsten Ideen, die Standarddenken herausfordern\\nSchreiben Sie wie jemand, der Nuance versteht, nicht wie ein Lehrplan\\nFokussieren Sie sich auf nicht offensichtliche Implikationen\\nHalten Sie es scharf und substanziell\\nHervorheben Sie wirklich bedeutende Muster\\nStrukturieren Sie für Klarheit und Wirkung\\nHalten Sie die Tiefe mit der Zugänglichkeit im Gleichgewicht\\n\\nHinweis: Wenn die Ähnlichkeiten/Unterschiede zu oberflächlich sind, lassen Sie es mich wissen, wir brauchen komplexeres Material zu analysieren.\"],\"uK9JLu\":[\"Transformieren Sie diese Diskussion in handlungsfähige Intelligenz. Bitte:\\nErfassen Sie die strategischen Implikationen, nicht nur die Punkte\\nStrukturieren Sie es wie eine Analyse eines Denkers, nicht Minuten\\nHervorheben Sie Entscheidungspunkte, die Standarddenken herausfordern\\nHalten Sie das Signal-Rausch-Verhältnis hoch\\nFokussieren Sie sich auf Einblicke, die tatsächlich Veränderung bewirken\\nOrganisieren Sie für Klarheit und zukünftige Referenz\\nHalten Sie die Taktik mit der Strategie im Gleichgewicht\\n\\nHinweis: Wenn die Diskussion wenig wichtige Entscheidungspunkte oder Einblicke enthält, markieren Sie sie für eine tiefere Untersuchung beim nächsten Mal.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Automatisierte Workflows in Tools wie Zapier, Make oder n8n auslösen\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Frag mal\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Versuchen Sie, etwas näher an Ihren Mikrofon zu sein, um bessere Audio-Qualität zu erhalten.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Verwandle Gespräche in Live-Folien. Starte eine Live-Sitzung oder eine Analyse bei Bedarf, präsentiere der Gruppe und verfolge Erkenntnisse bis zu ihren Quellen.\"],\"portal.anonymization.disable.confirm\":[\"Ausschalten\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Anonymisierung ausschalten?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Verwandle die Gespräche deines Projekts in Live-Folien für den Raum.\\n\\n- Verfolge neue Themen, während Menschen miteinander sprechen.\\n- Präsentiere Erkenntnisse und prüfe die Gespräche dahinter.\\n- Starte eine Live-Sitzung oder eine Auswertung bei Bedarf.\\n\\nAußerdem: neue Chatvorlagen, Agentenverbindungen und Verbesserungen für Mobilgeräte.\"],\"portal.anonymization.disable.warning\":[\"Das Deaktivieren der Anonymisierung während laufender Aufnahmen kann unbeabsichtigte Folgen haben. Aktive Gespräche werden auch während der Aufnahme betroffen. Bitte verwenden Sie dies mit Vorsicht.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Zwei-Faktor-Authentifizierung\"],\"NwChk2\":[\"Zwei-Faktor-Authentifizierung deaktiviert\"],\"qwpE/S\":[\"Zwei-Faktor-Authentifizierung aktiviert\"],\"+zy2Nq\":[\"Typ\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Nachricht eingeben oder / für Vorlagen drücken...\"],\"EvmL3X\":[\"Geben Sie hier Ihre Antwort ein\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainisch (nur ECHO-Funktionen, Transkription und Zusammenfassungen)\"],\"MksxNf\":[\"Audit-Protokolle konnten nicht geladen werden.\"],\"participant.outcome.error.title\":[\"Ergebnis kann nicht geladen werden\"],\"59QK2U\":[\"Das generierte Ergebnis konnte nicht geladen werden. Bitte versuchen Sie es erneut.\"],\"nGxDbq\":[\"Dieser Teil kann nicht verarbeitet werden\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Rückgängig\"],\"Ef7StM\":[\"Unbekannt\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unbekannter Grund\"],\"nWMRxa\":[\"Loslösen\"],\"vSdeRU\":[\"Löse zuerst ein Projekt (max. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Löse zuerst ein Projekt (max. 3)\"],\"dx+iaL\":[\"Projekt lösen\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Ungespeicherte Änderungen\"],\"SMaFdc\":[\"Abmelden\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Unbenanntes Gespräch\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Unbenannter Bericht\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Höchstens \",[\"MAX_FILES\"],\" Bilder\"],\"lLehih\":[\"Bis zu \",[\"MAX_MESSAGE_CHARS\"],\" Zeichen\"],\"ia8YsC\":[\"Demnächst\"],\"EkH9pt\":[\"Aktualisieren\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Avatar hochladen\"],\"kV3A2a\":[\"Hochladen abgeschlossen\"],\"4Fr6DA\":[\"Gespräche hochladen\"],\"pZq3aX\":[\"Hochladen fehlgeschlagen. Bitte versuchen Sie es erneut.\"],\"HAKBY9\":[\"Dateien hochladen\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Audio-Dateien werden hochgeladen...\"],\"participant.modal.uploading\":[\"Audio wird hochgeladen...\"],\"participant.modal.interruption.uploading\":[\"Audio wird hochgeladen...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL ist erforderlich\"],\"3VnYUR\":[\"URL muss mit http:// oder https:// beginnen\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Übernommenen Standard verwenden\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Nutze Italienisch für Chat, Berichte, Transkription und Einführungskarten für Teilnehmende. Eine vollständige Übersetzung der Oberfläche war nicht Teil dieser Version.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Verwenden Sie Shift + Enter, um eine neue Zeile hinzuzufügen\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Webhooks verwenden? Wir würden gerne von Ihnen hören\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Erinnerung zur Verifizierung\"],\"participant.banner.verification_required\":[\"Verifizierung erforderlich\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verifiziert\"],\"select.all.modal.loading.verified\":[\"Verifiziert\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verifiziert\"],\"Iv1iWN\":[\"verifizierte Artefakte\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verifizieren\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verifizieren\"],\"participant.echo.verify\":[\"Verifizieren\"],\"4LFZoj\":[\"Code verifizieren\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Ergebnisse prüfen und Antworten verfeinern\"],\"w6Mgbs\":[\"Verify Themen\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Ansicht\"],\"SZw9tS\":[\"Details anzeigen\"],\"95YFbG\":[\"Beispiel-Payload anzeigen\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Versionshinweise ansehen\"],\"D4e7re\":[\"Ihre Antworten anzeigen\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Warten auf den Abschluss der Gespräche, bevor ein Bericht erstellt wird.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Das auch bei Ihrem Event?\"],\"q7LnaV\":[\"Möchten Sie ein Event mit dembrane durchführen?\"],\"La34Yq\":[\"Möchten Sie dembrane bei Ihrem nächsten Event einsetzen?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Sieh dir das Video als Einführung in Organisationen, Workspaces und Projekte an.\"],\"participant.alert.microphone.access.issue\":[\"Wir können Sie nicht hören. Bitte versuchen Sie, Ihr Mikrofon zu ändern oder ein wenig näher an das Gerät zu kommen.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht deaktivieren. Versuchen Sie es erneut mit einem neuen Code.\"],\"sM2pBB\":[\"Wir konnten die Zwei-Faktor-Authentifizierung nicht aktivieren. Überprüfen Sie Ihren Code und versuchen Sie es erneut.\"],\"mW8QSA\":[\"Wir konnten die gesuchte Seite nicht finden. Möglicherweise wurde sie verschoben.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"Wir benötigen etwas mehr Kontext, um Ihnen zu helfen, ECHO effektiv zu nutzen. Bitte setzen Sie die Aufzeichnung fort, damit wir bessere Vorschläge machen können.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Wir melden uns innerhalb eines Tages. Möchten Sie lieber selbst einen Termin wählen?\"],\"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.\"],\"FXjsEJ\":[\"Wir hören gerne von Ihnen. Ob Sie eine Idee für etwas Neues haben, eine Übersetzung entdeckt haben, die nicht passt, oder einfach erzählen möchten, wie es läuft. Einen Fehler gefunden? Nutzen Sie <0>Problem melden, um ihn mit Screenshots zu senden.\"],\"XolQc4\":[\"Wir hören gerne von Ihnen. Ob Sie eine Idee für etwas Neues haben, eine Übersetzung entdeckt haben, die nicht passt, oder einfach erzählen möchten, wie es läuft. Einen Fehler gefunden? Nutzen Sie Problem melden in der Seitenleiste, um ihn mit Screenshots zu senden.\"],\"participant.test.microphone.description\":[\"Wir testen Ihr Mikrofon, um sicherzustellen, dass jeder in der Sitzung die beste Erfahrung hat.\"],\"+eLc52\":[\"Wir hören einige Stille. Versuchen Sie, lauter zu sprechen, damit Ihre Stimme deutlich klingt.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks sind automatisierte Nachrichten, die von einer App zu einer anderen gesendet werden, wenn etwas passiert. Denken Sie daran, sie als eine \\\"Benachrichtigungssystem\\\" für Ihre anderen Tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Willkommen\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Willkommen bei dembrane!\"],\"u4aLOz\":[\"Willkommen im Übersichtmodus! Ich hab Zusammenfassungen von all deinen Gesprächen geladen. Frag mich nach Mustern, Themen und Insights in deinen Daten. Für genaue Zitate start eine neue Chat im Modus „Genauer Kontext“.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Willkommen!\"],\"RL57XM\":[\"Was sind Webhooks? (2 min Lesezeit)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"Welche Daten werden gesendet?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"Was möchten Sie verifizieren?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Was ist passiert? Fügen Sie hier einen Screenshot ein, um ihn anzuhängen\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"Was soll ECHO aus den Gesprächen analysieren oder generieren?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"Was lief schief?\"],\"qGrqH9\":[\"Was waren die Schlüsselmomente in diesem Gespräch?\"],\"FXZcgH\":[\"Was willst du dir anschauen?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"Wenn aktiviert, werden alle neuen Transkripte persönliche Informationen (Namen, E-Mails, Telefonnummern, Adressen) durch Platzhalter ersetzt. Anonymisierte Unterhaltungen deaktivieren auch die Audio-Wiedergabe, den Audio-Download und die Hertranskription, um die Privatsphäre der Teilnehmer zu schützen. Dies kann für bereits verarbeitete Gespräche nicht rückgängig gemacht werden.\"],\"MEmr1I\":[\"Wenn das Gespräch abgeschlossen wird, werden Teilnehmer, die noch nicht verifiziert haben, aufgefordert, zu verifizieren oder zu überspringen\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"Wann soll der Bericht erstellt werden?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"Wenn die Zusammenfassung bereit ist (beinhaltet Transkript und Zusammenfassung)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"wird in Ihrem Bericht enthalten sein\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Arbeite mit dem neuen Gesprächsassistenten, verfolge Sitzungen im Live-Monitor und nutze die überarbeitete Transkriptionsverarbeitung.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Workspace / Projekt\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Workspace-Standard\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Workspace-Einstellungen\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Möchten Sie dieses Tag zu Ihren aktuellen Filtern hinzufügen?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Schreibe eigene Prüfaufforderungen, erzeuge Ergebnisse in der Projektsprache und erinnere Teilnehmende vor dem Abschluss an die Überprüfung. Konfiguriere Einstellungen je Rechtsgrundlage.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Falsche Sprache oder Tonfall\"],\"MNTYHt\":[\"Falsche Quellen\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Sie\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Sie sind bereits abgemeldet oder Ihre Verknüpfung ist ungültig.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"Du kannst das später in den Arbeitsbereich-Einstellungen ändern, nachdem du deine Rechnungsdaten hinzugefügt hast.\"],\"uGP87g\":[\"Du kannst das später in den Arbeitsbereich-Einstellungen ändern.\"],\"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.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"Sie können es unten erneut versuchen.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"Sie haben bereits <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" Unterhaltung\"],\"other\":[\"#\",\" Unterhaltungen\"]}],\" zu diesem Chat hinzugefügt.\"],\"7W35AW\":[\"Sie haben bereits alle damit verbundenen Unterhaltungen hinzugefügt\"],\"participant.modal.change.mic.confirmation.text\":[\"Sie haben Ihr Mikrofon geändert. Bitte klicken Sie auf \\\"Weiter\\\", um mit der Sitzung fortzufahren.\"],\"T/Q7jW\":[\"Sie haben sich erfolgreich abgemeldet.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Sie haben noch keine Ergebnisse verifiziert. Möchten Sie vor dem Abschluss verifizieren?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"Sie können auch wählen, ein weiteres Gespräch aufzunehmen.\"],\"yCtSKg\":[\"Sie müssen sich mit demselben Anbieter anmelden, mit dem Sie sich registriert haben. Wenn Sie auf Probleme stoßen, wenden Sie sich bitte an den Support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Sie scheinen offline zu sein. Bitte überprüfen Sie Ihre Internetverbindung\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Sie erhalten bald \",[\"objectLabel\"],\" zur Verifizierung.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"sie@beispiel.de\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Ihre Genehmigung hilft uns zu verstehen, was Sie wirklich denken!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Ihre E-Mail-Adresse\"],\"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.\"],\"vaTeZ3\":[\"Ihr Feedback und diese Antwort gehen an das dembrane-Team.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Ihre Eingaben werden automatisch gespeichert.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Die Erstellung deines neuesten Berichts wurde abgebrochen. Dein letzter abgeschlossener Bericht wird angezeigt.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Ihr Name\"],\"VSneAo\":[\"Ihr Name, Ihre E-Mail-Adresse und die aktuelle Seite werden mitgesendet, damit wir nachfragen können.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen.\"],\"DrJCbp\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen. Sie können auch ein weiteres Gespräch aufnehmen oder den QR-Code teilen, damit andere beitragen können.\"],\"7i36j4\":[\"Ihre Antwort wurde aufgezeichnet. Sie können diesen Tab jetzt schließen. Sie können auch den QR-Code teilen, damit andere beitragen können, oder ein weiteres Gespräch aufnehmen.\"],\"wurHZF\":[\"Ihre Antworten\"],\"B8Q/i2\":[\"Ihre Ansicht wurde erstellt. Bitte warten Sie, während wir die Daten verarbeiten und analysieren.\"],\"library.views.title\":[\"Ihre Ansichten\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/en-US.po b/echo/frontend/src/locales/en-US.po index 9cd4c130..b4bcf9f0 100644 --- a/echo/frontend/src/locales/en-US.po +++ b/echo/frontend/src/locales/en-US.po @@ -53,6 +53,16 @@ msgstr "Preparing your dashboard" msgid "Welcome back" msgstr "Welcome back" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:542 +#~ msgid "participant.button.back.microphone" +#~ msgstr "Back" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:446 +#~ msgid "participant.mic.check.button.skip" +#~ msgstr "Skip" + #: src/components/popcorn/PopcornStatus.tsx:45 msgid " · {heldBack} held back" msgstr " · {heldBack} held back" @@ -2088,13 +2098,8 @@ msgid "Back" msgstr "Back" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:542 -msgid "participant.button.back.microphone" -msgstr "Back" - -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:567 -#: src/components/layout/ParticipantHeader.tsx:87 +#: src/components/participant/ParticipantOnboardingCards.tsx:419 +#: src/components/layout/ParticipantHeader.tsx:90 msgid "participant.button.back" msgstr "Back" @@ -2381,7 +2386,7 @@ msgid "participant.concrete.action.button.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:97 +#: src/components/layout/ParticipantHeader.tsx:100 msgid "participant.concrete.instructions.button.cancel" msgstr "Cancel" @@ -3038,14 +3043,13 @@ msgid "Continue" msgstr "Continue" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:554 -#: src/components/participant/MicrophoneTest.tsx:414 -msgid "participant.button.continue" +#: src/components/participant/ParticipantInitiateForm.tsx:336 +msgid "participant.ready.to.begin.button.text" msgstr "Continue" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:336 -msgid "participant.ready.to.begin.button.text" +#: src/components/participant/MicrophoneTest.tsx:414 +msgid "participant.button.continue" msgstr "Continue" #: src/routes/organisation/OrganisationRoute.tsx:1629 @@ -7275,7 +7279,7 @@ msgid "Next" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:584 +#: src/components/participant/ParticipantOnboardingCards.tsx:436 msgid "participant.button.next" msgstr "Next" @@ -9276,7 +9280,7 @@ msgid "Reads every 2 minutes. Refresh reads now." msgstr "Reads every 2 minutes. Refresh reads now." #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:418 +#: src/components/participant/ParticipantOnboardingCards.tsx:313 msgid "participant.ready.to.begin" msgstr "Ready to Begin?" @@ -10766,8 +10770,8 @@ msgstr "Setting up" #: src/features/sidebar/views/org/OrgSettingsView.tsx:31 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 -#: src/components/layout/ParticipantHeader.tsx:121 -#: src/components/layout/ParticipantHeader.tsx:122 +#: src/components/layout/ParticipantHeader.tsx:124 +#: src/components/layout/ParticipantHeader.tsx:125 msgid "Settings" msgstr "Settings" @@ -10810,8 +10814,8 @@ msgstr "Share invite links as an alternative to email invitations." msgid "Share link" msgstr "Share link" -#: src/components/layout/ParticipantHeader.tsx:111 -#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:114 +#: src/components/layout/ParticipantHeader.tsx:115 msgid "Share portal" msgstr "Share portal" @@ -11026,11 +11030,6 @@ msgstr "Skip" msgid "participant.button.verify_prompt.skip" msgstr "Skip" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:446 -msgid "participant.mic.check.button.skip" -msgstr "Skip" - #. js-lingui-explicit-id #: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" diff --git a/echo/frontend/src/locales/en-US.ts b/echo/frontend/src/locales/en-US.ts index b8651f5d..5a1dae2c 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\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message from dembrane\"],\"other\":[\"Messages from dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" isn't in this workspace yet.\"],\"RZUJFH\":[[\"0\"],\" isn't in this workspace yet. Ask a workspace admin to invite this collaborator.\"],\"iOmAhc\":[[\"0\"],\" isn't in this workspace yet. Send them a workspace invite and share this project when they join.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" people aren't in this workspace yet.\"],\"E6f0Mh\":[[\"0\"],\" people aren't in this workspace yet. Ask a workspace admin to invite them.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" views\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" people were already invited. The project is shared once they join.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" already has a pending invite for another project. Share this project once they join.\"],\"zB7Coe\":[[\"email\"],\" was added to the pending list but the invite email could not be sent. Resend it from Members.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invites sent. The project is shared once they join.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"A more reliable audio upload experience\"],\"XPY0OE\":[\"A new assistant and a live monitor\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"sy1BvY\":[\"A participant portal for recording conversations.\"],\"zm7GU7\":[\"A privacy policy link is required for consent-based processing. It must start with http:// or https:// and be at most 255 characters.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"A smoother conversation workspace\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Account default\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Add conversations to chat context, use improved question templates, and work with updated transcription options. Supporting quotes and translations receive fixes.\"],\"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.\"],\"5phU36\":[\"Add images\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"uqLJli\":[\"Add people by email. Anyone not in the workspace yet gets an invite and access to this project when they join.\"],\"1G8+6T\":[\"Add people by email. Anyone not in this workspace yet gets a workspace invite, and the project is shared with them when they join.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"QKlADn\":[\"Added \",[\"0\"],\" people\"],\"z9TWoF\":[\"Added \",[\"granted\"],\" people\"],\"q+wngh\":[\"Added and shared\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"All releases on GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"All years\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Already invited. The project is shared once they join.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"Dzr23X\":[\"Announcements\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Anything else?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Ask a workspace admin to invite this collaborator.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Audio processing and uploads are more robust, and the conversation list shows clearer totals.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio Tip\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"WI8FHU\":[\"Automatically select relevant conversations for chat and follow source citations. Subscribe to report notifications and work with improved audio and text uploads.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"9aZHfH\":[\"Back to settings\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"g7YpV4\":[\"Before this release history\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Better feedback, easier follow-up\"],\"5DnJa6\":[\"Better recordings, more ways to reply\"],\"9GKCNF\":[\"Better uploads, transcripts and discovery\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Book a call with us\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Bug fixes\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Cancel override\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat with individual conversations.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Chats get automatic titles, and conversation context includes dates and durations. Jump to the latest message and use a clearer audio upload flow.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Chats set to Czech now answer in Czech instead of English.\"],\"gLvHXQ\":[\"Check and select your microphone before recording, see audio quality indicators, and use improved multilingual transcription. Choose summary, brainstorming or custom reply modes.\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"WQUm5N\":[\"Check the text and images, then try again\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Choose discoverable, invite-only or private workspaces. Organisation members load faster, uploads return you to your conversations, and automatic summaries and merging are more reliable.\"],\"okLwd9\":[\"Choose from your other projects\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Clearer sources in chat\"],\"xOlaOX\":[\"Clearer workspace access for admins\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"EhtOYz\":[\"Consent-based processing is active without a privacy policy link. Add one where the legal basis is set: participants must be able to read the privacy policy.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Conversation citations now appear together under one Sources heading. The feedback form can prefill your email address.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Conversation pages and data loading are streamlined. Automatic conversation selection leaves more room for answers, and announcements generate fewer repeated notifications.\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Conversation summaries no longer get stuck in the affected processing cases. Conversations paused by free-plan limits are picked up after an upgrade.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Conversation tags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Could not save feedback\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Could not send the report. Try again\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Couldn't revoke invite\"],\"LPY4VY\":[\"Couldn't send invite\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Create Library\"],\"bUyyzw\":[\"Create multiple reports per project and guide their writing with your own instructions. Scheduled reports (beta) include all conversations recorded before the scheduled time. Create, save and pin custom chat templates (beta). This release also adds project pinning, profile settings and Ukrainian chat support.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Czech conversations, Czech answers\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"ItMGda\":[\"Date range\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Deleted projects and conversations paused by plan limits no longer trigger repeated summary attempts.\"],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane at your event?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"dembrane event invitation\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot was our earlier project. Thank you to the hosts, participants and contributors who helped shape it.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Describe the issue\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Determines under which GDPR legal basis personal data is processed for this project.\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Done, reach out to me\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"N8MP2s\":[\"Download audio and organise conversations\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Download conversation audio, add tags from the dashboard, and use summaries that adapt to the conversation. Editing and portal preview fixes are included.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Edit reports directly\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Edit reports yourself, check microphones more clearly in the portal, and see better loading states and error messages.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"B7flm8\":[\"Explore recurring themes in the Library\"],\"EebTQD\":[\"Explore stories and perspectives with the Narratives chat template, in English and Dutch.\"],\"HNnM2X\":[\"Explore the dembrane/pilot archive\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Failed to reschedule. Please choose a time further in the future and try again.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"2roTVj\":[\"Feedback sent\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filter releases by year\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"SdZBYB\":[\"Find the right conversations for your question\"],\"oRQsgh\":[\"Find workspaces and keep conversations moving\"],\"p2j2po\":[\"Find your place in chat\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Get a reply during a conversation\"],\"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.\"],\"Pl6LQ+\":[\"Get in touch\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Good response\"],\"76gPWk\":[\"Got it\"],\"hjZBYK\":[\"Got two minutes? Five optional questions help us prepare.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"hide the dembrane event invitation\"],\"V3NvRL\":[\"Hiding the dembrane event invitation comes with a paid plan.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Highlight\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Host\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Host's feedback\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"I understand\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"If what you've spotted involves data visible to the wrong people, someone having access they shouldn't, or a possible security vulnerability, please use our <0>security reporting form instead. It reaches a different team on a faster track. For anything urgent, email <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Images must be under \",[\"MAX_FILE_MB\"],\"MB\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Improvements\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Incorrect or made up\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Introducing Popcorn\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invite sent to \",[\"email\"],\". The project is shared once they join.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invite sent. The project is shared once they join.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invite to workspace and share\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"1BIvTp\":[\"Italian for your core workflows\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Join this portal session\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Keep recordings awake\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Keep working while audio uploads, search your tags, and see transcription progress. Improved audio playback and smarter conversation selection make analysis easier.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Latest\"],\"lchnsl\":[\"Latest release\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"J8VWes\":[\"Leave your email so we can get in touch with you.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Legal basis\"],\"vRXsmZ\":[\"Legal Basis\"],\"CopiEV\":[\"Legal basis saved\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Link to the privacy policy shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Loading\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"MCP connections let your agent find projects, search conversations, read transcripts and consult documentation, with organisation controls and explicit consent.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"azjxk1\":[\"Missed the question\"],\"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\"],\"f8jrkd\":[\"more\"],\"2FYpfJ\":[\"More\"],\"JcD7qf\":[\"More actions\"],\"rAPyBz\":[\"More dependable anonymisation and recording\"],\"MmhZK+\":[\"More reliable conversation summaries\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"More useful chat context\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"New conversations added since this report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"/yIxDf\":[\"New features\"],\"QnAEjj\":[\"New features, improvements and fixes in dembrane.\"],\"CSz4y/\":[\"New look, new features\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"oaDwXD\":[\"No default set (client-managed applies)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"No feedback yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"No one on the organisation yet.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"No release notes yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"z7dMhl\":[\"Only images can be attached\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Only workspace admins can change the legal basis.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Open replay\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"xam4uE\":[\"Optional question \",[\"0\"],\" of \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Organisation admins can join private workspaces from the members page. Access controls now explain when you need to join a workspace first.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organisations, workspaces and projects\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organise work in workspaces, invite external collaborators and observers, and manage access from the new sidebar. Move conversations between projects and projects between workspaces.\"],\"+g4lbW\":[\"Organise your work in organisations, workspaces and projects, with clearer control over who has access.\"],\"ucgZ0o\":[\"Organization\"],\"/IX/7x\":[\"Other\"],\"x0FjQV\":[\"Our first major release\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Overridden for this project\"],\"AR/qbs\":[\"Override for this project\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Participants can request a reply while recording and read it as it arrives. Hosts can enable replies and customise the prompt in portal settings.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Participants can verify outcomes and refine replies. New chat modes and suggestions support analysis, and two-factor authentication adds another sign-in option.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Pick a date\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Pick a time now\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording)\"],\"Lu1j4b\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"jjdudv\":[\"Poor response\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Prepare sessions with an editable host guide, collect participant emails, and anonymise transcripts. This update also introduces custom logos and automatic conversation titles.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"DHhJ7s\":[\"Previous\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"Privacy Policy URL\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Project and conversation search, with branded QR codes.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Question\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Rating\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"Z5Tlsx\":[\"Reach out to me\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Recording devices stay awake more reliably. Participant onboarding, reply refinement and conversation selection in Specific Details chat receive fixes.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"/l7qFE\":[\"Recording started\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"References\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"/PACVa\":[\"Release notes\"],\"Gm7/K+\":[\"Release notes | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Release video: \",[\"0\"]],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Remove override\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Replay\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Report issues with images or voice, rate chat responses, and request a plan that fits your needs. Set a default legal basis for your workspace.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"6g+4DA\":[\"Report sent. Thank you\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"kX8Fjz\":[\"Response feedback\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Return home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Rows per page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Run transcription again for an existing conversation. Dutch documentation is also updated.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Saving...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Scan to start a new portal session\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Scheduled reports and custom templates\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Select all or filtered conversations for chat and filter by clicking a tag. Recording uploads are more reliable, with clearer messages during high demand.\"],\"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\"],\"qtJxoV\":[\"Select multiple conversations\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"Dh99yE\":[\"Select up to 2 focus areas for your report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Send report\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Shape how participants verify outcomes\"],\"Z8lGw6\":[\"Share\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Share portal\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Share with \",[\"0\"],\" people\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Share with whole workspace\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Sharing a private project with a non-member now offers an invitation instead of an error, granting access when they join the workspace.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Show QR Code\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Show the invitation\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"kZ0hFY\":[\"Showing \",[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" of \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"dE/7ox\":[\"Smoother recording and quicker questions\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanish\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Start recording without duplicate conversations, see the actual recording time, and use saved question templates from Ask. Sidebar updates now show an unread count.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Sure\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"5dzzI6\":[\"Switching it off comes with a paid plan.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"System default\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Text contributions and follow-up forms.\"],\"CPN34F\":[\"Thank you for participating!\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Thanks, we will be in touch within a day.\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"That does not look like an email address.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"That's all, thanks\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"The first major release establishes the project under the Business Source License 1.1.\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"The Library gains clearer views of recurring themes. Chat templates stay within reach, conversations have direct links, and upload status is easier to follow.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"The thank you page ends on a card inviting participants to run their own event with dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"This is set to consent-based processing without a privacy policy link. Add one to keep this setting valid: participants must be able to read the privacy policy.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"This portal is not accepting new sessions right now.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"This project will follow the inherited setting instead: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Thumbs down\"],\"Nuw8ty\":[\"Thumbs up\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Time\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"qgwLj6\":[\"Too long or unclear\"],\"lcsUaI\":[\"Too many reports. Wait a few minutes and try again\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Transcribe a conversation again\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"5jqJzi\":[\"Transcript anonymisation and retranscription settings now work more consistently. Recording duration stays accurate after pausing and resuming.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Turn conversations into live slides. Run a live session or an on-demand analysis, present to the room and trace insights to their sources.\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Turn your project's conversations into live slides for the room.\\n\\n- Follow emerging themes as people talk.\\n- Present insights and check the conversations behind them.\\n- Start a live session or run an analysis when you need it.\\n\\nPlus: new chat templates, agent connections and mobile improvements.\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Up to \",[\"MAX_FILES\"],\" images\"],\"lLehih\":[\"Up to \",[\"MAX_MESSAGE_CHARS\"],\" characters\"],\"ia8YsC\":[\"Upcoming\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Use inherited default\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Use Italian for chat, reports, transcription and participant onboarding cards. Full interface translation was not included in this release.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Verify outcomes and refine replies\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"View release notes\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Want this at your event?\"],\"q7LnaV\":[\"Want to run an event with dembrane?\"],\"La34Yq\":[\"Want to use dembrane at your next event?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Watch the walkthrough for an introduction to organisations, workspaces and projects.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"mW8QSA\":[\"We couldn't find the page you were looking for. It may have moved.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"We will be in touch within a day. Prefer to pick a time yourself?\"],\"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.\"],\"FXjsEJ\":[\"We'd love to hear from you. Whether you have an idea for something new, spotted a translation that feels off, or just want to share how things have been going. Hit a bug? Use <0>Report an issue to send it with screenshots.\"],\"XolQc4\":[\"We'd love to hear from you. Whether you have an idea for something new, spotted a translation that feels off, or just want to share how things have been going. Hit a bug? Use Report an issue in the sidebar to send it with screenshots.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"What happened? Paste a screenshot here to attach it\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"What went wrong?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Work with the new conversational assistant, follow sessions in the live monitor, and use the updated transcription pipeline.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Workspace / Project\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Workspace default\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Write custom verification prompts, generate outcomes in your project language, and remind participants to verify before finishing. Configure settings for each legal basis.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Wrong language or tone\"],\"MNTYHt\":[\"Wrong sources\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"You can change this later in workspace settings after you add billing details.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"you@example.org\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Your email\"],\"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.\"],\"vaTeZ3\":[\"Your feedback and this response go to the dembrane team.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"VSneAo\":[\"Your name, email and current page are included so we can follow up.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"DrJCbp\":[\"Your response has been recorded. You may now close this tab. You may also choose to record another conversation or share the QR code so others can contribute.\"],\"7i36j4\":[\"Your response has been recorded. You may now close this tab. You may also share the QR code so others can contribute, or record another conversation.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message from dembrane\"],\"other\":[\"Messages from dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" isn't in this workspace yet.\"],\"RZUJFH\":[[\"0\"],\" isn't in this workspace yet. Ask a workspace admin to invite this collaborator.\"],\"iOmAhc\":[[\"0\"],\" isn't in this workspace yet. Send them a workspace invite and share this project when they join.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" people aren't in this workspace yet.\"],\"E6f0Mh\":[[\"0\"],\" people aren't in this workspace yet. Ask a workspace admin to invite them.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" views\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" people were already invited. The project is shared once they join.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" already has a pending invite for another project. Share this project once they join.\"],\"zB7Coe\":[[\"email\"],\" was added to the pending list but the invite email could not be sent. Resend it from Members.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invites sent. The project is shared once they join.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"A more reliable audio upload experience\"],\"XPY0OE\":[\"A new assistant and a live monitor\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"sy1BvY\":[\"A participant portal for recording conversations.\"],\"zm7GU7\":[\"A privacy policy link is required for consent-based processing. It must start with http:// or https:// and be at most 255 characters.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"A smoother conversation workspace\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Account default\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Add conversations to chat context, use improved question templates, and work with updated transcription options. Supporting quotes and translations receive fixes.\"],\"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.\"],\"5phU36\":[\"Add images\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"uqLJli\":[\"Add people by email. Anyone not in the workspace yet gets an invite and access to this project when they join.\"],\"1G8+6T\":[\"Add people by email. Anyone not in this workspace yet gets a workspace invite, and the project is shared with them when they join.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"QKlADn\":[\"Added \",[\"0\"],\" people\"],\"z9TWoF\":[\"Added \",[\"granted\"],\" people\"],\"q+wngh\":[\"Added and shared\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"All releases on GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"All years\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Already invited. The project is shared once they join.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"An unexpected error occurred. Reloading or returning home usually helps.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"Dzr23X\":[\"Announcements\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Anything else?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Ask a workspace admin to invite this collaborator.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Audio processing and uploads are more robust, and the conversation list shows clearer totals.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio Tip\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"WI8FHU\":[\"Automatically select relevant conversations for chat and follow source citations. Subscribe to report notifications and work with improved audio and text uploads.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"9aZHfH\":[\"Back to settings\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"g7YpV4\":[\"Before this release history\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Better feedback, easier follow-up\"],\"5DnJa6\":[\"Better recordings, more ways to reply\"],\"9GKCNF\":[\"Better uploads, transcripts and discovery\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Book a call with us\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Bug fixes\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Cancel override\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat with individual conversations.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Chats get automatic titles, and conversation context includes dates and durations. Jump to the latest message and use a clearer audio upload flow.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Chats set to Czech now answer in Czech instead of English.\"],\"gLvHXQ\":[\"Check and select your microphone before recording, see audio quality indicators, and use improved multilingual transcription. Choose summary, brainstorming or custom reply modes.\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"WQUm5N\":[\"Check the text and images, then try again\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Choose discoverable, invite-only or private workspaces. Organisation members load faster, uploads return you to your conversations, and automatic summaries and merging are more reliable.\"],\"okLwd9\":[\"Choose from your other projects\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Clearer sources in chat\"],\"xOlaOX\":[\"Clearer workspace access for admins\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"EhtOYz\":[\"Consent-based processing is active without a privacy policy link. Add one where the legal basis is set: participants must be able to read the privacy policy.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation added to chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Conversation citations now appear together under one Sources heading. The feedback form can prefill your email address.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Conversation pages and data loading are streamlined. Automatic conversation selection leaves more room for answers, and announcements generate fewer repeated notifications.\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Conversation summaries no longer get stuck in the affected processing cases. Conversations paused by free-plan limits are picked up after an upgrade.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Conversation tags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Could not save feedback\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Could not send the report. Try again\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Couldn't revoke invite\"],\"LPY4VY\":[\"Couldn't send invite\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Create Library\"],\"bUyyzw\":[\"Create multiple reports per project and guide their writing with your own instructions. Scheduled reports (beta) include all conversations recorded before the scheduled time. Create, save and pin custom chat templates (beta). This release also adds project pinning, profile settings and Ukrainian chat support.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Czech conversations, Czech answers\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Date\"],\"ItMGda\":[\"Date range\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Deleted projects and conversations paused by plan limits no longer trigger repeated summary attempts.\"],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane at your event?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"dembrane event invitation\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot was our earlier project. Thank you to the hosts, participants and contributors who helped shape it.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Describe the issue\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Determines under which GDPR legal basis personal data is processed for this project.\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Done, reach out to me\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"N8MP2s\":[\"Download audio and organise conversations\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Download conversation audio, add tags from the dashboard, and use summaries that adapt to the conversation. Editing and portal preview fixes are included.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Edit reports directly\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Edit reports yourself, check microphones more clearly in the portal, and see better loading states and error messages.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"B7flm8\":[\"Explore recurring themes in the Library\"],\"EebTQD\":[\"Explore stories and perspectives with the Narratives chat template, in English and Dutch.\"],\"HNnM2X\":[\"Explore the dembrane/pilot archive\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Failed to reschedule. Please choose a time further in the future and try again.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"2roTVj\":[\"Feedback sent\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filter releases by year\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"SdZBYB\":[\"Find the right conversations for your question\"],\"oRQsgh\":[\"Find workspaces and keep conversations moving\"],\"p2j2po\":[\"Find your place in chat\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Get a reply during a conversation\"],\"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.\"],\"Pl6LQ+\":[\"Get in touch\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Good response\"],\"76gPWk\":[\"Got it\"],\"hjZBYK\":[\"Got two minutes? Five optional questions help us prepare.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guided\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"hide the dembrane event invitation\"],\"V3NvRL\":[\"Hiding the dembrane event invitation comes with a paid plan.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Highlight\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Host\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Host's feedback\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"I understand\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"If what you've spotted involves data visible to the wrong people, someone having access they shouldn't, or a possible security vulnerability, please use our <0>security reporting form instead. It reaches a different team on a faster track. For anything urgent, email <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Images must be under \",[\"MAX_FILE_MB\"],\"MB\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Improvements\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Incorrect or made up\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Introducing Popcorn\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invite sent to \",[\"email\"],\". The project is shared once they join.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invite sent. The project is shared once they join.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invite to workspace and share\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"1BIvTp\":[\"Italian for your core workflows\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Join this portal session\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Keep recordings awake\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Keep working while audio uploads, search your tags, and see transcription progress. Improved audio playback and smarter conversation selection make analysis easier.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Latest\"],\"lchnsl\":[\"Latest release\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"J8VWes\":[\"Leave your email so we can get in touch with you.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Legal basis\"],\"vRXsmZ\":[\"Legal Basis\"],\"CopiEV\":[\"Legal basis saved\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Link to the privacy policy shown to participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Loading\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"MCP connections let your agent find projects, search conversations, read transcripts and consult documentation, with organisation controls and explicit consent.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"azjxk1\":[\"Missed the question\"],\"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\"],\"f8jrkd\":[\"more\"],\"2FYpfJ\":[\"More\"],\"JcD7qf\":[\"More actions\"],\"rAPyBz\":[\"More dependable anonymisation and recording\"],\"MmhZK+\":[\"More reliable conversation summaries\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"More useful chat context\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Must be at least 10 minutes in the future\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"New conversations added since this report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"/yIxDf\":[\"New features\"],\"QnAEjj\":[\"New features, improvements and fixes in dembrane.\"],\"CSz4y/\":[\"New look, new features\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"No conversations yet. You can schedule a report now and conversations will be included once they are added.\"],\"oaDwXD\":[\"No default set (client-managed applies)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"No feedback yet.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"No one on the organisation yet.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"No release notes yet.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"z7dMhl\":[\"Only images can be attached\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Only workspace admins can change the legal basis.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Open replay\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"xam4uE\":[\"Optional question \",[\"0\"],\" of \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Organisation admins can join private workspaces from the members page. Access controls now explain when you need to join a workspace first.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organisations, workspaces and projects\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organise work in workspaces, invite external collaborators and observers, and manage access from the new sidebar. Move conversations between projects and projects between workspaces.\"],\"+g4lbW\":[\"Organise your work in organisations, workspaces and projects, with clearer control over who has access.\"],\"ucgZ0o\":[\"Organization\"],\"/IX/7x\":[\"Other\"],\"x0FjQV\":[\"Our first major release\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Overridden for this project\"],\"AR/qbs\":[\"Override for this project\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Participants can request a reply while recording and read it as it arrives. Hosts can enable replies and customise the prompt in portal settings.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Participants can verify outcomes and refine replies. New chat modes and suggestions support analysis, and two-factor authentication adds another sign-in option.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Pick a date\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Pick a time now\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording)\"],\"Lu1j4b\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"jjdudv\":[\"Poor response\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Prepare sessions with an editable host guide, collect participant emails, and anonymise transcripts. This update also introduces custom logos and automatic conversation titles.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"DHhJ7s\":[\"Previous\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"Privacy Policy URL\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Project and conversation search, with branded QR codes.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Question\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Rating\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"Z5Tlsx\":[\"Reach out to me\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"VJScHU\":[\"Reason\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Recording devices stay awake more reliably. Participant onboarding, reply refinement and conversation selection in Specific Details chat receive fixes.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"/l7qFE\":[\"Recording started\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"References\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"/PACVa\":[\"Release notes\"],\"Gm7/K+\":[\"Release notes | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Release video: \",[\"0\"]],\"tF5Smn\":[\"Reload page\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Remove \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Remove override\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Replay\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Report an issue\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Report issues with images or voice, rate chat responses, and request a plan that fits your needs. Set a default legal basis for your workspace.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"6g+4DA\":[\"Report sent. Thank you\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Reschedule to\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"kX8Fjz\":[\"Response feedback\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Return home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Rows per page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Run transcription again for an existing conversation. Dutch documentation is also updated.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Saving...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Scan to start a new portal session\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Scheduled reports and custom templates\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Search and select the conversations for this chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Select all or filtered conversations for chat and filter by clicking a tag. Recording uploads are more reliable, with clearer messages during high demand.\"],\"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\"],\"qtJxoV\":[\"Select multiple conversations\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"Dh99yE\":[\"Select up to 2 focus areas for your report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Send report\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Shape how participants verify outcomes\"],\"Z8lGw6\":[\"Share\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Share portal\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Share with \",[\"0\"],\" people\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Share with whole workspace\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Share your voice by scanning the QR code\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Sharing a private project with a non-member now offers an invitation instead of an error, granting access when they join the workspace.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Show QR Code\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Show the invitation\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"kZ0hFY\":[\"Showing \",[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" of \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"dE/7ox\":[\"Smoother recording and quicker questions\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanish\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Start recording without duplicate conversations, see the actual recording time, and use saved question templates from Ask. Sidebar updates now show an unread count.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Sure\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"5dzzI6\":[\"Switching it off comes with a paid plan.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"System default\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Text contributions and follow-up forms.\"],\"CPN34F\":[\"Thank you for participating!\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Thanks, we will be in touch within a day.\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"That does not look like an email address.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"That's all, thanks\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"The first major release establishes the project under the Business Source License 1.1.\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"The Library gains clearer views of recurring themes. Chat templates stay within reach, conversations have direct links, and upload status is easier to follow.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"The thank you page ends on a card inviting participants to run their own event with dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"This is set to consent-based processing without a privacy policy link. Add one to keep this setting valid: participants must be able to read the privacy policy.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"This portal is not accepting new sessions right now.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"This project will follow the inherited setting instead: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Thumbs down\"],\"Nuw8ty\":[\"Thumbs up\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Time\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"qgwLj6\":[\"Too long or unclear\"],\"lcsUaI\":[\"Too many reports. Wait a few minutes and try again\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Transcribe a conversation again\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"5jqJzi\":[\"Transcript anonymisation and retranscription settings now work more consistently. Recording duration stays accurate after pausing and resuming.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Turn conversations into live slides. Run a live session or an on-demand analysis, present to the room and trace insights to their sources.\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Turn your project's conversations into live slides for the room.\\n\\n- Follow emerging themes as people talk.\\n- Present insights and check the conversations behind them.\\n- Start a live session or run an analysis when you need it.\\n\\nPlus: new chat templates, agent connections and mobile improvements.\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Up to \",[\"MAX_FILES\"],\" images\"],\"lLehih\":[\"Up to \",[\"MAX_MESSAGE_CHARS\"],\" characters\"],\"ia8YsC\":[\"Upcoming\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Use inherited default\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Use Italian for chat, reports, transcription and participant onboarding cards. Full interface translation was not included in this release.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Verify outcomes and refine replies\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"View release notes\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Want this at your event?\"],\"q7LnaV\":[\"Want to run an event with dembrane?\"],\"La34Yq\":[\"Want to use dembrane at your next event?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Watch the walkthrough for an introduction to organisations, workspaces and projects.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"mW8QSA\":[\"We couldn't find the page you were looking for. It may have moved.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"We will be in touch within a day. Prefer to pick a time yourself?\"],\"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.\"],\"FXjsEJ\":[\"We'd love to hear from you. Whether you have an idea for something new, spotted a translation that feels off, or just want to share how things have been going. Hit a bug? Use <0>Report an issue to send it with screenshots.\"],\"XolQc4\":[\"We'd love to hear from you. Whether you have an idea for something new, spotted a translation that feels off, or just want to share how things have been going. Hit a bug? Use Report an issue in the sidebar to send it with screenshots.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Welcome to Overview Mode! I have summaries of all your conversations loaded. Ask me about patterns, themes, and insights across your data. For exact quotes, start a new chat in Specific Context mode.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"What happened? Paste a screenshot here to attach it\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"What went wrong?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Work with the new conversational assistant, follow sessions in the live monitor, and use the updated transcription pipeline.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Workspace / Project\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Workspace default\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Workspace settings\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Write custom verification prompts, generate outcomes in your project language, and remind participants to verify before finishing. Configure settings for each legal basis.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Wrong language or tone\"],\"MNTYHt\":[\"Wrong sources\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"You can change this later in workspace settings after you add billing details.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"you@example.org\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Your email\"],\"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.\"],\"vaTeZ3\":[\"Your feedback and this response go to the dembrane team.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"VSneAo\":[\"Your name, email and current page are included so we can follow up.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"DrJCbp\":[\"Your response has been recorded. You may now close this tab. You may also choose to record another conversation or share the QR code so others can contribute.\"],\"7i36j4\":[\"Your response has been recorded. You may now close this tab. You may also share the QR code so others can contribute, or record another conversation.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/es-ES.po b/echo/frontend/src/locales/es-ES.po index dce2f4b7..a54edf91 100644 --- a/echo/frontend/src/locales/es-ES.po +++ b/echo/frontend/src/locales/es-ES.po @@ -54,6 +54,16 @@ msgstr "Preparando tu dashboard" msgid "Welcome back" msgstr "Bienvenido de nuevo" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:542 +#~ msgid "participant.button.back.microphone" +#~ msgstr "Volver" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:446 +#~ msgid "participant.mic.check.button.skip" +#~ msgstr "Omitir" + #: src/components/popcorn/PopcornStatus.tsx:45 msgid " · {heldBack} held back" msgstr "" @@ -2089,13 +2099,8 @@ msgid "Back" msgstr "Atrás" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:542 -msgid "participant.button.back.microphone" -msgstr "Volver" - -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:567 -#: src/components/layout/ParticipantHeader.tsx:87 +#: src/components/participant/ParticipantOnboardingCards.tsx:419 +#: src/components/layout/ParticipantHeader.tsx:90 msgid "participant.button.back" msgstr "Volver" @@ -2382,7 +2387,7 @@ msgid "participant.concrete.action.button.cancel" msgstr "cancelar" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:97 +#: src/components/layout/ParticipantHeader.tsx:100 msgid "participant.concrete.instructions.button.cancel" msgstr "cancelar" @@ -3039,14 +3044,13 @@ msgid "Continue" msgstr "Continuar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:554 -#: src/components/participant/MicrophoneTest.tsx:414 -msgid "participant.button.continue" +#: src/components/participant/ParticipantInitiateForm.tsx:336 +msgid "participant.ready.to.begin.button.text" msgstr "Continuar" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:336 -msgid "participant.ready.to.begin.button.text" +#: src/components/participant/MicrophoneTest.tsx:414 +msgid "participant.button.continue" msgstr "Continuar" #: src/routes/organisation/OrganisationRoute.tsx:1629 @@ -7276,7 +7280,7 @@ msgid "Next" msgstr "Siguiente" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:584 +#: src/components/participant/ParticipantOnboardingCards.tsx:436 msgid "participant.button.next" msgstr "Siguiente" @@ -9277,7 +9281,7 @@ msgid "Reads every 2 minutes. Refresh reads now." msgstr "" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:418 +#: src/components/participant/ParticipantOnboardingCards.tsx:313 msgid "participant.ready.to.begin" msgstr "¿Listo para comenzar?" @@ -10767,8 +10771,8 @@ msgstr "" #: src/features/sidebar/views/org/OrgSettingsView.tsx:31 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 -#: src/components/layout/ParticipantHeader.tsx:121 -#: src/components/layout/ParticipantHeader.tsx:122 +#: src/components/layout/ParticipantHeader.tsx:124 +#: src/components/layout/ParticipantHeader.tsx:125 msgid "Settings" msgstr "Configuración" @@ -10811,8 +10815,8 @@ msgstr "" msgid "Share link" msgstr "" -#: src/components/layout/ParticipantHeader.tsx:111 -#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:114 +#: src/components/layout/ParticipantHeader.tsx:115 msgid "Share portal" msgstr "Compartir portal" @@ -11027,11 +11031,6 @@ msgstr "Omitir" msgid "participant.button.verify_prompt.skip" msgstr "Omitir" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:446 -msgid "participant.mic.check.button.skip" -msgstr "Omitir" - #. js-lingui-explicit-id #: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" diff --git a/echo/frontend/src/locales/es-ES.ts b/echo/frontend/src/locales/es-ES.ts index 24def3de..9c66bc91 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\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(opcional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Mensaje de dembrane\"],\"other\":[\"Mensajes de dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" aún no está en este espacio de trabajo.\"],\"RZUJFH\":[[\"0\"],\" aún no está en este espacio de trabajo. Pide a un administrador del espacio de trabajo que invite a esta persona.\"],\"iOmAhc\":[[\"0\"],\" aún no está en este espacio de trabajo. Envía una invitación y comparte este proyecto cuando se una.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" personas aún no están en este espacio de trabajo.\"],\"E6f0Mh\":[[\"0\"],\" personas aún no están en este espacio de trabajo. Pide a un administrador que las invite.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" vistas\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" personas ya estaban invitadas. El proyecto se comparte cuando se unan.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversaciones • Editado \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" ya tiene una invitación pendiente para otro proyecto. Comparte este proyecto cuando se una.\"],\"zB7Coe\":[[\"email\"],\" está en la lista de invitaciones pendientes, pero el correo no se pudo enviar. Reenvíalo desde Miembros.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invitaciones enviadas. El proyecto se comparte cuando se unan.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspectos\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 vista\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. Cuando ocurre un evento de conversación o informe, enviamos automáticamente los datos a tu URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Subidas de audio más fiables\"],\"XPY0OE\":[\"Un nuevo asistente y un monitor en directo\"],\"z9VxrW\":[\"Se generará y publicará automáticamente un nuevo informe en el horario programado.\"],\"sy1BvY\":[\"Un portal para participantes donde grabar conversaciones.\"],\"zm7GU7\":[\"Se requiere un enlace a la política de privacidad para el tratamiento basado en el consentimiento. Debe comenzar con http:// o https:// y tener como máximo 255 caracteres.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Un espacio de conversaciones más fluido\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Acceso\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Valor predeterminado de la cuenta\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Añadir\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Añade conversaciones al contexto del chat, usa mejores plantillas de preguntas y opciones de transcripción actualizadas. Se corrigen citas de apoyo y traducciones.\"],\"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.\"],\"5phU36\":[\"Añadir imágenes\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"uqLJli\":[\"Añade personas por correo. Quien aún no esté en el espacio de trabajo recibe una invitación y acceso a este proyecto cuando se una.\"],\"1G8+6T\":[\"Añade personas por correo. Quien aún no esté en este espacio de trabajo recibe una invitación y el proyecto se comparte cuando se une.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Añadir Tema\"],\"AHaRrL\":[\"Añadir traducciones\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Añadidas\"],\"QKlADn\":[[\"0\"],\" personas añadidas\"],\"z9TWoF\":[[\"granted\"],\" personas añadidas\"],\"q+wngh\":[\"Añadido y compartido\"],\"Na90E+\":[\"E-mails añadidos\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"Du6bPw\":[\"Dirección\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Ejecución guiada por herramientas\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Todo\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Todas las versiones en GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Todas las plantillas\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Todos los años\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Ya invitado. El proyecto se comparte cuando se una.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"Ha ocurrido un error inesperado. Recargar la página o volver al inicio suele ayudar.\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"ZlwDi6\":[\"Analíticas\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"Dzr23X\":[\"Anuncios\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonimizar transcripción\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"YdiKaK\":[\"conversación anónima\"],\"iPiP6k\":[\"Conversación anónima\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"¿Algo más?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Apariencia\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Aplicar\"],\"4TwsNi\":[\"Aplicar plantilla\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"uqhbrg\":[\"¿Está seguro de que desea eliminar este chat? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"yrk3z3\":[\"¿Estás seguro de que quieres eliminar este tema personalizado? Esta acción no se puede deshacer.\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"ELQ+fw\":[\"¿Estás seguro de que quieres eliminar este informe? Esta acción no se puede deshacer.\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"e3BGhi\":[\"¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"ZmeZPn\":[\"¿Está seguro de que desea eliminar su avatar?\"],\"wQ5jM6\":[\"¿Está seguro de que desea eliminar su logotipo personalizado? Se utilizará el logotipo predeterminado de dembrane.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Preguntar\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Pide a un administrador del espacio de trabajo que invite a esta persona.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"El descarga de audio no está disponible para conversaciones anónimas\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La reproducción de audio no está disponible para conversaciones anónimas\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"El procesamiento y las subidas de audio son más robustos y la lista de conversaciones muestra totales más claros.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Consejo de audio\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"WI8FHU\":[\"Selecciona automáticamente conversaciones relevantes para el chat y sigue sus referencias. Suscríbete a avisos de informes y usa subidas de audio y texto mejoradas.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar eliminado\"],\"jSKImf\":[\"Avatar actualizado\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.button.back\":[\"Volver\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Volver a la selección\"],\"9aZHfH\":[\"Back to settings\"],\"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\"],\"g7YpV4\":[\"Antes de este historial de versiones\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Mejores comentarios, seguimiento más sencillo\"],\"5DnJa6\":[\"Mejores grabaciones, más formas de responder\"],\"9GKCNF\":[\"Mejores subidas, transcripciones y búsquedas\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Reservar una llamada\"],\"KKLfx1\":[\"Reserve una llamada con nosotros\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Correcciones de errores\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"Al eliminar este proyecto, eliminará todos los datos asociados. Esta acción no se puede deshacer. ¿Está completamente seguro?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Cancelar la sobrescritura\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancelar programación\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"SL9Qao\":[\"No se puede reprogramar dentro de los 10 minutos previos a la hora programada\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Tarjeta\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Cambiar idioma\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Cambiar contraseña\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Nombre del chat\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat con conversaciones individuales.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Los chats reciben títulos automáticos y el contexto incluye fechas y duraciones. Ve al último mensaje y usa un proceso de subida de audio más claro.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Los chats configurados en checo ahora responden en checo en vez de inglés.\"],\"gLvHXQ\":[\"Comprueba y elige el micrófono antes de grabar, consulta indicadores de calidad y usa transcripción multilingüe mejorada. Elige modos de resumen, lluvia de ideas o personalizados.\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"WQUm5N\":[\"Revise el texto y las imágenes e inténtelo de nuevo\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Elige espacios visibles, por invitación o privados. Los miembros cargan más rápido, las subidas te devuelven a tus conversaciones y los resúmenes y fusiones automáticos son más fiables.\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Fuentes más claras en el chat\"],\"xOlaOX\":[\"Acceso más claro para administradores\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Cliente-manejado\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Colección\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"CfO59/\":[\"Comparar y Contrastar Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Completar\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"7VpPHA\":[\"Confirmar\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirmar nueva contraseña\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Publicar\"],\"vz1fGK\":[\"Confirmar reprogramación\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"participant.modal.s3check.title\":[\"Problema de conexión\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Conexión no saludable\"],\"l9fkrm\":[\"Consentimiento\"],\"EhtOYz\":[\"El tratamiento basado en el consentimiento está activo sin enlace a la política de privacidad. Añada uno donde esté definida la base legal: los participantes deben poder leer la política de privacidad.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Contenido\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"JX3KT4\":[\"Sugerencias contextuales\"],\"xGVfLh\":[\"Continuar\"],\"participant.button.continue\":[\"Continuar\"],\"participant.ready.to.begin.button.text\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"YyNOE7\":[\"Conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Las referencias a conversaciones aparecen juntas bajo un único título Fuentes. El formulario de comentarios puede completar tu correo electrónico.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Se simplifican las páginas y la carga de datos. La selección automática deja más espacio para respuestas y los anuncios generan menos notificaciones repetidas.\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Los resúmenes ya no se bloquean en los casos de procesamiento afectados. Las conversaciones pausadas por límites del plan gratuito se retoman tras cambiar de plan.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copiar enlace\"],\"H4brGj\":[\"Copiar enlace al portapapeles\"],\"AjrNNs\":[\"Copiar contenido del informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copiando...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"No se pudo trasladar tu selección. Vuelve a elegir abajo.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"No se pudo copiar al portapapeles. Inténtelo de nuevo.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"No se pudo abrir la lista de conversaciones. Inténtalo de nuevo.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"No se guardó la valoración\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"No se ha podido enviar el aviso. Inténtelo de nuevo\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"No se pudo revocar la invitación\"],\"LPY4VY\":[\"No se pudo enviar la invitación\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"oJfYM5\":[\"Crear un breve de investigación desde las conversaciones recientes\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Crear biblioteca\"],\"bUyyzw\":[\"Crea varios informes por proyecto y guía su redacción con tus propias instrucciones. Los informes programados (beta) incluyen todas las conversaciones grabadas antes de la hora prevista. Crea, guarda y fija plantillas de chat personalizadas (beta). Esta versión también añade proyectos fijados, ajustes de perfil y chat en ucraniano.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Crear informe\"],\"A5hiCy\":[\"Crear plantilla\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Creado el\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Recortar avatar\"],\"udBqWc\":[\"Recortar imagen\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recortar logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Logo actual\"],\"Pn2B7/\":[\"Contraseña actual\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Personalizado\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Conversaciones en checo, respuestas en checo\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Fecha\"],\"ItMGda\":[\"Rango de fechas\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"K/78Yl\":[\"Delegación de análisis multi-paso con ejecución de herramientas en vivo\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Eliminar chat\"],\"2GCE3m\":[\"Eliminar conversación\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"j5pYC4\":[\"Eliminar tema personalizado\"],\"mp235G\":[\"Eliminar proyecto\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"rUWrSE\":[\"Eliminar informe\"],\"qr0gpK\":[\"Eliminar etiqueta\"],\"DFjdv0\":[\"Eliminar plantilla\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Eliminar Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Los proyectos eliminados y las conversaciones pausadas por los límites del plan ya no provocan intentos repetidos de generar resúmenes.\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"¿dembrane en tu evento?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"invitación a eventos dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot fue nuestro proyecto anterior. Gracias a los organizadores, participantes y colaboradores que ayudaron a darle forma.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Describa el problema\"],\"Fs/0D5\":[\"Describe lo que el modelo de lenguaje debe extraer o resumir de la conversación...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Determina bajo qué base legal del RGPD se tratan los datos personales de este proyecto.\"],\"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.\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Nombre para mostrar\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Listo, contactadme\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"N8MP2s\":[\"Descarga audio y organiza conversaciones\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Descarga audio, añade etiquetas desde el panel y usa resúmenes adaptados a la conversación. Se corrigen la edición y la vista previa del portal.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Borrador de acciones siguientes y organizarlas por prioridad\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"p. ej. \\\"Enfoque en temas de sostenibilidad\\\" o \\\"¿Qué piensan los participantes sobre la nueva política?\\\"\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"ej. Resumen semanal de partes interesadas\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"Y/3VME\":[\"Editar Tema Personalizado\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Modo edición\"],\"niSWGL\":[\"Editar opciones\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Edita informes directamente\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Edita informes, comprueba los micrófonos con más claridad en el portal y consulta mejores indicadores de carga y mensajes de error.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Correo electrónico\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji mostrado junto al tema, por ejemplo: 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Vacío\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Activar 2FA\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"4KKbfZ\":[\"Habilitar participación\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Active esta función para permitir que los participantes verifiquen y aprueben \\\"resultados\\\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Introduzca la contraseña actual\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"VpwcSk\":[\"Introduzca la nueva contraseña\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"4kVRov\":[\"Ocurrió un error\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Salir de pantalla completa\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"B7flm8\":[\"Explora temas recurrentes en la Library\"],\"EebTQD\":[\"Explora relatos y perspectivas con la plantilla de chat Narratives, en inglés y neerlandés.\"],\"HNnM2X\":[\"Explorar el archivo de dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"UQ6LqT\":[\"Error al crear el tema personalizado\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Error al eliminar el tema personalizado\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"rv8mO7\":[\"No se pudo eliminar el avatar\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"IMUHg3\":[\"Error al reprogramar. Por favor, elija un horario mas lejano e intentelo de nuevo.\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Error al actualizar el tema personalizado\"],\"BpuK7o\":[\"Error al actualizar la base legal\"],\"Avee+B\":[\"No se pudo actualizar el nombre\"],\"gnm1CH\":[\"Error al actualizar el pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"No se pudo subir el avatar\"],\"RW4V7P\":[\"Error al subir el logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Portal de comentarios\"],\"2roTVj\":[\"Comentario enviado\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filtrar versiones por año\"],\"MRk67a\":[\"Encontrar contradicciones y sugerir preguntas de seguimiento\"],\"SdZBYB\":[\"Encuentra las conversaciones adecuadas para tu pregunta\"],\"oRQsgh\":[\"Encuentra espacios y mantén las conversaciones en marcha\"],\"p2j2po\":[\"Encuentra tu lugar en el chat\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Enfoque\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Francés\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"3qkggm\":[\"Pantalla completa\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generar\"],\"EIdJgG\":[\"Generar un nuevo informe\"],\"QsUhrf\":[\"Generar un informe\"],\"GRy59I\":[\"Generar un resumen primero\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generar biblioteca\"],\"5SWGxv\":[\"Generar ahora\"],\"GWUJ9X\":[\"Generar ahora\"],\"QqIxfi\":[\"Generar secreto\"],\"gitFA/\":[\"Generar Resumen\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Recibe una respuesta durante una conversació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.\"],\"Pl6LQ+\":[\"Ponte en contacto\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"DXr0zk\":[\"Pantalla completa\"],\"iWpEwy\":[\"Ir al inicio\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Buena respuesta\"],\"76gPWk\":[\"Entendido\"],\"hjZBYK\":[\"¿Tienes dos minutos? Cinco preguntas opcionales nos ayudan a prepararnos.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guiar el informe\"],\"myXGZW\":[\"Guiado\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Oculto\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"eHo/Jc\":[\"Ocultar datos\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"ocultar la invitación a eventos dembrane\"],\"V3NvRL\":[\"Ocultar la invitación a eventos dembrane forma parte de un plan de pago.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Destacado\"],\"tn75xn\":[\"Concepto específico resaltado\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Inicio\"],\"Ai2U7L\":[\"Anfitrión\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Comentarios del anfitrión\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Cómo funciona:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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?\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"Entiendo\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Si lo que has detectado implica datos visibles para personas equivocadas, alguien con un acceso que no debería tener, o una posible vulnerabilidad de seguridad, utiliza nuestro <0>formulario de notificación de seguridad. Llega a otro equipo por una vía más rápida. Para cualquier urgencia, escribe a <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"Si está satisfecho con \",[\"objectLabel\"],\", haga clic en \\\"Aprobar\\\" para mostrar que se siente escuchado.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Las imágenes deben pesar menos de \",[\"MAX_FILE_MB\"],\" MB\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Mejoras\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Incluir enlace del portal\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Incorrecto o inventado\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instrucciones para generar el resultado de la verificación\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Presentamos Popcorn\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invitación enviada a \",[\"email\"],\". El proyecto se comparte cuando se una.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invitación enviada. El proyecto se comparte cuando se una.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invitar al espacio de trabajo y compartir\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Dirección IP\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"5dxEAB\":[\"Parece que aún no tiene un informe para este proyecto. Genere uno para obtener una descripción general de sus conversaciones.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italiano (solo funciones de ECHO, Transcripción y Resúmenes)\"],\"1BIvTp\":[\"Italiano para tus funciones principales\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Unirse a esta sesión del portal\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Un momento\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Mantén activos los dispositivos de grabación\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Sigue trabajando durante las subidas de audio, busca etiquetas y consulta el progreso de transcripción. La reproducción mejorada y una selección más pertinente facilitan el análisis.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Idioma\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Último\"],\"lchnsl\":[\"Última versión\"],\"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\"],\"J8VWes\":[\"Déjanos tu correo para que podamos contactarte.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Base legal\"],\"vRXsmZ\":[\"Base Legal\"],\"CopiEV\":[\"Base legal guardada\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"gkv8iG\":[\"Matrícula\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Enlace\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Enlace a la política de privacidad que se muestra a los participantes\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Vivo\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Modo de ejecución de agente en vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Cargando\"],\"participant.verify.instructions.loading\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Iniciar sesión\"],\"LM/dWU\":[\"Iniciar sesión | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo eliminado\"],\"MjfaMh\":[\"Logo actualizado\"],\"nOhz3x\":[\"Cerrar sesión\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Más largo primero\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Gestionar plantillas\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Las conexiones MCP permiten que tu agente encuentre proyectos, busque conversaciones, lea transcripciones y consulte documentación, con controles de la organización y consentimiento explícito.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"azjxk1\":[\"No responde a la pregunta\"],\"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\"],\"f8jrkd\":[\"más\"],\"2FYpfJ\":[\"Más\"],\"JcD7qf\":[\"Más acciones\"],\"rAPyBz\":[\"Anonimización y grabación más fiables\"],\"MmhZK+\":[\"Resúmenes de conversaciones más fiables\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Contexto de chat más útil\"],\"QWdKwH\":[\"Mover\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Mover Conversación\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Debe ser al menos 10 minutos en el futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mis plantillas\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Nombre actualizado\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Nombre Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"Nuevo\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"u2uElg\":[\"Nuevas conversaciones agregadas desde este informe\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"/yIxDf\":[\"Nuevas funciones\"],\"QnAEjj\":[\"Nuevas funciones, mejoras y correcciones en dembrane.\"],\"CSz4y/\":[\"Nuevo diseño, nuevas funciones\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Nueva contraseña\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"Nuevo informe\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Más nuevos primero\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.next\":[\"Siguiente\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No se encontraron acciones\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Aun no hay conversaciones. Puede programar un informe ahora y las conversaciones se incluiran una vez que se agreguen.\"],\"oaDwXD\":[\"Sin valor predeterminado (se aplica la gestión por el cliente)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Todavía no hay valoraciones.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Aún no hay nadie en la organización.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Aún no hay notas de versión.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"1iQvuD\":[\"Aún no hay informes\"],\"Ev2r9A\":[\"Sin resultados\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"KE6RCJ\":[\"Ninguna plantilla coincide con {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"pdWSGS\":[\"No hay temas de verificación disponibles.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Más antiguos primero\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Una vez que haya discutido, presione \\\"revisar\\\" para que \",[\"objectLabel\"],\" cambie y refleje su discusión.\"],\"participant.verify.instructions.read.aloud\":[\"Una vez que reciba \",[\"objectLabel\"],\", léalo en voz alta y comparta en voz alta lo que desea cambiar, si es necesario.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"En curso\"],\"conversation.ongoing\":[\"En curso\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Solo cambia este ajuste en consulta con la(s) persona(s) responsable(s) del cumplimiento de la normativa de protección de datos dentro de tu organización.\"],\"z7dMhl\":[\"Solo se pueden adjuntar imágenes\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Solo los administradores del espacio de trabajo pueden cambiar la base legal.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Ver grabación\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Opcional\"],\"ZFIvWo\":[\"Opcional (recurre al inglés)\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"xam4uE\":[\"Pregunta opcional \",[\"0\"],\" de \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Los administradores de la organización pueden unirse a espacios privados desde la página de miembros. Los controles explican cuándo debes unirte primero a un espacio.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organizaciones, espacios de trabajo y proyectos\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organiza el trabajo en espacios, invita a colaboradores externos y observadores y gestiona accesos desde la nueva barra lateral. Mueve conversaciones entre proyectos y proyectos entre espacios.\"],\"+g4lbW\":[\"Organiza tu trabajo en organizaciones, espacios de trabajo y proyectos, con más control sobre quién tiene acceso.\"],\"ucgZ0o\":[\"Organización\"],\"/IX/7x\":[\"Otro\"],\"x0FjQV\":[\"Nuestra primera versión principal\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Sobrescrito para este proyecto\"],\"AR/qbs\":[\"Sobrescribir para este proyecto\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Los participantes pueden pedir una respuesta mientras graban y leerla a medida que llega. Los anfitriones activan las respuestas y personalizan la instrucción en ajustes del portal.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Los participantes pueden verificar resultados y refinar respuestas. Nuevos modos y sugerencias apoyan el análisis, y la autenticación en dos pasos amplía las opciones de acceso.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Contraseña\"],\"zJx6Vx\":[\"Contraseña cambiada\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pausar lectura\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pendiente\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"La información personal será reemplazada por marcadores. La reproducción de audio, descarga y retranscripción se desactivarán para la nueva conversación.\"],\"zmwvG2\":[\"Teléfono\"],\"B8mlc2\":[\"Elija una fecha\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Elegir una hora ahora\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Fijar\"],\"u8qC4w\":[\"Fijar proyecto\"],\"S+WiJ3\":[\"Fije plantillas aquí para acceso rápido.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Fijados está lleno (máx. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Plantillas fijadas\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Grabe su respuesta haciendo clic en el botón \\\"Grabar\\\" a continuación. También puede responder en texto haciendo clic en el icono de texto.\\n**Mantenga esta pantalla encendida**\\n(pantalla negra = no está grabando)\"],\"Lu1j4b\":[\"Grabe su respuesta haciendo clic en el botón \\\"Grabar\\\" a continuación. También puede responder en texto haciendo clic en el icono de texto.\\n**Mantenga esta pantalla encendida**\\n(pantalla negra = no está grabando).\\nEsta transcripción será anonimizada y su anfitrión no podrá escuchar su grabación.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG o WebP. Se recortará en un círculo.\"],\"jjdudv\":[\"Mala respuesta\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Contenido del Portal\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Editor del Portal\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Prepara sesiones con una guía editable, recoge correos y anonimiza transcripciones. Esta actualización también introduce logotipos propios y títulos automáticos de conversaciones.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"DHhJ7s\":[\"Anterior\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"S8ugMC\":[\"Imprimir informe\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL de la política de privacidad\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Búsqueda de proyectos y conversaciones, con códigos QR personalizados.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Proyecto creado\"],\"zjTrs1\":[\"Valor predeterminado del proyecto: activado. La información personal será reemplazada por marcadores. La reproducción de audio, descarga y retranscripción se desactivarán para la nueva conversación.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Resumen Meta del Proyecto\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Vista General del Proyecto | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Proyectos\"],\"DK5DV3\":[\"Proyectos | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publicar\"],\"vsX8VJ\":[\"Publique este informe primero para mostrar el enlace del portal\"],\"IHzoSN\":[\"Publique este informe para obtener un enlace para compartir\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Pregunta\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Valoración\"],\"wr9IYa\":[\"Vuelva a introducir la nueva contraseña\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"Z5Tlsx\":[\"Contactadme\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Leer en voz alta\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"VJScHU\":[\"Motivo\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.s3check.reconnect\":[\"Reconectar\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Grabar\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Los dispositivos permanecen activos de forma más fiable. Se corrigen la bienvenida, el refinamiento de respuestas y la selección de conversaciones en el chat Specific Details.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"/l7qFE\":[\"Grabación iniciada\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"Referencias\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerar\"],\"PpFJd2\":[\"Regenerar resumen\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"HPitDS\":[\"Registrar | dembrane\"],\"/PACVa\":[\"Notas de versión\"],\"Gm7/K+\":[\"Notas de versión | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Vídeo de la versión: \",[\"0\"]],\"tF5Smn\":[\"Recargar la página\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Recordar a los usuarios que verifiquen antes de finalizar\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Eliminar\"],\"w61W3L\":[\"Quitar \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Eliminar avatar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"O90CN2\":[\"Eliminar logotipo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Eliminar la sobrescritura\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"6PsaMr\":[\"Renombrar chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Grabación\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Informe\"],\"e/MQa5\":[\"El informe ya se está generando\"],\"Q3LOVJ\":[\"Informar de un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"hh/mvZ\":[\"Generación del informe cancelada\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Generación del informe en curso...\"],\"v7O77U\":[\"La generación del informe fue cancelada. Puedes iniciar un nuevo informe a continuación.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Informa de problemas con imágenes o voz, valora respuestas del chat y solicita un plan adecuado. Define una base jurídica predeterminada para tu espacio de trabajo.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"M9snPp\":[\"Informe programado\"],\"6g+4DA\":[\"Aviso enviado. Gracias\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Las plantillas de informes están en nuestra hoja de ruta.\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"t9yxlZ\":[\"Informes\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Solicitar Acceso\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"8H5nRH\":[\"Solicitar Restablecimiento de Contraseña | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"TMLAx2\":[\"Requerido\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reprogramar\"],\"6eIR/n\":[\"Reprogramar para\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Restablecer\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"9uplIY\":[\"Restablecer Contraseña | dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"kX8Fjz\":[\"Comentarios sobre la respuesta\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"+gmVxi\":[\"La retranscripción no está disponible para conversaciones anónimas\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Reintentar subida\"],\"2fCpt5\":[\"Volver al inicio\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"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\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Filas por página\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Vuelve a transcribir una conversación existente. También se actualiza la documentación en neerlandés.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Guardar\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Guardar como plantilla\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Guardar Cambios\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"5dVjYt\":[\"Guardar plantilla\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Guardando...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Escanea para iniciar una nueva sesión del portal\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Programar\"],\"wCGy0o\":[\"Programar informe\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Informes programados y plantillas personalizadas\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Desplazarse al final\"],\"A1taO8\":[\"Buscar\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Busca y selecciona las conversaciones para este chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Buscar etiquetas\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"Hasta pronto\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Selecciona todas las conversaciones o las filtradas para el chat y filtra pulsando una etiqueta. Las subidas de grabaciones son más fiables y los avisos de alta demanda más claros.\"],\"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\"],\"qtJxoV\":[\"Seleccionar varias conversaciones\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"Dh99yE\":[\"Seleccione hasta 2 areas de enfoque para su informe\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para \\\"Verificar\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Enviar\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Enviar invitación\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Enviar aviso\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"BVRW7i\":[\"Configuración | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Define cómo se verifican los resultados\"],\"Z8lGw6\":[\"Compartir\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Compartir portal\"],\"OuFYHU\":[\"Compartir informe\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Compartir con \",[\"0\"],\" personas\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Compartir con todo el espacio de trabajo\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"nnWGzO\":[\"Comparta sus ideas con nuestro equipo\"],\"4o0klJ\":[\"Comparta su voz escaneando el codigo QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Al compartir un proyecto privado con alguien que no es miembro, ahora se ofrece una invitación en lugar de un error. Recibe acceso cuando se une al espacio de trabajo.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Mostrar código QR\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Mostrar la invitación\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" de \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Mostrando su informe completado más reciente.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Omitir\"],\"participant.button.verify_prompt.skip\":[\"Omitir\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Comunidad de Slack\"],\"dE/7ox\":[\"Grabaciones más fluidas y preguntas más rápidas\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Algo está bloqueando tu conexión. Tu audio no se guardará a menos que se resuelva este problema.\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"mwpVVD\":[\"Algo salió mal al generar su último informe.\"],\"2WNFmv\":[\"Algo salió mal al generar su informe.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Español\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Empieza a grabar sin duplicar conversaciones, consulta la hora real de inicio y usa plantillas guardadas desde Ask. Las novedades de la barra lateral muestran un contador de no leídas.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Estado\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Planificación Estratégica\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Éxito\"],\"aG+cH9\":[\"Sugerir sugerencias dinámicas basadas en su conversación.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Sugerido:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Resumir\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Claro\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"5dzzI6\":[\"Desactivarla forma parte de un plan de pago.\"],\"D+NlUC\":[\"Sistema\"],\"woaefe\":[\"Valor predeterminado del sistema\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Etiquetas\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Plantilla aplicada\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Nombre de plantilla\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Plantillas\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"mFQRXn\":[\"Aportaciones de texto y formularios de seguimiento.\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Gracias, nos pondremos en contacto en un día.\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Eso no parece una dirección de correo electrónico.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"Eso es todo, gracias\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"La primera versión principal establece el proyecto bajo la Business Source License 1.1.\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"La Library ofrece vistas más claras de temas recurrentes. Las plantillas siguen accesibles, las conversaciones tienen enlaces directos y las subidas son más fáciles de seguir.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"El informe puede comenzar hasta 5 minutos después de la hora elegida.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"9DPC4t\":[\"La página de agradecimiento termina con una tarjeta que invita a los participantes a organizar su propio evento con dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Tema\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Pensando...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Esto puede ocurrir cuando una VPN o un firewall está bloqueando la conexión. Intenta desactivar tu VPN, cambiar a otra red (p. ej., punto de acceso móvil) o contacta con tu departamento de TI para obtener ayuda.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Esta información está anónima\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Está configurado el tratamiento basado en el consentimiento sin enlace a la política de privacidad. Añada uno para que este ajuste siga siendo válido: los participantes deben poder leer la política de privacidad.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"Biblioteca\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Este portal no acepta nuevas sesiones en este momento.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Este proyecto seguirá el ajuste heredado: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"Este espacio de trabajo ha agotado sus horas de grabación. Mejora tu plan para seguir usando la voz.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Pulgar abajo\"],\"Nuw8ty\":[\"Pulgar arriba\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Hora\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"Zb3ANR\":[\"Consejo: También puede crear una plantilla desde cualquier mensaje de chat que envíe, o duplicar una plantilla existente.\"],\"MHrjPM\":[\"Título\"],\"1xkgU6\":[\"Título auto-generado\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Para ayudarnos a actuar, intente incluir dónde ocurrió y qué estaba intentando hacer. Para errores, díganos qué salió mal. Para ideas, díganos qué necesidad resolvería para usted.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"qgwLj6\":[\"Demasiado largo o poco claro\"],\"lcsUaI\":[\"Demasiados avisos. Espere unos minutos e inténtelo de nuevo\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Tema creado correctamente\"],\"Sawj4V\":[\"Tema eliminado correctamente\"],\"xcp3ny\":[\"Etiqueta de tema\"],\"vQoAht\":[\"Tema actualizado correctamente\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Transcribe de nuevo una conversación\"],\"fp5rKh\":[\"Transcribiendo...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcripción\"],\"5jqJzi\":[\"La anonimización y los ajustes de retranscripción funcionan de forma más coherente. La duración sigue siendo correcta después de pausar y reanudar.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Convierte conversaciones en diapositivas en directo. Inicia una sesión en vivo o un análisis a demanda, presenta al grupo y consulta las fuentes de cada hallazgo.\"],\"portal.anonymization.disable.confirm\":[\"Desactivar\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"¿Desactivar la anonimización?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Convierte las conversaciones de tu proyecto en diapositivas en directo para la sala.\\n\\n- Sigue los temas emergentes mientras la gente habla.\\n- Presenta ideas y consulta las conversaciones en las que se basan.\\n- Inicia una sesión en directo o un análisis cuando lo necesites.\\n\\nTambién: nuevas plantillas de chat, conexiones con agentes y mejoras para móviles.\"],\"portal.anonymization.disable.warning\":[\"Desactivar la anonimización mientras hay grabaciones en curso puede tener consecuencias no deseadas. Las conversaciones activas también se verán afectadas durante la grabación. Por favor, use esto con precaución.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Escribe un mensaje o pulsa / para plantillas...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ucraniano (solo funciones de ECHO, Transcripción y Resúmenes)\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Razón desconocida\"],\"nWMRxa\":[\"Desfijar\"],\"vSdeRU\":[\"Desancla primero un proyecto (máx. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Desancla primero un proyecto (máx. 3)\"],\"dx+iaL\":[\"Desanclar proyecto\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Conversación sin título\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Informe sin título\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Hasta \",[\"MAX_FILES\"],\" imágenes\"],\"lLehih\":[\"Hasta \",[\"MAX_MESSAGE_CHARS\"],\" caracteres\"],\"ia8YsC\":[\"Próximamente\"],\"EkH9pt\":[\"Actualizar\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Subir avatar\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Usar el valor heredado\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Usa italiano en chat, informes, transcripción y tarjetas de bienvenida para participantes. Esta versión no incluía la traducción completa de la interfaz.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Recordatorio de verificación\"],\"participant.banner.verification_required\":[\"Verificación requerida\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Verifica resultados y refina respuestas\"],\"w6Mgbs\":[\"Temas de verificación\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vista\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Ver notas de versión\"],\"D4e7re\":[\"Ver tus respuestas\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Esperando a que terminen las conversaciones antes de generar un informe.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"¿Lo quieres en tu evento?\"],\"q7LnaV\":[\"¿Quieres organizar un evento con dembrane?\"],\"La34Yq\":[\"¿Quieres usar dembrane en tu próximo evento?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Mira el vídeo para conocer las organizaciones, los espacios de trabajo y los proyectos.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"mW8QSA\":[\"No encontramos la página que buscabas. Puede que se haya movido.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Nos pondremos en contacto en un día. ¿Prefieres elegir tú la hora?\"],\"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.\"],\"FXjsEJ\":[\"Nos encantaría saber de usted. Ya sea que tenga una idea para algo nuevo, haya visto una traducción que no encaja, o simplemente quiera contarnos cómo va todo. ¿Ha encontrado un error? Use <0>Informar de un problema para enviarlo con capturas de pantalla.\"],\"XolQc4\":[\"Nos encantaría saber de usted. Ya sea que tenga una idea para algo nuevo, haya visto una traducción que no encaja, o simplemente quiera contarnos cómo va todo. ¿Ha encontrado un error? Use Informar de un problema en la barra lateral para enviarlo con capturas de pantalla.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"¡Bienvenido a dembrane!\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"¡Bienvenido!\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"¿Qué ha pasado? Pegue aquí una captura de pantalla para adjuntarla\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"¿Qué debe ECHO analizar o generar a partir de las conversaciones?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"¿Qué ha fallado?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Las conversaciones anónimas también desactivan la reproducción de audio, el descarga de audio y la retranscripción para proteger la privacidad de los participantes. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"MEmr1I\":[\"Cuando finalices la conversación, los participantes que no han verificado aún serán solicitados para verificar o saltar\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"¿Cuándo se debe generar el informe?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Trabaja con el nuevo asistente conversacional, sigue sesiones en el monitor en directo y usa el procesamiento de transcripción actualizado.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Espacio de trabajo / proyecto\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Valor predeterminado del espacio de trabajo\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Ajustes del espacio de trabajo\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Escribe instrucciones de verificación, genera resultados en el idioma del proyecto y recuerda a los participantes que verifiquen antes de terminar. Configura cada base jurídica.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Idioma o tono equivocado\"],\"MNTYHt\":[\"Fuentes equivocadas\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Tú\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"Puedes cambiarlo más tarde en los ajustes del espacio de trabajo después de añadir los datos de facturación.\"],\"uGP87g\":[\"Puedes cambiarlo más tarde en los ajustes del espacio de trabajo.\"],\"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.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"Puede intentarlo de nuevo a continuación.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Aún no has verificado ningún resultado. ¿Te gustaría verificar antes de terminar?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Pronto recibirá \",[\"objectLabel\"],\" para verificar.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"tu@ejemplo.es\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"¡Su aprobación nos ayuda a comprender lo que realmente piensa!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Tu correo electrónico\"],\"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.\"],\"vaTeZ3\":[\"Tu comentario y esta respuesta llegan al equipo de dembrane.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"La generación de tu último informe fue cancelada. Se muestra tu informe completado más reciente.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Su nombre\"],\"VSneAo\":[\"Se incluyen su nombre, su correo y la página actual para que podamos responderle.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"DrJCbp\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora. También puedes registrar otra conversación o compartir el código QR para que otras personas puedan contribuir.\"],\"7i36j4\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora. También puedes compartir el código QR para que otras personas puedan contribuir, o registrar otra conversación.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"No estás autenticado\"],\"You don't have permission to access this.\":[\"No tienes permiso para acceder a esto.\"],\"Resource not found\":[\"Recurso no encontrado\"],\"Server error\":[\"Error del servidor\"],\"Something went wrong\":[\"Algo salió mal\"],\"We're preparing your workspace.\":[\"Estamos preparando tu espacio de trabajo.\"],\"Preparing your dashboard\":[\"Preparando tu dashboard\"],\"Welcome back\":[\"Bienvenido de nuevo\"],\"participant.button.back.microphone\":[\"Volver\"],\"participant.mic.check.button.skip\":[\"Omitir\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\"La biblioteca tardará \",[\"duration\"]],\"uDvV8j\":[\"Enviar\"],\"aMNEbK\":[\"Desuscribirse de Notificaciones\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" disponible pronto\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorar\\\" disponible pronto\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verificar\\\" disponible pronto\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(opcional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" etiqueta\"],\"other\":[\"#\",\" etiquetas\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Mensaje de dembrane\"],\"other\":[\"Mensajes de dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Etiqueta:\"],\"other\":[\"Etiquetas:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" añadidas\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversaciones • Editado \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" aún no está en este espacio de trabajo.\"],\"RZUJFH\":[[\"0\"],\" aún no está en este espacio de trabajo. Pide a un administrador del espacio de trabajo que invite a esta persona.\"],\"iOmAhc\":[[\"0\"],\" aún no está en este espacio de trabajo. Envía una invitación y comparte este proyecto cuando se una.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" no añadidas\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" personas aún no están en este espacio de trabajo.\"],\"E6f0Mh\":[[\"0\"],\" personas aún no están en este espacio de trabajo. Pide a un administrador que las invite.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" vistas\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" personas ya estaban invitadas. El proyecto se comparte cuando se unan.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversaciones • Editado \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" seleccionadas\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" ya tiene una invitación pendiente para otro proyecto. Comparte este proyecto cuando se una.\"],\"zB7Coe\":[[\"email\"],\" está en la lista de invitaciones pendientes, pero el correo no se pudo enviar. Reenvíalo desde Miembros.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actualmente, \",\"#\",\" conversación está lista para ser analizada.\"],\"other\":[\"Actualmente, \",\"#\",\" conversaciones están listas para ser analizadas.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" leyendo ahora\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invitaciones enviadas. El proyecto se comparte cuando se unan.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" aún en proceso.\"],\"ZpJ0wx\":[\"*Transcripción en progreso.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversaciones\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspectos\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 vista\"],\"AeSuqs\":[\"1. Proporcionas una URL donde quieres recibir notificaciones\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. Cuando ocurre un evento de conversación o informe, enviamos automáticamente los datos a tu URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Tu sistema recibe los datos y puede actuar sobre ellos (por ejemplo, guardar en una base de datos, enviar un correo electrónico, actualizar una hoja de cálculo)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nombre amigable para identificar este webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Subidas de audio más fiables\"],\"XPY0OE\":[\"Un nuevo asistente y un monitor en directo\"],\"z9VxrW\":[\"Se generará y publicará automáticamente un nuevo informe en el horario programado.\"],\"sy1BvY\":[\"Un portal para participantes donde grabar conversaciones.\"],\"zm7GU7\":[\"Se requiere un enlace a la política de privacidad para el tratamiento basado en el consentimiento. Debe comenzar con http:// o https:// y tener como máximo 255 caracteres.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Un espacio de conversaciones más fluido\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Acceso\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Valor predeterminado de la cuenta\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Añadir\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Añadir contexto adicional (Opcional)\"],\"Se1KZw\":[\"Añade todos los que correspondan\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Añade conversaciones al contexto del chat, usa mejores plantillas de preguntas y opciones de transcripción actualizadas. Se corrigen citas de apoyo y traducciones.\"],\"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.\"],\"5phU36\":[\"Añadir imágenes\"],\"1xDwr8\":[\"Añade términos clave o nombres propios para mejorar la calidad y precisión de la transcripción.\"],\"ndpRPm\":[\"Añade nuevas grabaciones a este proyecto. Los archivos que subas aquí serán procesados y aparecerán en las conversaciones.\"],\"uqLJli\":[\"Añade personas por correo. Quien aún no esté en el espacio de trabajo recibe una invitación y acceso a este proyecto cuando se una.\"],\"1G8+6T\":[\"Añade personas por correo. Quien aún no esté en este espacio de trabajo recibe una invitación y el proyecto se comparte cuando se une.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Añadir Etiqueta\"],\"add.tag.filter.modal.title\":[\"Añadir etiqueta a los filtros\"],\"IKoyMv\":[\"Añadir Etiquetas\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Añadir a los filtros\"],\"NffMsn\":[\"Añadir a este chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Añadir Tema\"],\"AHaRrL\":[\"Añadir traducciones\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Añadir Webhook\"],\"UZ07em\":[\"Añadir tu primer Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Añadidas\"],\"QKlADn\":[[\"0\"],\" personas añadidas\"],\"z9TWoF\":[[\"granted\"],\" personas añadidas\"],\"q+wngh\":[\"Añadido y compartido\"],\"Na90E+\":[\"E-mails añadidos\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" al chat\"],\"select.all.modal.add.with.filters\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" con los siguientes filtros:\"],\"select.all.modal.add.without.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Añadiendo <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación más\"],\"other\":[\"#\",\" conversaciones más\"]}],\" con los siguientes filtros:\"],\"select.all.modal.loading.title\":[\"Añadiendo conversaciones\"],\"Du6bPw\":[\"Dirección\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Ajustar el tamaño de la fuente base para la interfaz\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Avanzado\"],\"OaKXud\":[\"Avanzado (Consejos y best practices)\"],\"JiIKww\":[\"Configuración Avanzada\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Ejecución guiada por herramientas\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Todo\"],\"cF7bEt\":[\"Todas las acciones\"],\"O1367B\":[\"Todas las colecciones\"],\"gvykaX\":[\"Todas las conversaciones\"],\"u/fl/S\":[\"Todas las archivos se han subido correctamente.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Todas las versiones en GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Todas las plantillas\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Todos los años\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Ya invitado. El proyecto se comparte cuando se una.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"Se enviará una notificación por correo electrónico a \",[\"0\"],\" participante\",[\"1\"],\". ¿Quieres continuar?\"],\"8q/YVi\":[\"Ocurrió un error al cargar el Portal. Por favor, contacta al equipo de soporte.\"],\"XyOToQ\":[\"Ocurrió un error.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"Ha ocurrido un error inesperado. Recargar la página o volver al inicio suele ayudar.\"],\"F4cOH1\":[\"Lenguaje de análisis\"],\"ZlwDi6\":[\"Analíticas\"],\"1x2m6d\":[\"Analiza estos elementos con profundidad y matiz. Por favor:\\n\\nEnfoque en las conexiones inesperadas y contrastes\\nPasa más allá de las comparaciones superficiales\\nIdentifica patrones ocultos que la mayoría de las analíticas pasan por alto\\nMantén el rigor analítico mientras sigues siendo atractivo\\nUsa ejemplos que iluminan principios más profundos\\nEstructura el análisis para construir una comprensión\\nDibuja insights que contradicen ideas convencionales\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"Dzr23X\":[\"Anuncios\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonimizar transcripción\"],\"gd1W+U\":[\"Anonimizar transcripciones\"],\"YdiKaK\":[\"conversación anónima\"],\"iPiP6k\":[\"Conversación anónima\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"¿Algo más?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Apariencia\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Aplicar\"],\"4TwsNi\":[\"Aplicar plantilla\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"aprobar\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Aprobado\"],\"tq+4rb\":[\"¿Estás seguro de que quieres eliminar el webhook \\\"\",[\"0\"],\"\\\"? Esta acción no se puede deshacer.\"],\"uqhbrg\":[\"¿Está seguro de que desea eliminar este chat? Esta acción no se puede deshacer.\"],\"Q5Z2wp\":[\"¿Estás seguro de que quieres eliminar esta conversación? Esta acción no se puede deshacer.\"],\"yrk3z3\":[\"¿Estás seguro de que quieres eliminar este tema personalizado? Esta acción no se puede deshacer.\"],\"YF1Re1\":[\"¿Estás seguro de que quieres eliminar este proyecto? Esta acción no se puede deshacer.\"],\"ELQ+fw\":[\"¿Estás seguro de que quieres eliminar este informe? Esta acción no se puede deshacer.\"],\"aUsm4A\":[\"¿Estás seguro de que quieres eliminar esta etiqueta? Esto eliminará la etiqueta de las conversaciones existentes que la contienen.\"],\"e3BGhi\":[\"¿Está seguro de que desea eliminar esta plantilla? Esta acción no se puede deshacer.\"],\"participant.modal.finish.message.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"sOql0x\":[\"¿Estás seguro de que quieres generar la biblioteca? Esto tomará un tiempo y sobrescribirá tus vistas e insights actuales.\"],\"UXCOMn\":[\"¿Estás seguro de que quieres regenerar el resumen? Perderás el resumen actual.\"],\"ZmeZPn\":[\"¿Está seguro de que desea eliminar su avatar?\"],\"wQ5jM6\":[\"¿Está seguro de que desea eliminar su logotipo personalizado? Se utilizará el logotipo predeterminado de dembrane.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Preguntar\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Pide a un administrador del espacio de trabajo que invite a esta persona.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"¿Preguntar por el email?\"],\"Rjlwvz\":[\"¿Preguntar por el nombre?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspecto\"],\"HkigHK\":[\"Aspectos\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Tienes que seleccionar al menos un tema para activar Verificar\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"El descarga de audio no está disponible para conversaciones anónimas\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La reproducción de audio no está disponible para conversaciones anónimas\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"El procesamiento y las subidas de audio son más robustos y la lista de conversaciones muestra totales más claros.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Consejo de audio\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"aL1eBt\":[\"Registros de auditoría exportados a CSV\"],\"mS51hl\":[\"Registros de auditoría exportados a JSON\"],\"z8CQX2\":[\"Código de autenticación\"],\"R+PyK8\":[\"Generar títulos automáticamente\"],\"voAvDv\":[\"Generar títulos automáticamente\"],\"Wrpmw7\":[\"Generado automáticamente o introducido manualmente\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Generar automáticamente un título corto basado en temas para cada conversación después de la resumen. El título describe lo que se discutió, no quién participó. El nombre original del participante se conserva por separado, si lo proporcionaron.\"],\"F95AYw\":[\"Guardar automáticamente las transcripciones en tu CRM o base de datos\"],\"WI8FHU\":[\"Selecciona automáticamente conversaciones relevantes para el chat y sigue sus referencias. Suscríbete a avisos de informes y usa subidas de audio y texto mejoradas.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Enviar automáticamente los datos de la conversación a tus otras herramientas y servicios cuando ocurran eventos.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar eliminado\"],\"jSKImf\":[\"Avatar actualizado\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Atrás\"],\"participant.button.back\":[\"Volver\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Volver a la selección\"],\"9aZHfH\":[\"Back to settings\"],\"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\"],\"g7YpV4\":[\"Antes de este historial de versiones\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Mejores comentarios, seguimiento más sencillo\"],\"5DnJa6\":[\"Mejores grabaciones, más formas de responder\"],\"9GKCNF\":[\"Mejores subidas, transcripciones y búsquedas\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Reservar una llamada\"],\"KKLfx1\":[\"Reserve una llamada con nosotros\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Ideas de brainstorming\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Correcciones de errores\"],\"4eBtkM\":[\"Construir paneles personalizados con datos de conversación en tiempo real\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"Al eliminar este proyecto, eliminará todos los datos asociados. Esta acción no se puede deshacer. ¿Está completamente seguro?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Cancelar la sobrescritura\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancelar programación\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"No se puede añadir una conversación vacía\"],\"SL9Qao\":[\"No se puede reprogramar dentro de los 10 minutos previos a la hora programada\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Tarjeta\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Cambiar idioma\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Cambiar contraseña\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Los cambios se guardarán automáticamente\"],\"xF/jsW\":[\"Cambiar el idioma durante una conversación activa puede provocar resultados inesperados. Se recomienda iniciar una nueva conversación después de cambiar el idioma. ¿Estás seguro de que quieres continuar?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Nombre del chat\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat con conversaciones individuales.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Los chats reciben títulos automáticos y el contexto incluye fechas y duraciones. Ve al último mensaje y usa un proceso de subida de audio más claro.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Los chats configurados en checo ahora responden en checo en vez de inglés.\"],\"gLvHXQ\":[\"Comprueba y elige el micrófono antes de grabar, consulta indicadores de calidad y usa transcripción multilingüe mejorada. Elige modos de resumen, lluvia de ideas o personalizados.\"],\"+e4Yxz\":[\"Verificar acceso al micrófono\"],\"participant.button.check.microphone.access\":[\"Verificar acceso al micrófono\"],\"WQUm5N\":[\"Revise el texto y las imágenes e inténtelo de nuevo\"],\"v4fiSg\":[\"Revisa tu correo electrónico\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Elegir un archivo de logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Elige espacios visibles, por invitación o privados. Los miembros cargan más rápido, las subidas te devuelven a tus conversaciones y los resúmenes y fusiones automáticos son más fiables.\"],\"okLwd9\":[\"Elegir desde tus otros proyectos\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Elegir cuándo quieres recibir notificaciones\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Elige el tema que prefieras para la interfaz\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Fuentes más claras en el chat\"],\"xOlaOX\":[\"Acceso más claro para administradores\"],\"B2pdef\":[\"Haz clic en \\\"Subir archivos\\\" cuando estés listo para iniciar el proceso de subida.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Haz clic para editar\"],\"jcSz6S\":[\"Haz clic para ver las \",[\"totalCount\"],\" conversaciones\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Cliente-manejado\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clonar desde otro proyecto\"],\"nCnTY0\":[\"Clonar desde proyecto\"],\"BPrdpc\":[\"Clonar proyecto\"],\"9U86tL\":[\"Clonar proyecto\"],\"yz7wBu\":[\"Cerrar\"],\"select.all.modal.close\":[\"Cerrar\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Colección\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Casos de uso comunes:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Comparar y Contrastar\"],\"CfO59/\":[\"Comparar y Contrastar Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Completar\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuar\"],\"7VpPHA\":[\"Confirmar\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirmar nueva contraseña\"],\"yjkELF\":[\"Confirmar Nueva Contraseña\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Publicar\"],\"vz1fGK\":[\"Confirmar reprogramación\"],\"L0k594\":[\"Confirma tu contraseña para generar un nuevo secreto para tu aplicación de autenticación.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Conectando a los servicios de informes...\"],\"wX/BfX\":[\"Conexión saludable\"],\"participant.modal.s3check.title\":[\"Problema de conexión\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Conexión no saludable\"],\"l9fkrm\":[\"Consentimiento\"],\"EhtOYz\":[\"El tratamiento basado en el consentimiento está activo sin enlace a la política de privacidad. Añada uno donde esté definida la base legal: los participantes deben poder leer la política de privacidad.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Contenido\"],\"M73whl\":[\"Contexto\"],\"VHSco4\":[\"Contexto añadido:\"],\"JX3KT4\":[\"Sugerencias contextuales\"],\"xGVfLh\":[\"Continuar\"],\"participant.ready.to.begin.button.text\":[\"Continuar\"],\"participant.button.continue\":[\"Continuar\"],\"F1pfAy\":[\"conversación\"],\"YyNOE7\":[\"Conversación\"],\"EiHu8M\":[\"Conversación añadida al chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Las referencias a conversaciones aparecen juntas bajo un único título Fuentes. El formulario de comentarios puede completar tu correo electrónico.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversación terminada\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Se simplifican las páginas y la carga de datos. La selección automática deja más espacio para respuestas y los anuncios generan menos notificaciones repetidas.\"],\"OtdHFE\":[\"Conversación eliminada del chat\"],\"zTKMNm\":[\"Estado de la conversación\"],\"Rdt7Iv\":[\"Detalles del estado de la conversación\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Los resúmenes ya no se bloquean en los casos de procesamiento afectados. Las conversaciones pausadas por límites del plan gratuito se retoman tras cambiar de plan.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Etiquetas de la conversación\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversaciones\"],\"EnJuK0\":[\"Conversaciones\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copiar enlace\"],\"H4brGj\":[\"Copiar enlace al portapapeles\"],\"AjrNNs\":[\"Copiar contenido del informe\"],\"vAkFou\":[\"Copiar secreto\"],\"v3StFl\":[\"Copiar Resumen\"],\"/4gGIX\":[\"Copiar al portapapeles\"],\"RTxUjI\":[\"Copiar al portapapeles\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copiando...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"No se pudo trasladar tu selección. Vuelve a elegir abajo.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"No se pudo copiar al portapapeles. Inténtelo de nuevo.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"No se pudo abrir la lista de conversaciones. Inténtalo de nuevo.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"No se guardó la valoración\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"No se ha podido enviar el aviso. Inténtelo de nuevo\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"No se pudo revocar la invitación\"],\"LPY4VY\":[\"No se pudo enviar la invitación\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Crear\"],\"VW1ecc\":[\"Crear un nuevo webhook desde cero\"],\"oJfYM5\":[\"Crear un breve de investigación desde las conversaciones recientes\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Crear biblioteca\"],\"bUyyzw\":[\"Crea varios informes por proyecto y guía su redacción con tus propias instrucciones. Los informes programados (beta) incluyen todas las conversaciones grabadas antes de la hora prevista. Crea, guarda y fija plantillas de chat personalizadas (beta). Esta versión también añade proyectos fijados, ajustes de perfil y chat en ucraniano.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Crear nueva vista\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Crear informe\"],\"A5hiCy\":[\"Crear plantilla\"],\"library.create.view\":[\"Crear vista\"],\"3D0MXY\":[\"Crear Vista\"],\"dkAPxi\":[\"Crear Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Creado el\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Recortar avatar\"],\"udBqWc\":[\"Recortar imagen\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recortar logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Logo actual\"],\"Pn2B7/\":[\"Contraseña actual\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Personalizado\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Nombre de archivo personalizado\"],\"GrXJvi\":[\"Logo personalizado\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Prompt de título personalizado\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Conversaciones en checo, respuestas en checo\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"URL del panel de control (enlace directo a la vista de conversaciones)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Fecha\"],\"ItMGda\":[\"Rango de fechas\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Predeterminado\"],\"ucTqrC\":[\"Predeterminado - Sin tutorial (Solo declaraciones de privacidad)\"],\"K/78Yl\":[\"Delegación de análisis multi-paso con ejecución de herramientas en vivo\"],\"cnGeoo\":[\"Eliminar\"],\"project.sidebar.chat.delete\":[\"Eliminar chat\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Eliminar chat\"],\"2GCE3m\":[\"Eliminar conversación\"],\"2DzmAq\":[\"Eliminar Conversación\"],\"j5pYC4\":[\"Eliminar tema personalizado\"],\"mp235G\":[\"Eliminar proyecto\"],\"++iDlT\":[\"Eliminar Proyecto\"],\"rUWrSE\":[\"Eliminar informe\"],\"qr0gpK\":[\"Eliminar etiqueta\"],\"DFjdv0\":[\"Eliminar plantilla\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Eliminar Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Los proyectos eliminados y las conversaciones pausadas por los límites del plan ya no provocan intentos repetidos de generar resúmenes.\"],\"+m7PfT\":[\"Eliminado con éxito\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"¿dembrane en tu evento?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"invitación a eventos dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot fue nuestro proyecto anterior. Gracias a los organizadores, participantes y colaboradores que ayudaron a darle forma.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Describa el problema\"],\"Fs/0D5\":[\"Describe lo que el modelo de lenguaje debe extraer o resumir de la conversación...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Determina bajo qué base legal del RGPD se tratan los datos personales de este proyecto.\"],\"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.\"],\"NMz7xK\":[\"Desarrolla un marco estratégico que impulse resultados significativos. Por favor:\\n\\nIdentifica objetivos centrales y sus interdependencias\\nMapa de implementación con plazos realistas\\nAnticipa obstáculos potenciales y estrategias de mitigación\\nDefine métricas claras para el éxito más allá de los indicadores de vanidad\\nResalta requisitos de recursos y prioridades de asignación\\nEstructura el plan para ambas acciones inmediatas y visión a largo plazo\\nIncluye puertas de decisión y puntos de pivote\\n\\nNota: Enfócate en estrategias que crean ventajas competitivas duraderas, no solo mejoras incrementales.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Desactivar 2FA\"],\"yrMawf\":[\"Desactivar autenticación de dos factores\"],\"E/QGRL\":[\"Desactivado\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Nombre para mostrar\"],\"fDGgw4\":[\"¿Necesito esto?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"¿Quieres estar en el bucle?\"],\"TvY/XA\":[\"Documentación\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Listo, contactadme\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Descargar\"],\"5YVf7S\":[\"Descargar todas las transcripciones de conversaciones generadas para este proyecto.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Descargar como\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Descargar Audio\"],\"N8MP2s\":[\"Descarga audio y organiza conversaciones\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Descarga audio, añade etiquetas desde el panel y usa resúmenes adaptados a la conversación. Se corrigen la edición y la vista previa del portal.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Descargar código QR\"],\"+bBcKo\":[\"Descargar transcripción\"],\"5XW2u5\":[\"Opciones de Descarga de Transcripción\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Borrador de acciones siguientes y organizarlas por prioridad\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Arrastra archivos de audio aquí o haz clic para seleccionar archivos\"],\"KGi3u9\":[\"Arrastrar para reordenar\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicar\"],\"lkz6PL\":[\"Duración\"],\"KIjvtr\":[\"Holandés\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"p. ej. \\\"Enfoque en temas de sostenibilidad\\\" o \\\"¿Qué piensan los participantes sobre la nueva política?\\\"\"],\"pO9dOq\":[\"por ejemplo, \\\"Usar frases de sustantivos cortas como 'Espacios verdes urbanos' o 'Empleo juvenil'. Evitar títulos genéricos.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"ej. Resumen semanal de partes interesadas\"],\"ffuZIY\":[\"por ejemplo, Notificaciones de Slack, Flujo de trabajo de Make\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Editar\"],\"9WkyHF\":[\"Editar Conversación\"],\"Y/3VME\":[\"Editar Tema Personalizado\"],\"/8fAkm\":[\"Editar nombre de archivo\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Modo edición\"],\"niSWGL\":[\"Editar opciones\"],\"G2KpGE\":[\"Editar Proyecto\"],\"DdevVt\":[\"Editar Contenido del Informe\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Edita informes directamente\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Edita informes, comprueba los micrófonos con más claridad en el portal y consulta mejores indicadores de carga y mensajes de error.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Correo electrónico\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@trabajo.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji mostrado junto al tema, por ejemplo: 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Vacío\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Activar 2FA\"],\"D3AnH0\":[\"Habilitar Explorar\"],\"4KKbfZ\":[\"Habilitar participación\"],\"G3dSLc\":[\"Habilitar Notificaciones de Reportes\"],\"ZUS4uO\":[\"Habilita esta función para permitir a los participantes solicitar respuestas impulsadas por IA durante su conversación. Los participantes pueden hacer clic en \\\"Explorar\\\" después de grabar sus pensamientos para recibir retroalimentación contextual, alentando una reflexión más profunda y una participación más intensa. Se aplica un período de enfriamiento entre solicitudes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Active esta función para permitir que los participantes verifiquen y aprueben \\\"resultados\\\" de sus envíos. Esto ayuda a cristalizar ideas clave, preocupaciones o resúmenes. Después de la conversación, puede filtrar las discusiones con resultados verificados y revisarlas en la descripción general.\"],\"C027jd\":[\"Habilitar anonimización de transcripciones\"],\"329BBO\":[\"Activar autenticación de dos factores\"],\"x35ZEt\":[\"Habilitar Verificar\"],\"RxzN1M\":[\"Habilitado\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"Inglés\"],\"GboWYL\":[\"Ingresa un término clave o nombre propio\"],\"TSHJTb\":[\"Ingresa un nombre para el nuevo conversation\"],\"KovX5R\":[\"Ingresa un nombre para tu proyecto clonado\"],\"DRYPFp\":[\"Ingresa una clave secreta\"],\"34YqUw\":[\"Ingresa un código válido para desactivar la autenticación de dos factores.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Introduzca la contraseña actual\"],\"2FPsPl\":[\"Ingresa el nombre del archivo (sin extensión)\"],\"VpwcSk\":[\"Introduzca la nueva contraseña\"],\"oIn7d4\":[\"Ingresa el código de 6 dígitos de tu aplicación de autenticación.\"],\"q1OmsR\":[\"Ingresa el código actual de seis dígitos de tu aplicación de autenticación.\"],\"NgaR6B\":[\"Ingresa tu contraseña\"],\"42tLXR\":[\"Ingresa tu consulta\"],\"HRbyGE\":[\"Ingresado por el participante en el portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error al clonar el proyecto\"],\"AEkJ6x\":[\"Error al crear el informe\"],\"edh3aY\":[\"Error al cargar el proyecto\"],\"4kVRov\":[\"Ocurrió un error\"],\"hmk+3M\":[\"Error al subir \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Eventos\"],\"VFClUG\":[\"Eventos a Escuchar\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Acceso al micrófono verificado con éxito\"],\"jqsg/I\":[\"Ejemplo de Payload de Webhook\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Salir de pantalla completa\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explorar\"],\"participant.echo.explore\":[\"Explorar\"],\"B7flm8\":[\"Explora temas recurrentes en la Library\"],\"EebTQD\":[\"Explora relatos y perspectivas con la plantilla de chat Narratives, en inglés y neerlandés.\"],\"HNnM2X\":[\"Explorar el archivo de dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Explorando \",[\"conversationCount\"],\" conversaciones\"],\"GS+Mus\":[\"Exportar\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Error\"],\"bh2Vob\":[\"Error al añadir la conversación al chat\"],\"ajvYcJ\":[\"Error al añadir la conversación al chat\",[\"0\"]],\"g5wCZj\":[\"Error al añadir conversaciones al contexto\"],\"pmwvUt\":[\"Error al aprobar el resultado. Por favor, inténtalo de nuevo.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Error al copiar el chat. Por favor, inténtalo de nuevo.\"],\"uvu6eC\":[\"No se pudo copiar la transcripción. Inténtalo de nuevo.\"],\"UQ6LqT\":[\"Error al crear el tema personalizado\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Error al eliminar el tema personalizado\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Error al eliminar la respuesta\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Error al finalizar la conversación. Por favor, inténtalo de nuevo.\"],\"vx5bTP\":[\"Error al generar \",[\"label\"],\". Por favor, inténtalo de nuevo.\"],\"Fa1ewI\":[\"Error al generar el resumen. Inténtalo de nuevo más tarde.\"],\"Z77bMM\":[\"Error al cargar los webhooks\"],\"T7KYJY\":[\"Error al marcar todos los anuncios como leídos\"],\"eGHX/x\":[\"Error al marcar el anuncio como leído\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Error al reconectar. Por favor, recarga la página.\"],\"SVtMXb\":[\"Error al regenerar el resumen. Por favor, inténtalo de nuevo más tarde.\"],\"h49o9M\":[\"Error al recargar. Por favor, inténtalo de nuevo.\"],\"rv8mO7\":[\"No se pudo eliminar el avatar\"],\"kE1PiG\":[\"Error al eliminar la conversación del chat\"],\"+piK6h\":[\"Error al eliminar la conversación del chat\",[\"0\"]],\"P9wLTJ\":[\"Error al eliminar el logo\"],\"IMUHg3\":[\"Error al reprogramar. Por favor, elija un horario mas lejano e intentelo de nuevo.\"],\"SmP70M\":[\"Error al retranscribir la conversación. Por favor, inténtalo de nuevo.\"],\"kClMar\":[\"Error al revisar el resultado. Por favor, inténtalo de nuevo.\"],\"wMEdO3\":[\"Error al detener la grabación al cambiar el dispositivo. Por favor, inténtalo de nuevo.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Error al actualizar el tema personalizado\"],\"BpuK7o\":[\"Error al actualizar la base legal\"],\"Avee+B\":[\"No se pudo actualizar el nombre\"],\"gnm1CH\":[\"Error al actualizar el pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"No se pudo subir el avatar\"],\"RW4V7P\":[\"Error al subir el logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Función disponible pronto\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Portal de comentarios\"],\"2roTVj\":[\"Comentario enviado\"],\"87gcCP\":[\"El archivo \\\"\",[\"0\"],\"\\\" excede el tamaño máximo de \",[\"1\"],\".\"],\"ena+qV\":[\"El archivo \\\"\",[\"0\"],\"\\\" tiene un formato no soportado. Solo se permiten archivos de audio.\"],\"LkIAge\":[\"El archivo \\\"\",[\"0\"],\"\\\" no es un formato de audio soportado. Solo se permiten archivos de audio.\"],\"RW2aSn\":[\"El archivo \\\"\",[\"0\"],\"\\\" es demasiado pequeño (\",[\"1\"],\"). El tamaño mínimo es \",[\"2\"],\".\"],\"+aBwxq\":[\"Tamaño del archivo: Mínimo \",[\"0\"],\", Máximo \",[\"1\"],\", hasta \",[\"MAX_FILES\"],\" archivos\"],\"UkgMPE\":[\"Nombre de archivo desde el archivo subido\"],\"5g0xbt\":[\"Filtrar registros de auditoría por acción\"],\"9clinz\":[\"Filtrar registros de auditoría por colección\"],\"O39Ph0\":[\"Filtrar por acción\"],\"DiDNkt\":[\"Filtrar por colección\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filtrar versiones por año\"],\"MRk67a\":[\"Encontrar contradicciones y sugerir preguntas de seguimiento\"],\"SdZBYB\":[\"Encuentra las conversaciones adecuadas para tu pregunta\"],\"oRQsgh\":[\"Encuentra espacios y mantén las conversaciones en marcha\"],\"p2j2po\":[\"Encuentra tu lugar en el chat\"],\"participant.button.stop.finish\":[\"Finalizar\"],\"participant.button.finish.text.mode\":[\"Finalizar\"],\"participant.button.finish\":[\"Finalizar\"],\"participant.modal.finish.title.text.mode\":[\"¿Estás seguro de que quieres terminar la conversación?\"],\"4dQFvz\":[\"Finalizado\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Enfoque\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"¿Olvidaste tu contraseña?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Francés\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcripción completa (cuando esté disponible)\"],\"3qkggm\":[\"Pantalla completa\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generar\"],\"EIdJgG\":[\"Generar un nuevo informe\"],\"QsUhrf\":[\"Generar un informe\"],\"GRy59I\":[\"Generar un resumen primero\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generar biblioteca\"],\"5SWGxv\":[\"Generar ahora\"],\"GWUJ9X\":[\"Generar ahora\"],\"QqIxfi\":[\"Generar secreto\"],\"gitFA/\":[\"Generar Resumen\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Recibe una respuesta durante una conversació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.\"],\"Pl6LQ+\":[\"Ponte en contacto\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Dame una lista de 5-10 temas que se están discutiendo.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Volver\"],\"participant.concrete.artefact.action.button.go.back\":[\"Volver\"],\"DXr0zk\":[\"Pantalla completa\"],\"iWpEwy\":[\"Ir al inicio\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Ir a la nueva conversación\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Buena respuesta\"],\"76gPWk\":[\"Entendido\"],\"hjZBYK\":[\"¿Tienes dos minutos? Cinco preguntas opcionales nos ayudan a prepararnos.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guía sobre cómo se generan los títulos. Los títulos describen el tema de la conversación, no el participante.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guiar el informe\"],\"myXGZW\":[\"Guiado\"],\"ZqBGoi\":[\"Tiene artefactos verificados\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Oculto\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Joya oculta\"],\"vLyv1R\":[\"Ocultar\"],\"eHo/Jc\":[\"Ocultar datos\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Ocultar datos de revisión\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"ocultar la invitación a eventos dembrane\"],\"V3NvRL\":[\"Ocultar la invitación a eventos dembrane forma parte de un plan de pago.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Destacado\"],\"tn75xn\":[\"Concepto específico resaltado\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Inicio\"],\"Ai2U7L\":[\"Anfitrión\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Comentarios del anfitrión\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Cómo funciona:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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?\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"Entiendo\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identifica temas recurrentes, temas y argumentos que aparecen consistentemente en las conversaciones. Analiza su frecuencia, intensidad y consistencia. Salida esperada: 3-7 aspectos para conjuntos de datos pequeños, 5-12 para conjuntos de datos medianos, 8-15 para conjuntos de datos grandes. Guía de procesamiento: Enfócate en patrones distintos que emergen en múltiples conversaciones.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Si lo que has detectado implica datos visibles para personas equivocadas, alguien con un acceso que no debería tener, o una posible vulnerabilidad de seguridad, utiliza nuestro <0>formulario de notificación de seguridad. Llega a otro equipo por una vía más rápida. Para cualquier urgencia, escribe a <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"Si está satisfecho con \",[\"objectLabel\"],\", haga clic en \\\"Aprobar\\\" para mostrar que se siente escuchado.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"Si no estás seguro, probablemente no lo necesites todavía. Los webhooks son una característica avanzada típicamente utilizada por desarrolladores o equipos con integraciones personalizadas. Puedes configurarlas siempre más tarde.\"],\"hDVOQQ\":[\"Si estás configurando integraciones de webhook, nos encantaría conocer tu caso de uso. También estamos construyendo características de observabilidad, incluyendo registros de auditoría y seguimiento de entrega.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Las imágenes deben pesar menos de \",[\"MAX_FILE_MB\"],\" MB\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Mejoras\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Incluir enlace del portal\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Incorrecto o inventado\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instrucciones para generar el resultado de la verificación\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Presentamos Popcorn\"],\"crUYYp\":[\"Código inválido. Por favor solicita uno nuevo.\"],\"jLr8VJ\":[\"Credenciales inválidas.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invitación enviada a \",[\"email\"],\". El proyecto se comparte cuando se una.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invitación enviada. El proyecto se comparte cuando se una.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invitar al espacio de trabajo y compartir\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Dirección IP\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"Parece que la conversación se eliminó mientras grababas. Hemos detenido la grabación para evitar cualquier problema. Puedes iniciar una nueva en cualquier momento.\"],\"library.not.available.message\":[\"Parece que la biblioteca no está disponible para tu cuenta. Por favor, solicita acceso para desbloquear esta funcionalidad.\"],\"participant.outcome.error.description\":[\"No pudimos cargar este resultado. Esto podría ser un problema temporal. Puede intentar recargar o volver atrás para seleccionar un tema diferente.\"],\"5dxEAB\":[\"Parece que aún no tiene un informe para este proyecto. Genere uno para obtener una descripción general de sus conversaciones.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Suena como si hablaran más de una persona. Tomar turnos nos ayudará a escuchar a todos claramente.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italiano (solo funciones de ECHO, Transcripción y Resúmenes)\"],\"1BIvTp\":[\"Italiano para tus funciones principales\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Unirse a esta sesión del portal\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Un momento\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Mantén activos los dispositivos de grabación\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Sigue trabajando durante las subidas de audio, busca etiquetas y consulta el progreso de transcripción. La reproducción mejorada y una selección más pertinente facilitan el análisis.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Idioma\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Última vez guardado el \",[\"0\"]],\"K7P0jz\":[\"Última actualización\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Último\"],\"lchnsl\":[\"Última versión\"],\"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\"],\"J8VWes\":[\"Déjanos tu correo para que podamos contactarte.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Base legal\"],\"vRXsmZ\":[\"Base Legal\"],\"CopiEV\":[\"Base legal guardada\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Biblioteca\"],\"library.title\":[\"Biblioteca\"],\"T50lwc\":[\"La creación de la biblioteca está en progreso\"],\"gkv8iG\":[\"Matrícula\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Enlace\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Enlace a la política de privacidad que se muestra a los participantes\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Vivo\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Modo de ejecución de agente en vivo\"],\"participant.live.audio.level\":[\"Nivel de audio en vivo\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Vista Previa en Vivo\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Cargando\"],\"participant.verify.instructions.loading\":[\"Cargando\"],\"yQ9yN3\":[\"Cargando acciones...\"],\"participant.concrete.loading.artefact\":[\"Cargando artefacto\"],\"JOvnq+\":[\"Cargando registros de auditoría…\"],\"y+JWgj\":[\"Cargando colecciones...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Cargando micrófonos...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Cargando transcripción...\"],\"3SKW0s\":[\"Cargando temas de verificación…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"cargando...\"],\"Z3FXyt\":[\"Cargando...\"],\"Pwqkdw\":[\"Cargando…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Iniciar sesión\"],\"LM/dWU\":[\"Iniciar sesión | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo eliminado\"],\"MjfaMh\":[\"Logo actualizado\"],\"nOhz3x\":[\"Cerrar sesión\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Más largo primero\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Gestionar plantillas\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Las conexiones MCP permiten que tu agente encuentre proyectos, busque conversaciones, lea transcripciones y consulte documentación, con controles de la organización y consentimiento explícito.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Notas de Reunión\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Mensajes de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"El acceso al micrófono sigue denegado. Por favor verifica tu configuración e intenta de nuevo.\"],\"azjxk1\":[\"No responde a la pregunta\"],\"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\"],\"f8jrkd\":[\"más\"],\"2FYpfJ\":[\"Más\"],\"JcD7qf\":[\"Más acciones\"],\"rAPyBz\":[\"Anonimización y grabación más fiables\"],\"MmhZK+\":[\"Resúmenes de conversaciones más fiables\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Contexto de chat más útil\"],\"QWdKwH\":[\"Mover\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Mover Conversación\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Mover a otro Proyecto\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Mover a Proyecto\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Debe ser al menos 10 minutos en el futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"Mis plantillas\"],\"6YtxFj\":[\"Nombre\"],\"e3/ja4\":[\"Nombre A-Z\"],\"8/brI5\":[\"El nombre es requerido\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Nombre actualizado\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Nombre Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"Nuevo\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"Nuevo nombre de conversación\"],\"u2uElg\":[\"Nuevas conversaciones agregadas desde este informe\"],\"library.new.conversations\":[\"Se han añadido nuevas conversaciones desde que se generó la biblioteca. Regenera la biblioteca para procesarlas.\"],\"/yIxDf\":[\"Nuevas funciones\"],\"QnAEjj\":[\"Nuevas funciones, mejoras y correcciones en dembrane.\"],\"CSz4y/\":[\"Nuevo diseño, nuevas funciones\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Nueva contraseña\"],\"7vhWI8\":[\"Nueva Contraseña\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"Nuevo informe\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Más nuevos primero\"],\"hXzOVo\":[\"Siguiente\"],\"participant.button.next\":[\"Siguiente\"],\"participant.verify.selection.button.next\":[\"Siguiente\"],\"participant.verify.instructions.button.next\":[\"Siguiente\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No se encontraron acciones\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No hay registros de auditoría que coincidan con los filtros actuales.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No se encontraron chats. Inicia un chat usando el botón \\\"Preguntar\\\".\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No se encontraron colecciones\"],\"zsslJv\":[\"No hay contenido\"],\"1pZsdx\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"library.no.conversations\":[\"No hay conversaciones disponibles para crear la biblioteca\"],\"EtMtH/\":[\"No se encontraron conversaciones.\"],\"BuikQT\":[\"No se encontraron conversaciones. Inicia una conversación usando el enlace de invitación de participación desde la <0><1>vista general del proyecto.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No se procesaron conversaciones. Esto puede ocurrir si todas las conversaciones ya están en el contexto o no coinciden con los filtros seleccionados.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Aun no hay conversaciones. Puede programar un informe ahora y las conversaciones se incluiran una vez que se agreguen.\"],\"oaDwXD\":[\"Sin valor predeterminado (se aplica la gestión por el cliente)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Todavía no hay valoraciones.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No se han detectado nuevos comentarios aún. Por favor, continúa tu discusión y vuelve a intentarlo pronto.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Aún no hay nadie en la organización.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No se encontraron proyectos \",[\"0\"]],\"y29l+b\":[\"No se encontraron proyectos para el término de búsqueda\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Aún no hay notas de versión.\"],\"ctlSnm\":[\"No se encontró ningún informe\"],\"1iQvuD\":[\"Aún no hay informes\"],\"Ev2r9A\":[\"Sin resultados\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No se encontraron etiquetas\"],\"LcBe0w\":[\"Aún no se han añadido etiquetas a este proyecto. Añade una etiqueta usando el campo de texto de arriba para comenzar.\"],\"KE6RCJ\":[\"Ninguna plantilla coincide con {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No hay transcripción disponible\"],\"vq+6l+\":[\"Aún no existe transcripción para esta conversación. Por favor, revisa más tarde.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No se seleccionaron archivos de audio válidos. Por favor, selecciona solo archivos de audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No hay temas de verificación configurados para este proyecto.\"],\"pdWSGS\":[\"No hay temas de verificación disponibles.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No hay webhooks configurados\"],\"/PUkCU\":[\"No se encontraron webhooks\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"No añadidas\"],\"OJx3wK\":[\"No disponible\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notificar a los participantes cuando se publique un informe.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Más antiguos primero\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Una vez que haya discutido, presione \\\"revisar\\\" para que \",[\"objectLabel\"],\" cambie y refleje su discusión.\"],\"participant.verify.instructions.read.aloud\":[\"Una vez que reciba \",[\"objectLabel\"],\", léalo en voz alta y comparta en voz alta lo que desea cambiar, si es necesario.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"En curso\"],\"conversation.ongoing\":[\"En curso\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Solo cambia este ajuste en consulta con la(s) persona(s) responsable(s) del cumplimiento de la normativa de protección de datos dentro de tu organización.\"],\"z7dMhl\":[\"Solo se pueden adjuntar imágenes\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Solo los administradores del espacio de trabajo pueden cambiar la base legal.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"¡Ups! Parece que se denegó el acceso al micrófono. ¡No te preocupes! Tenemos una guía de solución de problemas para ti. Siéntete libre de consultarla. Una vez que hayas resuelto el problema, vuelve a visitar esta página para verificar si tu micrófono está listo.\"],\"1TNIig\":[\"Abrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Ver grabación\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Abrir guía de solución de problemas\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Abre tu aplicación de autenticación e ingresa el código actual de seis dígitos.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Opcional\"],\"ZFIvWo\":[\"Opcional (recurre al inglés)\"],\"V44CS4\":[\"Campo opcional en la página de inicio\"],\"bkndzy\":[\"Campo opcional en la página de agradecimientos\"],\"xam4uE\":[\"Pregunta opcional \",[\"0\"],\" de \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Los administradores de la organización pueden unirse a espacios privados desde la página de miembros. Los controles explican cuándo debes unirte primero a un espacio.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organizaciones, espacios de trabajo y proyectos\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organiza el trabajo en espacios, invita a colaboradores externos y observadores y gestiona accesos desde la nueva barra lateral. Mueve conversaciones entre proyectos y proyectos entre espacios.\"],\"+g4lbW\":[\"Organiza tu trabajo en organizaciones, espacios de trabajo y proyectos, con más control sobre quién tiene acceso.\"],\"ucgZ0o\":[\"Organización\"],\"/IX/7x\":[\"Otro\"],\"x0FjQV\":[\"Nuestra primera versión principal\"],\"GC75c7\":[\"Resultado aprobado correctamente!\"],\"QLXrh9\":[\"Resultado recargado correctamente!\"],\"LJg1UW\":[\"Resultado revisado correctamente!\"],\"df3S+R\":[\"Resultado actualizado!\"],\"1fjbvD\":[\"resultados\"],\"ZU3zZC\":[\"Resultados\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Sobrescrito para este proyecto\"],\"AR/qbs\":[\"Sobrescribir para este proyecto\"],\"6/dCYd\":[\"Vista General\"],\"/fAXQQ\":[\"Overview - Temas y patrones\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Contenido de la Página\"],\"8F1i42\":[\"Página no encontrada\"],\"6+Py7/\":[\"Título de la Página\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participante\"],\"h3AUOJ\":[\"Correo electrónico del participante\"],\"WdEzKM\":[\"Correos electrónicos del participante\"],\"Uc9fP1\":[\"Funciones para participantes\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Nombre y correo electrónico del participante\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Los participantes pueden pedir una respuesta mientras graban y leerla a medida que llega. Los anfitriones activan las respuestas y personalizan la instrucción en ajustes del portal.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Los participantes pueden verificar resultados y refinar respuestas. Nuevos modos y sugerencias apoyan el análisis, y la autenticación en dos pasos amplía las opciones de acceso.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Los participantes podrán seleccionar etiquetas al crear conversaciones\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Contraseña\"],\"zJx6Vx\":[\"Contraseña cambiada\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Las contraseñas no coinciden\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pausar lectura\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pendiente\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"La información personal será reemplazada por marcadores. La reproducción de audio, descarga y retranscripción se desactivarán para la nueva conversación.\"],\"zmwvG2\":[\"Teléfono\"],\"B8mlc2\":[\"Elija una fecha\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Elegir una hora ahora\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Elige el enfoque que encaje con tu pregunta\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Fijar\"],\"u8qC4w\":[\"Fijar proyecto\"],\"S+WiJ3\":[\"Fije plantillas aquí para acceso rápido.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Fijados está lleno (máx. 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Plantillas fijadas\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Por favor, permite el acceso al micrófono para iniciar el test.\"],\"SQSc5o\":[\"Por favor, revisa más tarde o contacta al propietario del proyecto para más información.\"],\"T8REcf\":[\"Por favor, revisa tus entradas para errores.\"],\"n6oAnk\":[\"Por favor, habilite la participación para habilitar el uso compartido\"],\"fwrPh4\":[\"Por favor, ingrese un correo electrónico válido.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Grabe su respuesta haciendo clic en el botón \\\"Grabar\\\" a continuación. También puede responder en texto haciendo clic en el icono de texto.\\n**Mantenga esta pantalla encendida**\\n(pantalla negra = no está grabando)\"],\"Lu1j4b\":[\"Grabe su respuesta haciendo clic en el botón \\\"Grabar\\\" a continuación. También puede responder en texto haciendo clic en el icono de texto.\\n**Mantenga esta pantalla encendida**\\n(pantalla negra = no está grabando).\\nEsta transcripción será anonimizada y su anfitrión no podrá escuchar su grabación.\"],\"library.processing.request\":[\"Biblioteca en proceso\"],\"04DMtb\":[\"Por favor, espera mientras procesamos tu solicitud de retranscripción. Serás redirigido a la nueva conversación cuando esté lista.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG o WebP. Se recortará en un círculo.\"],\"jjdudv\":[\"Mala respuesta\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Contenido del Portal\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Editor del Portal\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Prepara sesiones con una guía editable, recoge correos y anonimiza transcripciones. Esta actualización también introduce logotipos propios y títulos automáticos de conversaciones.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparando tu experiencia\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Vista previa: El zorro rápido salta sobre el perro perezoso.\"],\"DHhJ7s\":[\"Anterior\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Imprimir / Guardar PDF\"],\"S8ugMC\":[\"Imprimir informe\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL de la política de privacidad\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuar\"],\"select.all.modal.proceed\":[\"Continuar\"],\"select.all.modal.loading.description\":[\"Procesando <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" y añadiéndolas a tu chat\"],\"gzGDMM\":[\"Procesando tu solicitud de retranscripción...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Búsqueda de proyectos y conversaciones, con códigos QR personalizados.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Proyecto creado\"],\"zjTrs1\":[\"Valor predeterminado del proyecto: activado. La información personal será reemplazada por marcadores. La reproducción de audio, descarga y retranscripción se desactivarán para la nueva conversación.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Resumen Meta del Proyecto\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Nombre del proyecto\"],\"3gh0L6\":[\"Nombre y ID del proyecto\"],\"6Z2q2Y\":[\"El nombre del proyecto debe tener al menos 4 caracteres\"],\"n7JQEk\":[\"Proyecto no encontrado\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Vista General del Proyecto | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Configuración del Proyecto\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Proyectos\"],\"DK5DV3\":[\"Proyectos | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Proporciona una visión general de los temas principales y los temas recurrentes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publicar\"],\"vsX8VJ\":[\"Publique este informe primero para mostrar el enlace del portal\"],\"IHzoSN\":[\"Publique este informe para obtener un enlace para compartir\"],\"u3wRF+\":[\"Publicado\"],\"E7YTYP\":[\"Saca las citas más potentes de esta sesión\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Pregunta\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Valoración\"],\"wr9IYa\":[\"Vuelva a introducir la nueva contraseña\"],\"0ZBIgY\":[\"Reutilizar configuraciones de un webhook existente\"],\"Z5Tlsx\":[\"Contactadme\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Leer en voz alta\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"¿Listo para comenzar?\"],\"ShoKlK\":[\"¿Listo para conectar tus herramientas? Agrega un webhook para recibir automáticamente los datos de las conversaciones cuando ocurran eventos.\"],\"VJScHU\":[\"Motivo\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Aplicaciones recomendadas\"],\"participant.button.s3check.reconnect\":[\"Reconectar\"],\"participant.button.interruption.reconnect\":[\"Reconectar\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Grabar\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Registrar otra conversación\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Los dispositivos permanecen activos de forma más fiable. Se corrigen la bienvenida, el refinamiento de respuestas y la selección de conversaciones en el chat Specific Details.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Grabación interrumpida\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Grabación pausada\"],\"/l7qFE\":[\"Grabación iniciada\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recrear vista\"],\"view.recreate.modal.title\":[\"Recrear vista\"],\"CqnkB0\":[\"Temas recurrentes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"Referencias\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Actualizar\"],\"ZMXpAp\":[\"Actualizar registros de auditoría\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerar\"],\"PpFJd2\":[\"Regenerar resumen\"],\"bluvj0\":[\"Regenerar Resumen\"],\"participant.regenerating.outcome\":[\"Regenerando el resultado\"],\"oYlYU+\":[\"Regenerando el resumen. Espera...\"],\"HPitDS\":[\"Registrar | dembrane\"],\"/PACVa\":[\"Notas de versión\"],\"Gm7/K+\":[\"Notas de versión | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Vídeo de la versión: \",[\"0\"]],\"tF5Smn\":[\"Recargar la página\"],\"participant.button.reload.page.text.mode\":[\"Recargar\"],\"participant.button.reload\":[\"Recargar\"],\"participant.concrete.artefact.action.button.reload\":[\"Recargar página\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Recordar a los usuarios que verifiquen antes de finalizar\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Eliminar\"],\"w61W3L\":[\"Quitar \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Eliminar avatar\"],\"Kl7//J\":[\"Eliminar Correo Electrónico\"],\"cILfnJ\":[\"Eliminar archivo\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Eliminar de este chat\"],\"O90CN2\":[\"Eliminar logotipo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Eliminar la sobrescritura\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Renombrar\"],\"6PsaMr\":[\"Renombrar chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Grabación\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de Respuesta\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Informe\"],\"e/MQa5\":[\"El informe ya se está generando\"],\"Q3LOVJ\":[\"Informar de un problema\"],\"DUmD+q\":[\"Informe creado - \",[\"0\"]],\"hh/mvZ\":[\"Generación del informe cancelada\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Generación del informe en curso...\"],\"v7O77U\":[\"La generación del informe fue cancelada. Puedes iniciar un nuevo informe a continuación.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Informa de problemas con imágenes o voz, valora respuestas del chat y solicita un plan adecuado. Define una base jurídica predeterminada para tu espacio de trabajo.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Notificaciones de Reportes\"],\"M9snPp\":[\"Informe programado\"],\"6g+4DA\":[\"Aviso enviado. Gracias\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Las plantillas de informes están en nuestra hoja de ruta.\"],\"lNo4U2\":[\"Informe actualizado - \",[\"0\"]],\"t9yxlZ\":[\"Informes\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Solicitar Acceso\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Solicitar Restablecimiento de Contraseña\"],\"8H5nRH\":[\"Solicitar Restablecimiento de Contraseña | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Por favor, espera mientras verificamos el acceso al micrófono.\"],\"TMLAx2\":[\"Requerido\"],\"0Hf+6m\":[\"Requiere que \\\"Solicitar correo electrónico?\\\" esté habilitado\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reprogramar\"],\"6eIR/n\":[\"Reprogramar para\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Restablecer\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Restablecer Contraseña\"],\"9uplIY\":[\"Restablecer Contraseña | dembrane\"],\"L+rMC9\":[\"Restablecer a valores predeterminados\"],\"kX8Fjz\":[\"Comentarios sobre la respuesta\"],\"participant.button.stop.resume\":[\"Reanudar\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribir\"],\"ehyRtB\":[\"Retranscribir conversación\"],\"1JHQpP\":[\"Retranscribir conversación\"],\"+gmVxi\":[\"La retranscripción no está disponible para conversaciones anónimas\"],\"MXwASV\":[\"La retranscripción ha comenzado. La nueva conversación estará disponible pronto.\"],\"6gRgw8\":[\"Reintentar\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Reintentar subida\"],\"2fCpt5\":[\"Volver al inicio\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Revisa la actividad de tu espacio de trabajo. Filtra por colección o acción, y exporta la vista actual para una investigación más detallada.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Revisar archivos antes de subir\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Revisar el estado de procesamiento para cada conversación recopilada en este proyecto.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"revisar\"],\"OG3mVO\":[\"Revisión #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"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\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Filas por página\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Vuelve a transcribir una conversación existente. También se actualiza la documentación en neerlandés.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Guardar\"],\"participant.concrete.action.button.save\":[\"guardar\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Guardar como plantilla\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Guardar Cambios\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"¡Error al guardar!\"],\"5dVjYt\":[\"Guardar plantilla\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Guardando...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Escanea el código QR o copia el secreto en tu aplicación.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Escanea para iniciar una nueva sesión del portal\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Programar\"],\"wCGy0o\":[\"Programar informe\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Informes programados y plantillas personalizadas\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Desplazarse al final\"],\"A1taO8\":[\"Buscar\"],\"select.all.modal.loading.search\":[\"Buscar\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Busca y selecciona las conversaciones para este chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Buscar conversaciones\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Buscar proyectos\"],\"I0hU01\":[\"Buscar Proyectos\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Buscar proyectos...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Buscar etiquetas\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Buscar templates...\"],\"select.all.modal.search.text\":[\"Texto de búsqueda:\"],\"nhvuQF\":[\"Buscar webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Buscó en las fuentes más relevantes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secreto\"],\"Y1y+VB\":[\"Secreto copiado\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"Hasta pronto\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Seleccionar un micrófono\"],\"s5OrCL\":[\"Selecciona un webhook para clonar\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Seleccionar todo\"],\"+fRipn\":[\"Seleccionar todo (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Selecciona todas las conversaciones o las filtradas para el chat y filtra pulsando una etiqueta. Las subidas de grabaciones son más fiables y los avisos de alta demanda más claros.\"],\"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\"],\"qtJxoV\":[\"Seleccionar varias conversaciones\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Seleccionar Proyecto\"],\"ekUnNJ\":[\"Seleccionar etiquetas\"],\"CG1cTZ\":[\"Selecciona las instrucciones que se mostrarán a los participantes cuando inicien una conversación\"],\"qxzrcD\":[\"Selecciona el tipo de retroalimentación o participación que quieres fomentar.\"],\"QdpRMY\":[\"Seleccionar tutorial\"],\"Dh99yE\":[\"Seleccione hasta 2 areas de enfoque para su informe\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Seleccione qué temas pueden usar los participantes para \\\"Verificar\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Seleccionar un micrófono\"],\"gU5H9I\":[\"Archivos seleccionados (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Micrófono seleccionado\"],\"tP/pEQ\":[\"Selección demasiado grande\"],\"select.all.modal.context.limit.reached\":[\"Selección demasiado grande. Algunas conversaciones no se añadieron.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Enviar\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Enviar invitación\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Enviar aviso\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Enviar notificaciones de Slack/Teams cuando se completen nuevas conversaciones\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nombre de la Sesión\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Configuración\"],\"participant.settings.modal.title\":[\"Configuración\"],\"BVRW7i\":[\"Configuración | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Define cómo se verifican los resultados\"],\"Z8lGw6\":[\"Compartir\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Compartir portal\"],\"OuFYHU\":[\"Compartir informe\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Compartir con \",[\"0\"],\" personas\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Compartir con todo el espacio de trabajo\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Comparte tus detalles aquí\"],\"nnWGzO\":[\"Comparta sus ideas con nuestro equipo\"],\"4o0klJ\":[\"Comparta su voz escaneando el codigo QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Al compartir un proyecto privado con alguien que no es miembro, ahora se ofrece una invitación en lugar de un error. Recibe acceso cuando se une al espacio de trabajo.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Más corto primero\"],\"8vETh9\":[\"Mostrar\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Mostrar reproductor de audio\"],\"pzaNzD\":[\"Mostrar datos\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Mostrar direcciones IP\"],\"6lGV3K\":[\"Mostrar menos\"],\"fMPkxb\":[\"Mostrar más\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Mostrar código QR\"],\"3bGwZS\":[\"Mostrar referencias\"],\"OV2iSn\":[\"Mostrar datos de revisión\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Mostrar la invitación\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Mostrando \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" de \",[\"totalItems\"],\" entradas\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" de \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Mostrando su informe completado más reciente.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Omitir\"],\"participant.button.verify_prompt.skip\":[\"Omitir\"],\"select.all.modal.context.limit.reached.description\":[\"Omitidas porque la selección era demasiado grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Comunidad de Slack\"],\"dE/7ox\":[\"Grabaciones más fluidas y preguntas más rápidas\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Algunos archivos ya estaban seleccionados y no se agregarán dos veces.\"],\"select.all.modal.skip.disclaimer\":[\"Algunas pueden omitirse (sin transcripción o selección demasiado grande).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Algo está bloqueando tu conexión. Tu audio no se guardará a menos que se resuelva este problema.\"],\"nwtY4N\":[\"Algo salió mal\"],\"participant.conversation.error.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"mwpVVD\":[\"Algo salió mal al generar su último informe.\"],\"2WNFmv\":[\"Algo salió mal al generar su informe.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Algo salió mal al exportar los registros de auditoría.\"],\"q9A2tm\":[\"Algo salió mal al generar el secreto.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Algo salió mal. Inténtelo de nuevo presionando el botón <0>Explorar, o contacte con soporte si el problema continúa.\"],\"fWsBTs\":[\"Algo salió mal. Por favor, inténtalo de nuevo.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Lo sentimos, no podemos procesar esta solicitud debido a la política de contenido del proveedor de LLM.\"],\"f6Hub0\":[\"Ordenar\"],\"/AhHDE\":[\"Fuente \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Español\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Contexto Específico\"],\"mORM2E\":[\"Detalles concretos\"],\"Etejcu\":[\"Detalles concretos - Conversaciones seleccionadas\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Comenzar desde cero\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Iniciar nueva conversación\"],\"participant.button.start.new.conversation\":[\"Iniciar nueva conversación\"],\"i88wdJ\":[\"Empezar de nuevo\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Empieza a grabar sin duplicar conversaciones, consulta la hora real de inicio y usa plantillas guardadas desde Ask. Las novedades de la barra lateral muestran un contador de no leídas.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Estado\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Detener\"],\"participant.button.stop\":[\"Detener\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Planificación Estratégica\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Enviar\"],\"participant.button.submit.text.mode\":[\"Enviar\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Éxito\"],\"aG+cH9\":[\"Sugerir sugerencias dinámicas basadas en su conversación.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Sugerido:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Resumir\"],\"5Y4tAB\":[\"Resume esta entrevista en un artículo para compartir\"],\"dXoieq\":[\"Resumen\"],\"+bZY9/\":[\"Resumen (cuando esté disponible)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"El resumen estará disponible cuando la conversación esté transcrita\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Formatos soportados: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Claro\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Cambiar a entrada de texto\"],\"5dzzI6\":[\"Desactivarla forma parte de un plan de pago.\"],\"D+NlUC\":[\"Sistema\"],\"woaefe\":[\"Valor predeterminado del sistema\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Etiquetas\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Plantilla aplicada\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Nombre de plantilla\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Plantillas\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Testear Webhook\"],\"xeiujy\":[\"Texto\"],\"mFQRXn\":[\"Aportaciones de texto y formularios de seguimiento.\"],\"CPN34F\":[\"¡Gracias por participar!\"],\"u+Whi9\":[\"Contenido de la Página de Gracias\"],\"1LLF3Z\":[\"¡Gracias!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Gracias, nos pondremos en contacto en un día.\"],\"2yHHa6\":[\"Ese código no funcionó. Inténtalo de nuevo con un código nuevo de tu aplicación de autenticación.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Eso no parece una dirección de correo electrónico.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"Eso es todo, gracias\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"El código no ha funcionado, inténtalo otra vez.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"participant.conversation.error.loading\":[\"Algo salió mal con la conversación. Por favor, inténtalo de nuevo o contacta al soporte si el problema persiste\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"El endpoint donde enviaremos los datos. Obtén esto de tu servicio de recepción (por ejemplo, Zapier, Make, o tu propio servidor).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"La primera versión principal establece el proyecto bajo la Business Source License 1.1.\"],\"Jo19Pu\":[\"Las siguientes conversaciones se agregaron automáticamente al contexto\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"La Library ofrece vistas más claras de temas recurrentes. Las plantillas siguen accesibles, las conversaciones tienen enlaces directos y las subidas son más fáciles de seguir.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"El informe puede comenzar hasta 5 minutos después de la hora elegida.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"hTCMdd\":[\"Estamos generando el resumen. Espera a que esté disponible.\"],\"+AT8nl\":[\"Estamos regenerando el resumen. Espera a que esté disponible.\"],\"9DPC4t\":[\"La página de agradecimiento termina con una tarjeta que invita a los participantes a organizar su propio evento con dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"La URL del webhook y los eventos se clonarán. Necesitarás volver a introducir el secreto si se configuró uno.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Tema\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"Hubo un error al clonar tu proyecto. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"JDFjCg\":[\"Hubo un error al crear tu informe. Por favor, inténtalo de nuevo o contacta al soporte.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"Estas conversaciones fueron excluidas debido a la falta de transcripciones.\"],\"8xYB4s\":[\"Estas plantillas de vista predeterminadas se generarán cuando crees tu primera biblioteca.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Pensando...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Esto puede ocurrir cuando una VPN o un firewall está bloqueando la conexión. Intenta desactivar tu VPN, cambiar a otra red (p. ej., punto de acceso móvil) o contacta con tu departamento de TI para obtener ayuda.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Esta conversación tiene las siguientes copias:\"],\"conversation.linking_conversations.description\":[\"Esta conversación es una copia de\"],\"SzU1mG\":[\"Este correo electrónico ya está en la lista.\"],\"participant.modal.refine.info.available.in\":[\"Esta función estará disponible en \",[\"remainingTime\"],\" segundos.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Esta información está anónima\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Esta es una vista previa en vivo del portal del participante. Necesitarás actualizar la página para ver los cambios más recientes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"Este es un ejemplo de los datos JSON enviados a tu URL de webhook cuando se resume una conversación.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Está configurado el tratamiento basado en el consentimiento sin enlace a la política de privacidad. Añada uno para que este ajuste siga siendo válido: los participantes deben poder leer la política de privacidad.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"Biblioteca\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Este idioma se usará para el Portal del Participante.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Este portal no acepta nuevas sesiones en este momento.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Este proyecto seguirá el ajuste heredado: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"Esta prompt guía cómo la IA responde a los participantes. Personaliza la prompt para formar el tipo de retroalimentación o participación que quieres fomentar.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"Este informe no está disponible. \"],\"GQTpnY\":[\"Este informe fue abierto por \",[\"0\"],\" personas\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Este título se muestra a los participantes cuando inician una conversación\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"Esto borrará tu entrada actual. ¿Estás seguro?\"],\"NrRH+W\":[\"Esto creará una copia del proyecto actual. Solo se copiarán los ajustes y etiquetas. Los informes, chats y conversaciones no se incluirán en la copia. Serás redirigido al nuevo proyecto después de clonar.\"],\"hsNXnX\":[\"Esto creará una nueva conversación con el mismo audio pero una transcripción fresca. La conversación original permanecerá sin cambios.\"],\"add.tag.filter.modal.info\":[\"Esto filtrará la lista de conversaciones para mostrar conversaciones con esta etiqueta.\"],\"participant.concrete.regenerating.artefact.description\":[\"Esto solo tomará unos momentos\"],\"participant.concrete.loading.artefact.description\":[\"Esto solo tomará un momento\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"Este espacio de trabajo ha agotado sus horas de grabación. Mejora tu plan para seguir usando la voz.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Pulgar abajo\"],\"Nuw8ty\":[\"Pulgar arriba\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Hora\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Marca de tiempo\"],\"XSqo4Y\":[\"Marcas de tiempo y duración\"],\"rm2Cxd\":[\"Consejo\"],\"fEocaE\":[\"Consejo: Usa el botón de reproducción (▶) para enviar un payload de prueba a tu webhook y verificar que está funcionando correctamente.\"],\"Zb3ANR\":[\"Consejo: También puede crear una plantilla desde cualquier mensaje de chat que envíe, o duplicar una plantilla existente.\"],\"MHrjPM\":[\"Título\"],\"1xkgU6\":[\"Título auto-generado\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Para ayudarnos a actuar, intente incluir dónde ocurrió y qué estaba intentando hacer. Para errores, díganos qué salió mal. Para ideas, díganos qué necesidad resolvería para usted.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Demasiado grande\"],\"yIsdT7\":[\"Demasiado largo\"],\"qgwLj6\":[\"Demasiado largo o poco claro\"],\"lcsUaI\":[\"Demasiados avisos. Espere unos minutos e inténtelo de nuevo\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Tema creado correctamente\"],\"Sawj4V\":[\"Tema eliminado correctamente\"],\"xcp3ny\":[\"Etiqueta de tema\"],\"vQoAht\":[\"Tema actualizado correctamente\"],\"th8cMZ\":[\"Título basado en temas que describe lo que se discutió\"],\"sFMBP5\":[\"Temas\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Transcribe de nuevo una conversación\"],\"fp5rKh\":[\"Transcribiendo...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcripción\"],\"5jqJzi\":[\"La anonimización y los ajustes de retranscripción funcionan de forma más coherente. La duración sigue siendo correcta después de pausar y reanudar.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcripción copiada al portapapeles\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transforma este contenido en insights que realmente importan. Por favor:\\n\\nExtrae ideas clave que desafían el pensamiento estándar\\nEscribe como alguien que entiende los matices, no un manual\\nEnfoque en las implicaciones no obvias\\nManténlo claro y sustancial\\nSolo destaca patrones realmente significativos\\nOrganiza para claridad y impacto\\nEquilibra profundidad con accesibilidad\\n\\nNota: Si las similitudes/diferencias son demasiado superficiales, por favor házmelo saber, necesitamos material más complejo para analizar.\"],\"uK9JLu\":[\"Transforma esta discusión en inteligencia accionable. Por favor:\\n\\nCaptura las implicaciones estratégicas, no solo puntos de vista\\nEstructura como un análisis de un líder, no minutos\\nEnfatiza puntos de decisión que desafían el pensamiento estándar\\nMantén la proporción señal-ruido alta\\nEnfoque en insights que conducen a cambios reales\\nOrganiza para claridad y referencia futura\\nEquilibra detalles tácticos con visión estratégica\\n\\nNota: Si la discusión carece de puntos de decisión sustanciales o insights, marca para una exploración más profunda la próxima vez.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Activar flujos de trabajo automatizados en herramientas como Zapier, Make, o n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Prueba a preguntar\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Intenta moverte un poco más cerca de tu micrófono para mejorar la calidad del sonido.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Convierte conversaciones en diapositivas en directo. Inicia una sesión en vivo o un análisis a demanda, presenta al grupo y consulta las fuentes de cada hallazgo.\"],\"portal.anonymization.disable.confirm\":[\"Desactivar\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"¿Desactivar la anonimización?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Convierte las conversaciones de tu proyecto en diapositivas en directo para la sala.\\n\\n- Sigue los temas emergentes mientras la gente habla.\\n- Presenta ideas y consulta las conversaciones en las que se basan.\\n- Inicia una sesión en directo o un análisis cuando lo necesites.\\n\\nTambién: nuevas plantillas de chat, conexiones con agentes y mejoras para móviles.\"],\"portal.anonymization.disable.warning\":[\"Desactivar la anonimización mientras hay grabaciones en curso puede tener consecuencias no deseadas. Las conversaciones activas también se verán afectadas durante la grabación. Por favor, use esto con precaución.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Autenticación de dos factores\"],\"NwChk2\":[\"Autenticación en dos pasos desactivada\"],\"qwpE/S\":[\"Autenticación en dos pasos activada\"],\"+zy2Nq\":[\"Tipo\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Escribe un mensaje o pulsa / para plantillas...\"],\"EvmL3X\":[\"Escribe tu respuesta aquí\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ucraniano (solo funciones de ECHO, Transcripción y Resúmenes)\"],\"MksxNf\":[\"No se pudieron cargar los registros de auditoría.\"],\"participant.outcome.error.title\":[\"No se puede cargar el resultado\"],\"59QK2U\":[\"No se pudo cargar el resultado generado. Por favor, inténtalo de nuevo.\"],\"nGxDbq\":[\"No se puede procesar este fragmento\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Deshacer\"],\"Ef7StM\":[\"Desconocido\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Razón desconocida\"],\"nWMRxa\":[\"Desfijar\"],\"vSdeRU\":[\"Desancla primero un proyecto (máx. \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Desancla primero un proyecto (máx. 3)\"],\"dx+iaL\":[\"Desanclar proyecto\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Cambios sin guardar\"],\"SMaFdc\":[\"Desuscribirse\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Conversación sin título\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Informe sin título\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Hasta \",[\"MAX_FILES\"],\" imágenes\"],\"lLehih\":[\"Hasta \",[\"MAX_MESSAGE_CHARS\"],\" caracteres\"],\"ia8YsC\":[\"Próximamente\"],\"EkH9pt\":[\"Actualizar\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Subir avatar\"],\"kV3A2a\":[\"Subida Completa\"],\"4Fr6DA\":[\"Subir conversaciones\"],\"pZq3aX\":[\"Subida fallida. Por favor, inténtalo de nuevo.\"],\"HAKBY9\":[\"Subir Archivos\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Subiendo archivos de audio...\"],\"participant.modal.uploading\":[\"Subiendo audio...\"],\"participant.modal.interruption.uploading\":[\"Subiendo audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"La URL es requerida\"],\"3VnYUR\":[\"La URL debe empezar con http:// o https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Usar el valor heredado\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Usa italiano en chat, informes, transcripción y tarjetas de bienvenida para participantes. Esta versión no incluía la traducción completa de la interfaz.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Usa Shift + Enter para agregar una nueva línea\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"¿Usando webhooks? Nos encantaría escuchar de ti\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Recordatorio de verificación\"],\"participant.banner.verification_required\":[\"Verificación requerida\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verificado\"],\"select.all.modal.loading.verified\":[\"Verificado\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verificado\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verificar\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verificar\"],\"participant.echo.verify\":[\"Verificar\"],\"4LFZoj\":[\"Verificar código\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Verifica resultados y refina respuestas\"],\"w6Mgbs\":[\"Temas de verificación\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vista\"],\"SZw9tS\":[\"Ver detalles\"],\"95YFbG\":[\"Ver ejemplo de payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Ver notas de versión\"],\"D4e7re\":[\"Ver tus respuestas\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Esperando a que terminen las conversaciones antes de generar un informe.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"¿Lo quieres en tu evento?\"],\"q7LnaV\":[\"¿Quieres organizar un evento con dembrane?\"],\"La34Yq\":[\"¿Quieres usar dembrane en tu próximo evento?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Mira el vídeo para conocer las organizaciones, los espacios de trabajo y los proyectos.\"],\"participant.alert.microphone.access.issue\":[\"No podemos escucharte. Por favor, intenta cambiar tu micrófono o acercarte un poco más al dispositivo.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"No pudimos desactivar la autenticación de dos factores. Inténtalo de nuevo con un código nuevo.\"],\"sM2pBB\":[\"No pudimos activar la autenticación de dos factores. Verifica tu código e inténtalo de nuevo.\"],\"mW8QSA\":[\"No encontramos la página que buscabas. Puede que se haya movido.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"Necesitamos un poco más de contexto para ayudarle a usar ECHO de manera efectiva. Por favor, continúe grabando para que podamos proporcionar mejores sugerencias.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Nos pondremos en contacto en un día. ¿Prefieres elegir tú la hora?\"],\"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.\"],\"FXjsEJ\":[\"Nos encantaría saber de usted. Ya sea que tenga una idea para algo nuevo, haya visto una traducción que no encaja, o simplemente quiera contarnos cómo va todo. ¿Ha encontrado un error? Use <0>Informar de un problema para enviarlo con capturas de pantalla.\"],\"XolQc4\":[\"Nos encantaría saber de usted. Ya sea que tenga una idea para algo nuevo, haya visto una traducción que no encaja, o simplemente quiera contarnos cómo va todo. ¿Ha encontrado un error? Use Informar de un problema en la barra lateral para enviarlo con capturas de pantalla.\"],\"participant.test.microphone.description\":[\"Vamos a probar tu micrófono para asegurarnos de que todos tengan la mejor experiencia en la sesión.\"],\"+eLc52\":[\"Estamos escuchando algo de silencio. Intenta hablar más fuerte para que tu voz salga claramente.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL del Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Los webhooks son mensajes automatizados enviados de una aplicación a otra cuando ocurre algo. Piénsalos como un \\\"sistema de notificaciones\\\" para tus otras herramientas.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Bienvenido\"],\"9eF5oV\":[\"Bienvenido de nuevo\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"¡Bienvenido a dembrane!\"],\"u4aLOz\":[\"Bienvenido al modo Resumen. Tengo cargados los resúmenes de todas tus conversaciones. Pregúntame por patrones, temas e insights en tus datos. Para citas exactas, inicia un nuevo chat en el modo Contexto Específico.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"¡Bienvenido!\"],\"RL57XM\":[\"¿Qué son los webhooks? (2 min de lectura)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"¿Qué datos se envían?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"¿Qué desea verificar?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"¿Qué ha pasado? Pegue aquí una captura de pantalla para adjuntarla\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"¿Qué debe ECHO analizar o generar a partir de las conversaciones?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"¿Qué ha fallado?\"],\"qGrqH9\":[\"¿Cuáles fueron los momentos clave de esta conversación?\"],\"FXZcgH\":[\"¿Qué te gustaría explorar?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"Cuando esté activado, todas las nuevas transcripciones tendrán información personal (nombres, emails, números de teléfono, direcciones) reemplazadas por marcadores de posición. Las conversaciones anónimas también desactivan la reproducción de audio, el descarga de audio y la retranscripción para proteger la privacidad de los participantes. Esto no se puede deshacer para conversaciones ya procesadas.\"],\"MEmr1I\":[\"Cuando finalices la conversación, los participantes que no han verificado aún serán solicitados para verificar o saltar\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"¿Cuándo se debe generar el informe?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"Cuando el resumen esté listo (incluye tanto la transcripción como el resumen)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"se incluirá en tu informe\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Trabaja con el nuevo asistente conversacional, sigue sesiones en el monitor en directo y usa el procesamiento de transcripción actualizado.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Espacio de trabajo / proyecto\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Valor predeterminado del espacio de trabajo\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Ajustes del espacio de trabajo\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"¿Te gustaría añadir esta etiqueta a tus filtros actuales?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Escribe instrucciones de verificación, genera resultados en el idioma del proyecto y recuerda a los participantes que verifiquen antes de terminar. Configura cada base jurídica.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Idioma o tono equivocado\"],\"MNTYHt\":[\"Fuentes equivocadas\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Sí\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Tú\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Ya estás desuscribido o tu enlace es inválido.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"Puedes cambiarlo más tarde en los ajustes del espacio de trabajo después de añadir los datos de facturación.\"],\"uGP87g\":[\"Puedes cambiarlo más tarde en los ajustes del espacio de trabajo.\"],\"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.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"Puede intentarlo de nuevo a continuación.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"Ya has añadido <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversación\"],\"other\":[\"#\",\" conversaciones\"]}],\" a este chat.\"],\"7W35AW\":[\"Ya has añadido todas las conversaciones relacionadas con esto\"],\"participant.modal.change.mic.confirmation.text\":[\"Has cambiado tu micrófono. Por favor, haz clic en \\\"Continuar\\\", para continuar con la sesión.\"],\"T/Q7jW\":[\"Has desuscribido con éxito.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Aún no has verificado ningún resultado. ¿Te gustaría verificar antes de terminar?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"También puedes elegir registrar otra conversación.\"],\"yCtSKg\":[\"Debes iniciar sesión con el mismo proveedor con el que te registraste. Si encuentras algún problema, por favor contáctanos.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Pareces estar desconectado, por favor verifica tu conexión a internet\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Pronto recibirá \",[\"objectLabel\"],\" para verificar.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"tu@ejemplo.es\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"¡Su aprobación nos ayuda a comprender lo que realmente piensa!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Tu correo electrónico\"],\"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.\"],\"vaTeZ3\":[\"Tu comentario y esta respuesta llegan al equipo de dembrane.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Tus entradas se guardarán automáticamente.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"La generación de tu último informe fue cancelada. Se muestra tu informe completado más reciente.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Su nombre\"],\"VSneAo\":[\"Se incluyen su nombre, su correo y la página actual para que podamos responderle.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora.\"],\"DrJCbp\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora. También puedes registrar otra conversación o compartir el código QR para que otras personas puedan contribuir.\"],\"7i36j4\":[\"Tu respuesta ha sido registrada. Puedes cerrar esta pestaña ahora. También puedes compartir el código QR para que otras personas puedan contribuir, o registrar otra conversación.\"],\"wurHZF\":[\"Tus respuestas\"],\"B8Q/i2\":[\"Tu vista ha sido creada. Por favor, espera mientras procesamos y analizamos los datos.\"],\"library.views.title\":[\"Tus Vistas\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/fr-FR.po b/echo/frontend/src/locales/fr-FR.po index 47771925..bc5f9d67 100644 --- a/echo/frontend/src/locales/fr-FR.po +++ b/echo/frontend/src/locales/fr-FR.po @@ -54,6 +54,16 @@ msgstr "Préparation de ton dashboard" msgid "Welcome back" msgstr "Bon retour" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:542 +#~ msgid "participant.button.back.microphone" +#~ msgstr "Retour" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:446 +#~ msgid "participant.mic.check.button.skip" +#~ msgstr "Passer" + #: src/components/popcorn/PopcornStatus.tsx:45 msgid " · {heldBack} held back" msgstr "" @@ -2089,13 +2099,8 @@ msgid "Back" msgstr "Retour" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:542 -msgid "participant.button.back.microphone" -msgstr "Retour" - -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:567 -#: src/components/layout/ParticipantHeader.tsx:87 +#: src/components/participant/ParticipantOnboardingCards.tsx:419 +#: src/components/layout/ParticipantHeader.tsx:90 msgid "participant.button.back" msgstr "Retour" @@ -2382,7 +2387,7 @@ msgid "participant.concrete.action.button.cancel" msgstr "Annuler" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:97 +#: src/components/layout/ParticipantHeader.tsx:100 msgid "participant.concrete.instructions.button.cancel" msgstr "Annuler" @@ -3039,14 +3044,13 @@ msgid "Continue" msgstr "Continuer" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:554 -#: src/components/participant/MicrophoneTest.tsx:414 -msgid "participant.button.continue" +#: src/components/participant/ParticipantInitiateForm.tsx:336 +msgid "participant.ready.to.begin.button.text" msgstr "Continuer" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:336 -msgid "participant.ready.to.begin.button.text" +#: src/components/participant/MicrophoneTest.tsx:414 +msgid "participant.button.continue" msgstr "Continuer" #: src/routes/organisation/OrganisationRoute.tsx:1629 @@ -7276,7 +7280,7 @@ msgid "Next" msgstr "Suivant" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:584 +#: src/components/participant/ParticipantOnboardingCards.tsx:436 msgid "participant.button.next" msgstr "Suivant" @@ -9277,7 +9281,7 @@ msgid "Reads every 2 minutes. Refresh reads now." msgstr "" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:418 +#: src/components/participant/ParticipantOnboardingCards.tsx:313 msgid "participant.ready.to.begin" msgstr "Prêt à commencer" @@ -10767,8 +10771,8 @@ msgstr "" #: src/features/sidebar/views/org/OrgSettingsView.tsx:31 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 -#: src/components/layout/ParticipantHeader.tsx:121 -#: src/components/layout/ParticipantHeader.tsx:122 +#: src/components/layout/ParticipantHeader.tsx:124 +#: src/components/layout/ParticipantHeader.tsx:125 msgid "Settings" msgstr "Paramètres" @@ -10811,8 +10815,8 @@ msgstr "" msgid "Share link" msgstr "" -#: src/components/layout/ParticipantHeader.tsx:111 -#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:114 +#: src/components/layout/ParticipantHeader.tsx:115 msgid "Share portal" msgstr "Partager le portail" @@ -11027,11 +11031,6 @@ msgstr "Passer" msgid "participant.button.verify_prompt.skip" msgstr "Passer" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:446 -msgid "participant.mic.check.button.skip" -msgstr "Passer" - #. js-lingui-explicit-id #: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" diff --git a/echo/frontend/src/locales/fr-FR.ts b/echo/frontend/src/locales/fr-FR.ts index 141501ec..14b14012 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\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(facultatif)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(Vous)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message de dembrane\"],\"other\":[\"Messages de dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" ne fait pas encore partie de cet espace de travail.\"],\"RZUJFH\":[[\"0\"],\" ne fait pas encore partie de cet espace de travail. Demandez à un administrateur de l'espace de travail d'inviter cette personne.\"],\"iOmAhc\":[[\"0\"],\" ne fait pas encore partie de cet espace de travail. Envoyez une invitation et partagez ce projet dès qu'ils rejoignent.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" personnes ne font pas encore partie de cet espace de travail.\"],\"E6f0Mh\":[[\"0\"],\" personnes ne font pas encore partie de cet espace de travail. Demandez à un administrateur de les inviter.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" vues\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" personnes étaient déjà invitées. Le projet sera partagé dès qu'elles rejoignent.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversations • Modifié \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" a déjà une invitation en attente pour un autre projet. Partagez ce projet une fois la personne arrivée.\"],\"zB7Coe\":[[\"email\"],\" figure dans les invitations en attente, mais l'e-mail n'a pas pu être envoyé. Renvoyez-le depuis Membres.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invitations envoyées. Le projet sera partagé dès qu'elles rejoignent l'espace de travail.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 vue\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. Lorsqu'un événement de conversation ou de rapport se produit, nous envoyons automatiquement les données à votre URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Des imports audio plus fiables\"],\"XPY0OE\":[\"Un nouvel assistant et un suivi en direct\"],\"z9VxrW\":[\"Un nouveau rapport sera automatiquement généré et publié à l'heure prévue.\"],\"sy1BvY\":[\"Un portail participant pour enregistrer les conversations.\"],\"zm7GU7\":[\"Un lien vers la politique de confidentialité est obligatoire pour le traitement basé sur le consentement. Il doit commencer par http:// ou https:// et compter au maximum 255 caractères.\"],\"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é.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Un espace de conversations plus fluide\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Accès\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\":[\"Compte et sécurité\"],\"K3wUdw\":[\"Valeur par défaut du compte\"],\"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 requise\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Ajouter\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Ajoutez des conversations au contexte du chat, utilisez de meilleurs modèles de questions et des options de transcription mises à jour. Les citations et traductions reçoivent des corrections.\"],\"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.\"],\"5phU36\":[\"Ajouter des images\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"uqLJli\":[\"Ajoutez des personnes par e-mail. Celles qui ne sont pas encore dans l'espace de travail reçoivent une invitation et accèdent à ce projet dès qu'elles rejoignent.\"],\"1G8+6T\":[\"Ajoutez des personnes par e-mail. Celles qui ne sont pas encore dans cet espace de travail reçoivent une invitation, et le projet est partagé avec elles dès qu'elles rejoignent.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Ajouter un sujet\"],\"AHaRrL\":[\"Ajouter des traductions\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Ajoutées\"],\"QKlADn\":[[\"0\"],\" personnes ajoutées\"],\"z9TWoF\":[[\"granted\"],\" personnes ajoutées\"],\"q+wngh\":[\"Ajouté et partagé\"],\"Na90E+\":[\"E-mails ajoutés\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"Du6bPw\":[\"Adresse\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Tableau de bord d'administration\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Exécution guidée par les outils\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Tout\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"Tout lu\"],\"52imBJ\":[\"Toutes les versions sur GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Tous les modèles\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Toutes les années\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Déjà invité. Le projet sera partagé dès qu'ils rejoignent.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"Une erreur inattendue s'est produite. Recharger la page ou revenir à l'accueil aide souvent.\"],\"F4cOH1\":[\"Langue d'analyse\"],\"ZlwDi6\":[\"Analytique\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"Dzr23X\":[\"Annonces\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymiser la transcription\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"YdiKaK\":[\"conversation anonymisée\"],\"iPiP6k\":[\"Conversation anonymisée\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Autre chose ?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Apparence\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Appliquer\"],\"4TwsNi\":[\"Appliquer le modèle\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"uqhbrg\":[\"Êtes-vous sûr de vouloir supprimer ce chat ? Cette action est irréversible.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"yrk3z3\":[\"Êtes-vous sûr de vouloir supprimer ce sujet personnalisé ? Cette action ne peut pas être annulée.\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"ELQ+fw\":[\"Êtes-vous sûr de vouloir supprimer ce rapport ? Cette action est irréversible.\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"e3BGhi\":[\"Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action est irréversible.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"ZmeZPn\":[\"Êtes-vous sûr de vouloir supprimer votre avatar ?\"],\"wQ5jM6\":[\"Êtes-vous sûr de vouloir supprimer votre logo personnalisé ? Le logo dembrane par défaut sera utilisé à la place.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Demander\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Demandez à un administrateur de l'espace de travail d'inviter cette personne.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Le téléchargement de l'audio n'est pas disponible pour les conversations anonymisées\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La lecture de l'audio n'est pas disponible pour les conversations anonymisées\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Le traitement et les imports audio sont plus robustes, et la liste des conversations affiche des totaux plus clairs.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Conseil audio\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"WI8FHU\":[\"Sélectionnez automatiquement les conversations pertinentes pour le chat et suivez les références. Abonnez-vous aux notifications de rapports et profitez d’imports audio et texte améliorés.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar supprimé\"],\"jSKImf\":[\"Avatar mis à jour\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Retour à la sélection\"],\"9aZHfH\":[\"Back to settings\"],\"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\"],\"g7YpV4\":[\"Avant cet historique des versions\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"De meilleurs retours, un suivi plus simple\"],\"5DnJa6\":[\"De meilleurs enregistrements, plus de façons de répondre\"],\"9GKCNF\":[\"De meilleurs imports, transcriptions et recherches\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Facturation\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"KKLfx1\":[\"Reservez un appel avec nous\"],\"kFl92P\":[\"Réservez une formation certifiée pour continuer à utiliser dembrane dans des contextes à haut risque.\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Corrections de bugs\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"En supprimant ce projet, vous supprimerez toutes les données associées. Cette action est irréversible. Êtes-vous absolument sûr ?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Annuler le remplacement\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Annuler la planification\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"SL9Qao\":[\"Impossible de reprogrammer dans les 10 minutes précédant l'heure prévue\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Carte\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Changer de langue\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Changer le mot de passe\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Discussion\"],\"OqbSPC\":[\"Discussion | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Nom du chat\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Le chat avec des conversations individuelles.\"],\"8Q+lLG\":[\"Discussions\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"Dv3TPp\":[\"Les chats reçoivent des titres automatiques, et le contexte inclut dates et durées. Accédez au dernier message et profitez d’un import audio plus clair.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Les chats réglés en tchèque répondent désormais en tchèque plutôt qu’en anglais.\"],\"gLvHXQ\":[\"Testez et choisissez votre microphone avant l’enregistrement, consultez les indicateurs audio et utilisez une transcription multilingue améliorée. Choisissez résumé, remue-méninges ou réponses personnalisées.\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"WQUm5N\":[\"Vérifiez le texte et les images, puis réessayez\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Choisissez des espaces visibles, sur invitation ou privés. Les membres chargent plus vite, les imports vous ramènent aux conversations, et les résumés et fusions automatiques sont plus fiables.\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Effacer la recherche\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Des sources plus claires dans le chat\"],\"xOlaOX\":[\"Des accès plus clairs pour les administrateurs\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Gestion client\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"CfO59/\":[\"Comparer & Contraster Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Terminé\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"7VpPHA\":[\"Confirmer\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirmer le nouveau mot de passe\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Publier\"],\"vz1fGK\":[\"Confirmer la reprogrammation\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connecter votre agent\"],\"0Nvhtt\":[\"Connecter votre agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"participant.modal.s3check.title\":[\"Problème de connexion\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connexion défectueuse\"],\"l9fkrm\":[\"Consentement\"],\"EhtOYz\":[\"Le traitement basé sur le consentement est actif sans lien vers la politique de confidentialité. Ajoutez-en un là où la base juridique est définie : les participants doivent pouvoir lire la politique de confidentialité.\"],\"mpby9d\":[\"Contacter le support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Contenu\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"JX3KT4\":[\"Suggestions contextuelles\"],\"xGVfLh\":[\"Continuer\"],\"participant.button.continue\":[\"Continuer\"],\"participant.ready.to.begin.button.text\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Les références aux conversations sont réunies sous un seul titre Sources. Le formulaire de retour peut préremplir votre adresse e-mail.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Les pages de conversations et le chargement des données sont simplifiés. La sélection automatique laisse plus de place aux réponses, et les annonces génèrent moins de notifications répétées.\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Les résumés ne restent plus bloqués dans les cas de traitement concernés. Les conversations suspendues par les limites de l’offre gratuite reprennent après un changement d’offre.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Tags de conversation\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copier le lien\"],\"H4brGj\":[\"Copier le lien dans le presse-papiers\"],\"AjrNNs\":[\"Copier le contenu du rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copie en cours...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Votre sélection n'a pas pu être reprise. Sélectionnez à nouveau ci-dessous.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Impossible de copier dans le presse-papiers. Veuillez réessayer.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Impossible d'ouvrir la liste des conversations. Réessayez.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Retour non enregistré\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Impossible d'envoyer le signalement. Réessayez\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Impossible de révoquer l'invitation\"],\"LPY4VY\":[\"Impossible d'envoyer l'invitation\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"oJfYM5\":[\"Créer un brief de recherche à partir des conversations récentes\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Créer une bibliothèque\"],\"bUyyzw\":[\"Crée plusieurs rapports par projet et guide leur rédaction avec tes propres instructions. Les rapports programmés (bêta) incluent toutes les conversations enregistrées avant l’heure prévue. Crée, enregistre et épingle tes propres modèles de chat (bêta). Cette version ajoute aussi les projets épinglés, les paramètres de profil et le chat en ukrainien.\"],\"T7gFri\":[\"Créer une nouvelle organisation\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Créer un rapport\"],\"A5hiCy\":[\"Créer un modèle\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Créé le\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Recadrer l'avatar\"],\"udBqWc\":[\"Recadrer l'image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recadrer le logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Logo actuel\"],\"Pn2B7/\":[\"Mot de passe actuel\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Personnalisé\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Conversations en tchèque, réponses en tchèque\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Zone de danger\"],\"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\"],\"ItMGda\":[\"Période\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"K/78Yl\":[\"Déléguer une analyse multi-étapes avec l'exécution en direct des outils\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Supprimer le chat\"],\"2GCE3m\":[\"Supprimer la conversation\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"j5pYC4\":[\"Supprimer le sujet personnalisé\"],\"mp235G\":[\"Supprimer le projet\"],\"++iDlT\":[\"Supprimer le projet\"],\"rUWrSE\":[\"Supprimer le rapport\"],\"qr0gpK\":[\"Supprimer le tag\"],\"DFjdv0\":[\"Supprimer le modèle\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Supprimer le webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Les projets supprimés et les conversations suspendues par les limites de l’abonnement ne déclenchent plus de tentatives répétées de résumé.\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane pour votre événement ?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"invitation événement dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot était notre précédent projet. Merci aux organisateurs, aux participants et aux contributeurs qui ont aidé à le façonner.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Décrivez le problème\"],\"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\"],\"ney/NP\":[\"Détermine la base juridique RGPD selon laquelle les données personnelles sont traitées pour ce projet.\"],\"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.\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Nom d'affichage\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"C'est bon, contactez-moi\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"N8MP2s\":[\"Téléchargez l’audio et organisez les conversations\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Téléchargez l’audio, ajoutez des étiquettes depuis le tableau de bord et utilisez des résumés adaptés à la conversation. La modification et l’aperçu du portail reçoivent des corrections.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Brouillon des actions suivantes et les organiser par priorité\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Dupliquer\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"p. ex. \\\"Focus sur les thèmes de durabilité\\\" ou \\\"Que pensent les participants de la nouvelle politique ?\\\"\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"ex. Résumé hebdomadaire des parties prenantes\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"Y/3VME\":[\"Modifier le sujet personnalisé\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Mode édition\"],\"niSWGL\":[\"Modifier les options\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Modifiez les rapports directement\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Modifiez vos rapports, vérifiez plus facilement les microphones dans le portail et consultez de meilleurs indicateurs de chargement et messages d’erreur.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@travail.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji affiché à côté du sujet, par exemple : 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Vide\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Activer 2FA\"],\"D3AnH0\":[\"Activer Explorer\"],\"4KKbfZ\":[\"Activer la participation\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \\\"résultats\\\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Saisir le mot de passe actuel\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"VpwcSk\":[\"Saisir le nouveau mot de passe\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Quitter le plein écran\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Expérimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"B7flm8\":[\"Explorez les thèmes récurrents dans la Library\"],\"EebTQD\":[\"Explore les récits et les perspectives avec le modèle de chat Narratives, en anglais et en néerlandais.\"],\"HNnM2X\":[\"Explorer les archives de dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"Externe\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"UQ6LqT\":[\"Échec de la création du sujet personnalisé\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Échec de la suppression du sujet personnalisé\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"rv8mO7\":[\"Impossible de supprimer l'avatar\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"IMUHg3\":[\"Replanification echouee. Veuillez choisir un horaire plus eloigne et reessayer.\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Échec de la mise à jour du sujet personnalisé\"],\"BpuK7o\":[\"Échec de la mise à jour de la base juridique\"],\"Avee+B\":[\"Impossible de mettre à jour le nom\"],\"gnm1CH\":[\"Échec de la mise à jour de l'épingle\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Impossible de télécharger l'avatar\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"YirHq7\":[\"Commentaires\"],\"radRmd\":[\"Portail de commentaires\"],\"2roTVj\":[\"Retour envoyé\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filtrer les versions par année\"],\"MRk67a\":[\"Trouver des contradictions et suggérer des questions de suivi\"],\"SdZBYB\":[\"Trouvez les conversations adaptées à votre question\"],\"oRQsgh\":[\"Trouvez des espaces et poursuivez les échanges\"],\"p2j2po\":[\"Retrouvez votre place dans le chat\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"Pour vous\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Français\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"3qkggm\":[\"Plein écran\"],\"Weq9zb\":[\"Général\"],\"ziAjHi\":[\"Générer\"],\"EIdJgG\":[\"Générer un nouveau rapport\"],\"QsUhrf\":[\"Générer un rapport\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Générer la bibliothèque\"],\"5SWGxv\":[\"Générer maintenant\"],\"GWUJ9X\":[\"Générer maintenant\"],\"QqIxfi\":[\"Générer un secret\"],\"gitFA/\":[\"Générer un résumé\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Recevez une réponse pendant une conversation\"],\"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.\"],\"Pl6LQ+\":[\"Prendre contact\"],\"ZDIydz\":[\"Commencer\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"DXr0zk\":[\"Plein écran\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Bonne réponse\"],\"76gPWk\":[\"Compris\"],\"hjZBYK\":[\"Vous avez deux minutes ? Cinq questions facultatives nous aident à nous préparer.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guider le rapport\"],\"myXGZW\":[\"Guide\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Aide\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Masqué\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"eHo/Jc\":[\"Masquer les données\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"masquer l'invitation événement dembrane\"],\"V3NvRL\":[\"Masquer l'invitation événement dembrane fait partie d'un forfait payant.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"À la une\"],\"tn75xn\":[\"Concept spécifique mis en évidence\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Accueil\"],\"Ai2U7L\":[\"Hôte\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Guide de l'hôte\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Retour de l'hôte\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Comment ça marche :\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"Je comprends\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Si ce que vous avez repéré concerne des données visibles par les mauvaises personnes, un accès dont quelqu'un ne devrait pas disposer, ou une possible faille de sécurité, utilisez plutôt notre <0>formulaire de signalement de sécurité. Il parvient à une autre équipe par une voie plus rapide. Pour toute urgence, envoyez un e-mail à <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"Si vous êtes satisfait de \",[\"objectLabel\"],\", cliquez sur \\\"Approuver\\\" pour montrer que vous vous sentez entendu.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Les images doivent faire moins de \",[\"MAX_FILE_MB\"],\" Mo\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Améliorations\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Boîte de réception\"],\"Au/WJO\":[\"Inclure le lien du portail\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Incorrect ou inventé\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Perspectives\"],\"MSVCjk\":[\"Instructions pour générer le résultat de la vérification\"],\"fN5mkr\":[\"Intégrations et exportation\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Voici Popcorn\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invitation envoyée à \",[\"email\"],\". Le projet sera partagé dès qu'elle rejoint l'espace de travail.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invitation envoyée. Le projet sera partagé dès qu'elle rejoint l'espace de travail.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Inviter dans l'espace de travail et partager\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Adresse IP\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"5dxEAB\":[\"Il semble que vous n'ayez pas encore de rapport pour ce projet. Générez-en un pour obtenir un aperçu de vos conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italien (uniquement les fonctionnalités ECHO, Transcription et Résumés)\"],\"1BIvTp\":[\"L’italien pour vos fonctions essentielles\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Rejoindre\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Rejoindre cette session du portail\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Un instant\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Gardez les appareils éveillés pendant l’enregistrement\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Continuez à travailler pendant les imports audio, recherchez vos étiquettes et suivez la transcription. La lecture audio améliorée et une sélection plus pertinente facilitent l’analyse.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Langue\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Dernier\"],\"lchnsl\":[\"Dernière version\"],\"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\"],\"J8VWes\":[\"Laissez votre adresse e-mail pour que nous puissions vous contacter.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Base juridique\"],\"vRXsmZ\":[\"Base juridique\"],\"CopiEV\":[\"Base juridique enregistrée\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"gkv8iG\":[\"Plaque d'immatriculation\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Lien\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Lien vers la politique de confidentialité affichée aux participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Direct\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Mode d'exécution de l'agent en direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Vue en direct\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Chargement\"],\"participant.verify.instructions.loading\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Connexion\"],\"LM/dWU\":[\"Connexion | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo supprimé\"],\"MjfaMh\":[\"Logo mis à jour\"],\"nOhz3x\":[\"Déconnexion\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Plus long en premier\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Gérer les modèles\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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\":[\"Tout marquer comme lu\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Marquer comme lue\"],\"5GPcf9\":[\"Marquer comme non lue\"],\"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.\"],\"IthddP\":[\"Accès MCP\"],\"TJA2es\":[\"Accès MCP | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Les connexions MCP permettent à ton agent de trouver des projets, rechercher des conversations, lire des transcriptions et consulter la documentation, avec des contrôles par organisation et un consentement explicite.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Notes de réunion\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Membres\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"azjxk1\":[\"Ne répond pas à la question\"],\"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\":[\"Suivi\"],\"f8jrkd\":[\"autres\"],\"2FYpfJ\":[\"Plus\"],\"JcD7qf\":[\"Plus d'actions\"],\"rAPyBz\":[\"Anonymisation et enregistrement plus fiables\"],\"MmhZK+\":[\"Des résumés de conversations plus fiables\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Un contexte de chat plus utile\"],\"QWdKwH\":[\"Déplacer\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Déplacer\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Doit etre au moins 10 minutes dans le futur\"],\"5hOInR\":[\"Mes accès\"],\"en+4fS\":[\"Mes modèles\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Nom mis à jour\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Nom Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"Nouveau\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"u2uElg\":[\"Nouvelles conversations ajoutees depuis ce rapport\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"/yIxDf\":[\"Nouvelles fonctionnalités\"],\"QnAEjj\":[\"Nouveautés, améliorations et corrections dans dembrane.\"],\"CSz4y/\":[\"Nouveau look, nouvelles fonctionnalités\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Nouveau mot de passe\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"gKi+a/\":[\"Nouveau projet\"],\"wzIR5D\":[\"Nouveau projet | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"Nouveau rapport\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Plus récent en premier\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.next\":[\"Suivant\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Aucune action trouvée\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Pas encore de conversations. Vous pouvez planifier un rapport maintenant et les conversations seront incluses une fois ajoutees.\"],\"oaDwXD\":[\"Aucune valeur par défaut définie (gestion client s'applique)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Pas encore de retours.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"Aucun résultat\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Personne dans l'organisation pour l'instant.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Pas encore de notes de version.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"1iQvuD\":[\"Pas encore de rapports\"],\"Ev2r9A\":[\"Aucun résultat\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"KE6RCJ\":[\"Aucun modèle ne correspond à {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"pdWSGS\":[\"Aucun sujet de vérification disponible.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Rien de nouveau de dembrane pour le moment.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Plus ancien en premier\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Une fois que vous avez discuté, appuyez sur \\\"réviser\\\" pour que \",[\"objectLabel\"],\" change afin de refléter votre discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Une fois que vous recevez \",[\"objectLabel\"],\", lisez-le à haute voix et partagez à haute voix ce que vous souhaitez modifier, le cas échéant.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"En cours\"],\"conversation.ongoing\":[\"En cours\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Modifiez uniquement ce paramètre en consultation avec la(les) personne(s) responsable(s) de la protection des données dans votre organisation.\"],\"z7dMhl\":[\"Seules les images peuvent être jointes\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Seuls les administrateurs de l'espace de travail peuvent modifier la base juridique.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Voir l'enregistrement\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optionnel\"],\"ZFIvWo\":[\"Optionnel (retour à l'anglais)\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"xam4uE\":[\"Question facultative \",[\"0\"],\" sur \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Les administrateurs d’organisation peuvent rejoindre les espaces privés depuis la page des membres. Les options d’accès expliquent quand il faut d’abord rejoindre un espace.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organisations, espaces de travail et projets\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organisez le travail en espaces, invitez des collaborateurs externes et des observateurs, et gérez les accès depuis la nouvelle barre latérale. Déplacez conversations et projets entre leurs espaces respectifs.\"],\"+g4lbW\":[\"Organisez votre travail en organisations, espaces de travail et projets, avec un contrôle plus clair des accès.\"],\"ucgZ0o\":[\"Organisation\"],\"/IX/7x\":[\"Autre\"],\"x0FjQV\":[\"Notre première version majeure\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Remplacée pour ce projet\"],\"AR/qbs\":[\"Remplacer pour ce projet\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Nom et email du participant\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Les participants peuvent demander une réponse pendant l’enregistrement et la lire à mesure qu’elle arrive. Les hôtes activent les réponses et personnalisent la consigne dans les paramètres du portail.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Les participants peuvent vérifier les résultats et affiner les réponses. De nouveaux modes et suggestions soutiennent l’analyse, et l’authentification à deux facteurs complète la connexion.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Mot de passe\"],\"zJx6Vx\":[\"Mot de passe modifié\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"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\":[\"Action en attente\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Les informations personnelles seront remplacées par des espaces réservés. La lecture audio, le téléchargement et la retranscription seront désactivés pour la nouvelle conversation.\"],\"zmwvG2\":[\"Téléphone\"],\"B8mlc2\":[\"Choisir une date\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Choisir un créneau maintenant\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Épingler\"],\"u8qC4w\":[\"Épingler le projet\"],\"S+WiJ3\":[\"Épinglez des modèles ici pour un accès rapide.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Épinglés est plein (max 5)\"],\"EC6BHi\":[\"Projets épinglés\"],\"RimR35\":[\"Modèles épinglés\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Prévu\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également répondre par écrit en cliquant sur l'icône de texte.\\n**Veuillez garder cet écran allumé**\\n(écran noir = pas d'enregistrement)\"],\"Lu1j4b\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également répondre par écrit en cliquant sur l'icône de texte.\\n**Veuillez garder cet écran allumé**\\n(écran noir = pas d'enregistrement).\\nVotre transcription sera anonymisée et votre hôte ne pourra pas écouter votre enregistrement.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG ou WebP. Sera recadré en cercle.\"],\"jjdudv\":[\"Mauvaise réponse\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Contenu du Portail\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Éditeur du portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Préparez les sessions avec un guide modifiable, recueillez les e-mails et anonymisez les transcriptions. Cette version introduit aussi les logos personnalisés et les titres automatiques de conversations.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"DHhJ7s\":[\"Précédent\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"S8ugMC\":[\"Imprimer le rapport\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL de la politique de confidentialité\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Projet\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"La recherche de projets et de conversations, avec des QR codes personnalisés.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projet créé\"],\"zjTrs1\":[\"Valeur par défaut du projet : activé. Les informations personnelles seront remplacées par des espaces réservés. La lecture audio, le téléchargement et la retranscription seront désactivés pour la nouvelle conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Résumé Meta du Projet\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Aperçu du projet | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projets\"],\"DK5DV3\":[\"Projets | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publier\"],\"vsX8VJ\":[\"Publiez ce rapport d'abord pour afficher le lien du portail\"],\"IHzoSN\":[\"Publiez ce rapport pour obtenir un lien de partage\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Question\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Évaluation\"],\"wr9IYa\":[\"Ressaisir le nouveau mot de passe\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"Z5Tlsx\":[\"Contactez-moi\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Lire à haute voix\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"VJScHU\":[\"Motif\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.s3check.reconnect\":[\"Reconnecter\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Enregistrer\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Les appareils restent éveillés plus sûrement. L’accueil des participants, l’affinement des réponses et la sélection de conversations dans le chat Specific Details reçoivent des corrections.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"/l7qFE\":[\"Enregistrement démarré\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"Références\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Régénérer\"],\"PpFJd2\":[\"Régénérer le résumé\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"HPitDS\":[\"S'enregistrer | dembrane\"],\"/PACVa\":[\"Notes de version\"],\"Gm7/K+\":[\"Notes de version | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Vidéo de la version : \",[\"0\"]],\"tF5Smn\":[\"Recharger la page\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Rappeler aux utilisateurs de vérifier avant de finir\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Supprimer\"],\"w61W3L\":[\"Supprimer \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Supprimer l'avatar\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"O90CN2\":[\"Supprimer le logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Supprimer le remplacement\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"6PsaMr\":[\"Renommer le chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Enregistrement\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de réponse\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Rapport\"],\"e/MQa5\":[\"Rapport déjà en cours de génération\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"hh/mvZ\":[\"Génération du rapport annulée\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Génération du rapport en cours...\"],\"v7O77U\":[\"La génération du rapport a été annulée. Vous pouvez démarrer un nouveau rapport ci-dessous.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Signalez des problèmes avec des images ou la voix, évaluez les réponses du chat et demandez une offre adaptée. Définissez une base légale par défaut pour votre espace de travail.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Notifications de rapports\"],\"M9snPp\":[\"Rapport programmé\"],\"6g+4DA\":[\"Signalement envoyé. Merci\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Les modèles de rapport sont sur notre feuille de route.\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"t9yxlZ\":[\"Rapports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Demander l'accès\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"8H5nRH\":[\"Demander le Réinitialisation du Mot de Passe | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"TMLAx2\":[\"Requis\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reprogrammer\"],\"6eIR/n\":[\"Replanifier pour\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Réinitialiser\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"9uplIY\":[\"Réinitialiser le Mot de Passe | dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"kX8Fjz\":[\"Retour sur la réponse\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"+gmVxi\":[\"La rétranscrire n'est pas disponible pour les conversations anonymisées\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"2fCpt5\":[\"Retour à l'accueil\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"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\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Lignes par page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Relancez la transcription d’une conversation existante. La documentation néerlandaise est également mise à jour.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Enregistrer\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Enregistrer comme modèle\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"5dVjYt\":[\"Enregistrer le modèle\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Enregistrement...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Scannez pour démarrer une nouvelle session du portail\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Planifier\"],\"wCGy0o\":[\"Programmer le rapport\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Rapports programmés et modèles personnalisés\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Défiler vers le bas\"],\"A1taO8\":[\"Rechercher\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Recherchez et sélectionnez les conversations pour ce chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"5WYZKZ\":[\"Résultats de recherche\"],\"lnWve4\":[\"Rechercher des tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Recherche en cours…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"À bientôt\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Sélectionnez toutes les conversations ou celles filtrées pour le chat, et filtrez en cliquant sur une étiquette. Les imports d’enregistrements sont plus fiables, avec des messages plus clairs en période de forte demande.\"],\"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\"],\"qtJxoV\":[\"Sélectionner plusieurs conversations\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"Dh99yE\":[\"Selectionnez jusqu'a 2 axes de focus pour votre rapport\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour \\\"Vérifier\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Envoyer\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Envoyer l'invitation\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Envoyer le signalement\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nom de la Séance\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"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\":[\"Configurer l'espace de travail\"],\"J4TuIW\":[\"Configurer votre première organisation\"],\"aBwEIZ\":[\"Configurer votre organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"BVRW7i\":[\"Paramètres | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Configuration\"],\"WFl+oC\":[\"Adaptez la vérification des résultats\"],\"Z8lGw6\":[\"Partager\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Partager le portail\"],\"OuFYHU\":[\"Partager le rapport\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Partager avec \",[\"0\"],\" personnes\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Partager avec tout l'espace de travail\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"nnWGzO\":[\"Partagez vos idées avec notre équipe\"],\"4o0klJ\":[\"Partagez votre voix en scannant le code QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Partager un projet privé avec une personne non membre propose désormais une invitation au lieu d’une erreur. L’accès est accordé quand elle rejoint l’espace de travail.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Afficher le code QR\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Afficher l'invitation\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" sur \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Affichage de votre dernier rapport terminé.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Passer\"],\"participant.button.verify_prompt.skip\":[\"Passer\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Communauté Slack\"],\"dE/7ox\":[\"Des enregistrements plus fluides, des questions plus rapides\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Quelque chose bloque votre connexion. Votre audio ne sera pas sauvegardé tant que ce problème ne sera pas résolu.\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"mwpVVD\":[\"Un problème est survenu lors de la génération de votre dernier rapport.\"],\"2WNFmv\":[\"Un problème est survenu lors de la génération de votre rapport.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Espagnol\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Équipe dembrane\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Commencer de zéro\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Démarrez sans créer de conversations en double, consultez l’heure réelle de début et utilisez vos modèles de questions depuis Ask. Les nouveautés de la barre latérale affichent un nombre de messages non lus.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Statut\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Planification Stratégique\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Succès\"],\"aG+cH9\":[\"Suggérer des suggestions dynamiques basées sur votre conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggéré:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Résumer\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Volontiers\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"5dzzI6\":[\"La désactiver fait partie d'un forfait payant.\"],\"D+NlUC\":[\"Système\"],\"woaefe\":[\"Valeur par défaut du système\"],\"InGQz2\":[\"État du système\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Étiquettes\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template appliqué\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Nom du template\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Modèles\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"mFQRXn\":[\"Des contributions écrites et des formulaires de suivi.\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Merci, nous vous recontactons sous un jour.\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Cela ne ressemble pas à une adresse e-mail.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"C'est tout, merci\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"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).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"La première version majeure place le projet sous la Business Source License 1.1.\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"La Library offre des vues plus claires des thèmes récurrents. Les modèles de chat restent accessibles, les conversations ont des liens directs et les imports sont plus faciles à suivre.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"Le rapport peut démarrer jusqu'à 5 minutes après l'heure choisie.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"La page de remerciement se termine par une carte invitant les participants à organiser leur propre événement avec dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Thème\"],\"tn4pEQ\":[\"Bienvenue\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Cela peut se produire lorsqu'un VPN ou un pare-feu bloque la connexion. Essayez de désactiver votre VPN, de passer à un autre réseau (par ex. partage de connexion mobile) ou contactez votre service informatique pour obtenir de l'aide.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Ces informations sont anonymisées\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Le traitement basé sur le consentement est défini sans lien vers la politique de confidentialité. Ajoutez-en un pour que ce réglage reste valide : les participants doivent pouvoir lire la politique de confidentialité.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"Bibliothèque\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Ce portail n’accepte pas de nouvelles sessions pour le moment.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Ce projet suivra alors le réglage hérité : \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"Cet espace de travail a utilisé ses heures d'enregistrement. Passez à une offre supérieure pour continuer à utiliser la voix.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Pouce vers le bas\"],\"Nuw8ty\":[\"Pouce vers le haut\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Heure\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"Zb3ANR\":[\"Astuce : Vous pouvez aussi créer un modèle à partir de n'importe quel message de chat que vous envoyez, ou dupliquer un modèle existant.\"],\"MHrjPM\":[\"Titre\"],\"1xkgU6\":[\"Titre auto-généré\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Pour nous aider à agir, essayez d'inclure où cela s'est produit et ce que vous essayiez de faire. Pour les bugs, dites-nous ce qui s'est mal passé. Pour les idées, dites-nous quel besoin cela résoudrait pour vous.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"qgwLj6\":[\"Trop long ou confus\"],\"lcsUaI\":[\"Trop de signalements. Patientez quelques minutes puis réessayez\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Sujet créé avec succès\"],\"Sawj4V\":[\"Sujet supprimé avec succès\"],\"xcp3ny\":[\"Étiquette de sujet\"],\"vQoAht\":[\"Sujet mis à jour avec succès\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Formation\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Formation requise pour une utilisation à haut risque\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Transcrivez à nouveau une conversation\"],\"fp5rKh\":[\"Transcription en cours...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcription\"],\"5jqJzi\":[\"L’anonymisation des transcriptions et les réglages de retranscription sont plus cohérents. La durée reste correcte après une pause et une reprise.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Tu peux demander\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Transforme les conversations en diapositives en direct. Lance une session en direct ou une analyse à la demande, présente au groupe et retrouve les sources des observations.\"],\"portal.anonymization.disable.confirm\":[\"Désactiver\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Désactiver l'anonymisation ?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Transformez les conversations de votre projet en diapositives en direct pour la salle.\\n\\n- Suivez les thèmes émergents pendant les échanges.\\n- Présentez les éclairages et consultez les conversations à leur origine.\\n- Lancez une session en direct ou une analyse à la demande.\\n\\nAussi dans cette version : modèles de chat, connexions aux agents et améliorations sur mobile.\"],\"portal.anonymization.disable.warning\":[\"La désactivation de l'anonymisation pendant les enregistrements en cours peut avoir des conséquences inattendues. Les conversations actives seront également affectées en cours d'enregistrement. Veuillez utiliser cette option avec prudence.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Tapez un message ou appuyez sur / pour les templates...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainien (uniquement les fonctionnalités ECHO, Transcription et Résumés)\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Raison inconnue\"],\"nWMRxa\":[\"Détacher\"],\"vSdeRU\":[\"Désépinglez d'abord un projet (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Désépinglez d'abord un projet (max 3)\"],\"dx+iaL\":[\"Désépingler le projet\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Sans titre\"],\"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.\"],\"0wHyhk\":[\"Jusqu'à \",[\"MAX_FILES\"],\" images\"],\"lLehih\":[\"Jusqu'à \",[\"MAX_MESSAGE_CHARS\"],\" caractères\"],\"ia8YsC\":[\"À venir\"],\"EkH9pt\":[\"Mettre à jour\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Mises à jour\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Télécharger un avatar\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"7FaY4u\":[\"Utilisation\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Utilisation et facturation\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Utiliser la valeur héritée\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Utilisez l’italien pour le chat, les rapports, la transcription et les cartes d’accueil des participants. Cette version ne comprenait pas la traduction complète de l’interface.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"Paramètres utilisateur\"],\"7sNhEz\":[\"Nom d'utilisateur\"],\"1Nt3Kg\":[\"Utilisation du logo dembrane par défaut\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Rappel de vérification\"],\"participant.banner.verification_required\":[\"Vérification requise\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Vérifiez les résultats et affinez les réponses\"],\"w6Mgbs\":[\"Sujets de vérification\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vue\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Voir les notes de version\"],\"D4e7re\":[\"Voir vos réponses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"En attente de la fin des conversations avant de générer un rapport.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Pareil pour votre événement ?\"],\"q7LnaV\":[\"Envie d'organiser un événement avec dembrane ?\"],\"La34Yq\":[\"Envie d'utiliser dembrane lors de votre prochain événement ?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Regardez la vidéo pour découvrir les organisations, espaces de travail et projets.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"mW8QSA\":[\"Nous n'avons pas trouvé la page que vous cherchiez. Elle a peut-être été déplacée.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Nous vous recontactons sous un jour. Vous préférez choisir un créneau vous-même ?\"],\"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.\"],\"FXjsEJ\":[\"Nous serions ravis de vous lire. Que vous ayez une idée pour quelque chose de nouveau, repéré une traduction qui sonne faux, ou envie de nous dire comment ça se passe. Vous avez trouvé un bug ? Utilisez <0>Signaler un problème pour l'envoyer avec des captures d'écran.\"],\"XolQc4\":[\"Nous serions ravis de vous lire. Que vous ayez une idée pour quelque chose de nouveau, repéré une traduction qui sonne faux, ou envie de nous dire comment ça se passe. Vous avez trouvé un bug ? Utilisez Signaler un problème dans la barre latérale pour l'envoyer avec des captures d'écran.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Bienvenue sur dembrane!\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Bienvenue !\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"Que souhaitez-vous vérifier ?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Que s'est-il passé ? Collez une capture d'écran ici pour la joindre\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"Que doit ECHO analyser ou générer à partir des conversations ?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"Qu'est-ce qui n'a pas marché ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"3ePd3I\":[\"Nouveautés\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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 ?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Les conversations anonymisées désactivent également la lecture de l'audio, le téléchargement de l'audio et la rétranscrire pour protéger la confidentialité des participants. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"MEmr1I\":[\"Lorsque vous terminez la conversation, les participants qui n'ont pas encore vérifié seront invités à vérifier ou à sauter\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"Quand le rapport doit-il être généré ?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Travaillez avec le nouvel assistant conversationnel, suivez les sessions dans le moniteur en direct et utilisez le traitement de transcription mis à jour.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Espace de travail\"],\"IG4YLy\":[\"Espace de travail / projet\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Valeur par défaut de l'espace de travail\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Paramètres de l'espace de travail\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Espaces de travail\"],\"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 ?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Rédigez vos consignes de vérification, générez des résultats dans la langue du projet et rappelez aux participants de vérifier avant de terminer. Configurez chaque base légale.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Langue ou ton incorrect\"],\"MNTYHt\":[\"Mauvaises sources\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Vous\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"Vous êtes le propriétaire des données\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"Vous pourrez modifier cela plus tard dans les paramètres de l'espace de travail après avoir ajouté vos informations de facturation.\"],\"uGP87g\":[\"Vous pourrez modifier cela plus tard dans les paramètres de l'espace de travail.\"],\"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.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"Vous pouvez réessayer ci-dessous.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"Vous avez une invitation en attente\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Vous n'avez encore vérifié aucun résultat. Souhaitez-vous vérifier avant de terminer ?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Vous recevrez bientôt \",[\"objectLabel\"],\" à vérifier.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"Vous êtes à jour.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"vous@exemple.fr\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Votre approbation nous aide à comprendre ce que vous pensez vraiment !\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Votre adresse e-mail\"],\"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.\"],\"vaTeZ3\":[\"Votre retour et cette réponse sont transmis à l'équipe dembrane.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"La génération de votre dernier rapport a été annulée. Affichage de votre rapport le plus récent.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Votre nom\"],\"VSneAo\":[\"Votre nom, votre e-mail et la page actuelle sont inclus pour que nous puissions vous recontacter.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"DrJCbp\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page. Vous pouvez également enregistrer une autre conversation ou partager le code QR pour que d'autres puissent contribuer.\"],\"7i36j4\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page. Vous pouvez également partager le code QR pour que d'autres puissent contribuer, ou enregistrer une autre conversation.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Vous n'êtes pas authentifié\"],\"You don't have permission to access this.\":[\"Vous n'avez pas la permission d'accéder à ceci.\"],\"Resource not found\":[\"Ressource non trouvée\"],\"Server error\":[\"Erreur serveur\"],\"Something went wrong\":[\"Une erreur s'est produite\"],\"We're preparing your workspace.\":[\"Nous préparons votre espace de travail.\"],\"Preparing your dashboard\":[\"Préparation de ton dashboard\"],\"Welcome back\":[\"Bon retour\"],\"participant.button.back.microphone\":[\"Retour\"],\"participant.mic.check.button.skip\":[\"Passer\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\"La bibliothèque prendra \",[\"duration\"]],\"uDvV8j\":[\" Envoyer\"],\"aMNEbK\":[\" Se désabonner des notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" bientôt disponible\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explorer\\\" bientôt disponible\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Vérifier\\\" bientôt disponible\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(facultatif)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(Vous)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" étiquette\"],\"other\":[\"#\",\" étiquettes\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message de dembrane\"],\"other\":[\"Messages de dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Étiquette :\"],\"other\":[\"Étiquettes :\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" ajoutées\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Modifié le \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" ne fait pas encore partie de cet espace de travail.\"],\"RZUJFH\":[[\"0\"],\" ne fait pas encore partie de cet espace de travail. Demandez à un administrateur de l'espace de travail d'inviter cette personne.\"],\"iOmAhc\":[[\"0\"],\" ne fait pas encore partie de cet espace de travail. Envoyez une invitation et partagez ce projet dès qu'ils rejoignent.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" non ajoutées\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" personnes ne font pas encore partie de cet espace de travail.\"],\"E6f0Mh\":[[\"0\"],\" personnes ne font pas encore partie de cet espace de travail. Demandez à un administrateur de les inviter.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" vues\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" personnes étaient déjà invitées. Le projet sera partagé dès qu'elles rejoignent.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" conversations • Modifié \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" sélectionné(s)\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" a déjà une invitation en attente pour un autre projet. Partagez ce projet une fois la personne arrivée.\"],\"zB7Coe\":[[\"email\"],\" figure dans les invitations en attente, mais l'e-mail n'a pas pu être envoyé. Renvoyez-le depuis Membres.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Actuellement, \",\"#\",\" conversation est prête à être analysée.\"],\"other\":[\"Actuellement, \",\"#\",\" conversations sont prêtes à être analysées.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" lit actuellement\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invitations envoyées. Le projet sera partagé dès qu'elles rejoignent l'espace de travail.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" en cours de traitement.\"],\"ZpJ0wx\":[\"*Transcription en cours.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 vue\"],\"AeSuqs\":[\"1. Vous fournissez une URL où vous souhaitez recevoir les notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. Lorsqu'un événement de conversation ou de rapport se produit, nous envoyons automatiquement les données à votre URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Votre système reçoit les données et peut agir sur elles (par exemple, enregistrer dans une base de données, envoyer un e-mail, mettre à jour un tableau de bord)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"Un nom convivial pour identifier ce webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Des imports audio plus fiables\"],\"XPY0OE\":[\"Un nouvel assistant et un suivi en direct\"],\"z9VxrW\":[\"Un nouveau rapport sera automatiquement généré et publié à l'heure prévue.\"],\"sy1BvY\":[\"Un portail participant pour enregistrer les conversations.\"],\"zm7GU7\":[\"Un lien vers la politique de confidentialité est obligatoire pour le traitement basé sur le consentement. Il doit commencer par http:// ou https:// et compter au maximum 255 caractères.\"],\"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é.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Un espace de conversations plus fluide\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Accès\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\":[\"Compte et sécurité\"],\"K3wUdw\":[\"Valeur par défaut du compte\"],\"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 requise\"],\"UQXw0W\":[\"Action sur\"],\"7L01XJ\":[\"Actions\"],\"F6pfE9\":[\"Active\"],\"3976bh\":[\"Active · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Filtres actifs\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Ajouter\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Ajouter un contexte supplémentaire (Optionnel)\"],\"Se1KZw\":[\"Ajouter tout ce qui s'applique\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Ajoutez des conversations au contexte du chat, utilisez de meilleurs modèles de questions et des options de transcription mises à jour. Les citations et traductions reçoivent des corrections.\"],\"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.\"],\"5phU36\":[\"Ajouter des images\"],\"1xDwr8\":[\"Ajoutez des termes clés ou des noms propres pour améliorer la qualité et la précision de la transcription.\"],\"ndpRPm\":[\"Ajoutez de nouveaux enregistrements à ce projet. Les fichiers que vous téléchargez ici seront traités et apparaîtront dans les conversations.\"],\"uqLJli\":[\"Ajoutez des personnes par e-mail. Celles qui ne sont pas encore dans l'espace de travail reçoivent une invitation et accèdent à ce projet dès qu'elles rejoignent.\"],\"1G8+6T\":[\"Ajoutez des personnes par e-mail. Celles qui ne sont pas encore dans cet espace de travail reçoivent une invitation, et le projet est partagé avec elles dès qu'elles rejoignent.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Ajouter une étiquette\"],\"add.tag.filter.modal.title\":[\"Ajouter une étiquette aux filtres\"],\"IKoyMv\":[\"Ajouter des étiquettes\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Ajouter aux filtres\"],\"NffMsn\":[\"Ajouter à cette conversation\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Ajouter un sujet\"],\"AHaRrL\":[\"Ajouter des traductions\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Ajouter un webhook\"],\"UZ07em\":[\"Ajouter votre premier webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Ajoutées\"],\"QKlADn\":[[\"0\"],\" personnes ajoutées\"],\"z9TWoF\":[[\"granted\"],\" personnes ajoutées\"],\"q+wngh\":[\"Ajouté et partagé\"],\"Na90E+\":[\"E-mails ajoutés\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" au chat\"],\"select.all.modal.add.with.filters\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" avec les filtres suivants :\"],\"select.all.modal.add.without.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Ajout de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation supplémentaire\"],\"other\":[\"#\",\" conversations supplémentaires\"]}],\" avec les filtres suivants :\"],\"select.all.modal.loading.title\":[\"Ajout de conversations\"],\"Du6bPw\":[\"Adresse\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Ajuster la taille de la police de base pour l'interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Tableau de bord d'administration\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Avancé\"],\"OaKXud\":[\"Avancé (Astuces et conseils)\"],\"JiIKww\":[\"Paramètres avancés\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Exécution guidée par les outils\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"Tout\"],\"cF7bEt\":[\"Toutes les actions\"],\"O1367B\":[\"Toutes les collections\"],\"gvykaX\":[\"Toutes les conversations\"],\"u/fl/S\":[\"Tous les fichiers ont été téléchargés avec succès.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"Tout lu\"],\"52imBJ\":[\"Toutes les versions sur GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"Tous les modèles\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Toutes les années\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Déjà invité. Le projet sera partagé dès qu'ils rejoignent.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"Une notification par e-mail sera envoyée à \",[\"0\"],\" participant\",[\"1\"],\". Voulez-vous continuer ?\"],\"8q/YVi\":[\"Une erreur s'est produite lors du chargement du Portail. Veuillez contacter l'équipe de support.\"],\"XyOToQ\":[\"Une erreur s'est produite.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"Une erreur inattendue s'est produite. Recharger la page ou revenir à l'accueil aide souvent.\"],\"F4cOH1\":[\"Langue d'analyse\"],\"ZlwDi6\":[\"Analytique\"],\"1x2m6d\":[\"Analysez ces éléments avec profondeur et nuances. Veuillez :\\n\\nFocaliser sur les connexions inattendues et les contrastes\\nAller au-delà des comparaisons superficieles\\nIdentifier les motifs cachés que la plupart des analyses manquent\\nRester rigoureux dans l'analyse tout en étant engageant\\nUtiliser des exemples qui éclairent des principes plus profonds\\nStructurer l'analyse pour construire une compréhension\\nDessiner des insights qui contredisent les idées conventionnelles\\n\\nNote : Si les similitudes/différences sont trop superficielles, veuillez me le signaler, nous avons besoin de matériel plus complexe à analyser.\"],\"Dzr23X\":[\"Annonces\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymiser la transcription\"],\"gd1W+U\":[\"Anonymiser les transcriptions\"],\"YdiKaK\":[\"conversation anonymisée\"],\"iPiP6k\":[\"Conversation anonymisée\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Autre chose ?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Apparence\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Appliquer\"],\"4TwsNi\":[\"Appliquer le modèle\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approuver\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approuvé\"],\"tq+4rb\":[\"Êtes-vous sûr de vouloir supprimer le webhook \\\"\",[\"0\"],\"\\\" ? Cette action ne peut pas être annulée.\"],\"uqhbrg\":[\"Êtes-vous sûr de vouloir supprimer ce chat ? Cette action est irréversible.\"],\"Q5Z2wp\":[\"Êtes-vous sûr de vouloir supprimer cette conversation ? Cette action ne peut pas être annulée.\"],\"yrk3z3\":[\"Êtes-vous sûr de vouloir supprimer ce sujet personnalisé ? Cette action ne peut pas être annulée.\"],\"YF1Re1\":[\"Êtes-vous sûr de vouloir supprimer ce projet ? Cette action est irréversible.\"],\"ELQ+fw\":[\"Êtes-vous sûr de vouloir supprimer ce rapport ? Cette action est irréversible.\"],\"aUsm4A\":[\"Êtes-vous sûr de vouloir supprimer cette étiquette ? Cela supprimera l'étiquette des conversations existantes qui la contiennent.\"],\"e3BGhi\":[\"Êtes-vous sûr de vouloir supprimer ce modèle ? Cette action est irréversible.\"],\"participant.modal.finish.message.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"sOql0x\":[\"Êtes-vous sûr de vouloir générer la bibliothèque ? Cela prendra du temps et écrasera vos vues et perspectives actuelles.\"],\"UXCOMn\":[\"Êtes-vous sûr de vouloir régénérer le résumé ? Vous perdrez le résumé actuel.\"],\"ZmeZPn\":[\"Êtes-vous sûr de vouloir supprimer votre avatar ?\"],\"wQ5jM6\":[\"Êtes-vous sûr de vouloir supprimer votre logo personnalisé ? Le logo dembrane par défaut sera utilisé à la place.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Demander\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Demandez à un administrateur de l'espace de travail d'inviter cette personne.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Demander l'e-mail ?\"],\"Rjlwvz\":[\"Demander le nom ?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"Sélectionne au moins un sujet pour activer la vérification\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Le téléchargement de l'audio n'est pas disponible pour les conversations anonymisées\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"La lecture de l'audio n'est pas disponible pour les conversations anonymisées\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Le traitement et les imports audio sont plus robustes, et la liste des conversations affiche des totaux plus clairs.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Conseil audio\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Journaux d'audit\"],\"aL1eBt\":[\"Journaux d'audit exportés en CSV\"],\"mS51hl\":[\"Journaux d'audit exportés en JSON\"],\"z8CQX2\":[\"Code d'authentification\"],\"R+PyK8\":[\"Générer automatiquement les titres\"],\"voAvDv\":[\"Générer automatiquement les titres\"],\"Wrpmw7\":[\"Généré automatiquement ou saisi manuellement\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Générer automatiquement un titre court basé sur le sujet pour chaque conversation après la synthèse. Le titre décrit ce qui a été discuté, pas qui a participé. Le nom original du participant est conservé séparément, s'il a fourni un nom.\"],\"F95AYw\":[\"Enregistrer automatiquement les transcriptions dans votre CRM ou base de données\"],\"WI8FHU\":[\"Sélectionnez automatiquement les conversations pertinentes pour le chat et suivez les références. Abonnez-vous aux notifications de rapports et profitez d’imports audio et texte améliorés.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Envoyer automatiquement les données de conversation à vos autres outils et services lorsque des événements se produisent.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar supprimé\"],\"jSKImf\":[\"Avatar mis à jour\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Retour\"],\"participant.button.back\":[\"Retour\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Retour à la sélection\"],\"9aZHfH\":[\"Back to settings\"],\"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\"],\"g7YpV4\":[\"Avant cet historique des versions\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Bêta\"],\"dashboard.dembrane.concrete.beta\":[\"Bêta\"],\"dashboard.dembrane.verify.beta\":[\"Bêta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"De meilleurs retours, un suivi plus simple\"],\"5DnJa6\":[\"De meilleurs enregistrements, plus de façons de répondre\"],\"9GKCNF\":[\"De meilleurs imports, transcriptions et recherches\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Facturation\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Prendre rendez-vous\"],\"KKLfx1\":[\"Reservez un appel avec nous\"],\"kFl92P\":[\"Réservez une formation certifiée pour continuer à utiliser dembrane dans des contextes à haut risque.\"],\"YgG3yv\":[\"Idées de brainstorming\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Corrections de bugs\"],\"4eBtkM\":[\"Construire des tableaux de bord personnalisés avec des données de conversation en temps réel\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"En supprimant ce projet, vous supprimerez toutes les données associées. Cette action est irréversible. Êtes-vous absolument sûr ?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Annuler le remplacement\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Annuler la planification\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Impossible d'ajouter une conversation vide\"],\"SL9Qao\":[\"Impossible de reprogrammer dans les 10 minutes précédant l'heure prévue\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Carte\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Changer de langue\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Changer le mot de passe\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Les modifications seront enregistrées automatiquement\"],\"xF/jsW\":[\"Changer de langue pendant une conversation active peut provoquer des résultats inattendus. Il est recommandé de commencer une nouvelle conversation après avoir changé la langue. Êtes-vous sûr de vouloir continuer ?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Discussion\"],\"OqbSPC\":[\"Discussion | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Nom du chat\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Le chat avec des conversations individuelles.\"],\"8Q+lLG\":[\"Discussions\"],\"chat.accordion.skeleton.title\":[\"Discussions\"],\"project.sidebar.chat.title\":[\"Discussions\"],\"Dv3TPp\":[\"Les chats reçoivent des titres automatiques, et le contexte inclut dates et durées. Accédez au dernier message et profitez d’un import audio plus clair.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Les chats réglés en tchèque répondent désormais en tchèque plutôt qu’en anglais.\"],\"gLvHXQ\":[\"Testez et choisissez votre microphone avant l’enregistrement, consultez les indicateurs audio et utilisez une transcription multilingue améliorée. Choisissez résumé, remue-méninges ou réponses personnalisées.\"],\"+e4Yxz\":[\"Vérifier l'accès au microphone\"],\"participant.button.check.microphone.access\":[\"Vérifier l'accès au microphone\"],\"WQUm5N\":[\"Vérifiez le texte et les images, puis réessayez\"],\"v4fiSg\":[\"Vérifiez votre e-mail\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choisir un fichier logo\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Choisissez des espaces visibles, sur invitation ou privés. Les membres chargent plus vite, les imports vous ramènent aux conversations, et les résumés et fusions automatiques sont plus fiables.\"],\"okLwd9\":[\"Choisir parmi vos autres projets\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choisir quand vous souhaitez recevoir les notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choisis le thème que tu préfères pour l’interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Effacer la recherche\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Des sources plus claires dans le chat\"],\"xOlaOX\":[\"Des accès plus clairs pour les administrateurs\"],\"B2pdef\":[\"Cliquez sur \\\"Télécharger les fichiers\\\" lorsque vous êtes prêt à commencer le processus de téléchargement.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Cliquer pour modifier\"],\"jcSz6S\":[\"Cliquez pour voir les \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Gestion client\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Cloner depuis un autre projet\"],\"nCnTY0\":[\"Cloner depuis le projet\"],\"BPrdpc\":[\"Cloner le projet\"],\"9U86tL\":[\"Cloner le projet\"],\"yz7wBu\":[\"Fermer\"],\"select.all.modal.close\":[\"Fermer\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Cas d'utilisation courants :\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Comparer & Contraster\"],\"CfO59/\":[\"Comparer & Contraster Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Terminé\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Continuer\"],\"7VpPHA\":[\"Confirmer\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirmer le nouveau mot de passe\"],\"yjkELF\":[\"Confirmer le nouveau mot de passe\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Publier\"],\"vz1fGK\":[\"Confirmer la reprogrammation\"],\"L0k594\":[\"Confirmez votre mot de passe pour générer un nouveau secret pour votre application d'authentification.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connecter votre agent\"],\"0Nvhtt\":[\"Connecter votre agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connexion aux services de création de rapports...\"],\"wX/BfX\":[\"Connexion saine\"],\"participant.modal.s3check.title\":[\"Problème de connexion\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connexion défectueuse\"],\"l9fkrm\":[\"Consentement\"],\"EhtOYz\":[\"Le traitement basé sur le consentement est actif sans lien vers la politique de confidentialité. Ajoutez-en un là où la base juridique est définie : les participants doivent pouvoir lire la politique de confidentialité.\"],\"mpby9d\":[\"Contacter le support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Contenu\"],\"M73whl\":[\"Contexte\"],\"VHSco4\":[\"Contexte ajouté :\"],\"JX3KT4\":[\"Suggestions contextuelles\"],\"xGVfLh\":[\"Continuer\"],\"participant.ready.to.begin.button.text\":[\"Continuer\"],\"participant.button.continue\":[\"Continuer\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversation\"],\"EiHu8M\":[\"Conversation ajoutée à la discussion\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Les références aux conversations sont réunies sous un seul titre Sources. Le formulaire de retour peut préremplir votre adresse e-mail.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation terminée\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Les pages de conversations et le chargement des données sont simplifiés. La sélection automatique laisse plus de place aux réponses, et les annonces génèrent moins de notifications répétées.\"],\"OtdHFE\":[\"Conversation retirée de la discussion\"],\"zTKMNm\":[\"Statut de la conversation\"],\"Rdt7Iv\":[\"Détails du statut de la conversation\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Les résumés ne restent plus bloqués dans les cas de traitement concernés. Les conversations suspendues par les limites de l’offre gratuite reprennent après un changement d’offre.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Tags de conversation\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copier le lien\"],\"H4brGj\":[\"Copier le lien dans le presse-papiers\"],\"AjrNNs\":[\"Copier le contenu du rapport\"],\"vAkFou\":[\"Copier le secret\"],\"v3StFl\":[\"Copier le résumé\"],\"/4gGIX\":[\"Copier dans le presse-papiers\"],\"RTxUjI\":[\"Copier dans le presse-papiers\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copie en cours...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Votre sélection n'a pas pu être reprise. Sélectionnez à nouveau ci-dessous.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Impossible de copier dans le presse-papiers. Veuillez réessayer.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Impossible d'ouvrir la liste des conversations. Réessayez.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Retour non enregistré\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Impossible d'envoyer le signalement. Réessayez\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Impossible de révoquer l'invitation\"],\"LPY4VY\":[\"Impossible d'envoyer l'invitation\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Créer\"],\"VW1ecc\":[\"Créer un nouveau webhook à partir de zéro\"],\"oJfYM5\":[\"Créer un brief de recherche à partir des conversations récentes\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Créer une bibliothèque\"],\"bUyyzw\":[\"Crée plusieurs rapports par projet et guide leur rédaction avec tes propres instructions. Les rapports programmés (bêta) incluent toutes les conversations enregistrées avant l’heure prévue. Crée, enregistre et épingle tes propres modèles de chat (bêta). Cette version ajoute aussi les projets épinglés, les paramètres de profil et le chat en ukrainien.\"],\"T7gFri\":[\"Créer une nouvelle organisation\"],\"library.create.view.modal.title\":[\"Créer une nouvelle vue\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Créer un rapport\"],\"A5hiCy\":[\"Créer un modèle\"],\"library.create.view\":[\"Créer une vue\"],\"3D0MXY\":[\"Créer une vue\"],\"dkAPxi\":[\"Créer un webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Créé le\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Recadrer l'avatar\"],\"udBqWc\":[\"Recadrer l'image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Recadrer le logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Logo actuel\"],\"Pn2B7/\":[\"Mot de passe actuel\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Personnalisé\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Nom de fichier personnalisé\"],\"GrXJvi\":[\"Logo personnalisé\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Prompt de titre personnalisé\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Conversations en tchèque, réponses en tchèque\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Zone de danger\"],\"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\"],\"ItMGda\":[\"Période\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Par défaut\"],\"ucTqrC\":[\"Par défaut - Pas de tutoriel (Seulement les déclarations de confidentialité)\"],\"K/78Yl\":[\"Déléguer une analyse multi-étapes avec l'exécution en direct des outils\"],\"cnGeoo\":[\"Supprimer\"],\"project.sidebar.chat.delete\":[\"Supprimer la discussion\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Supprimer le chat\"],\"2GCE3m\":[\"Supprimer la conversation\"],\"2DzmAq\":[\"Supprimer la conversation\"],\"j5pYC4\":[\"Supprimer le sujet personnalisé\"],\"mp235G\":[\"Supprimer le projet\"],\"++iDlT\":[\"Supprimer le projet\"],\"rUWrSE\":[\"Supprimer le rapport\"],\"qr0gpK\":[\"Supprimer le tag\"],\"DFjdv0\":[\"Supprimer le modèle\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Supprimer le webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Les projets supprimés et les conversations suspendues par les limites de l’abonnement ne déclenchent plus de tentatives répétées de résumé.\"],\"+m7PfT\":[\"Supprimé avec succès\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane pour votre événement ?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"invitation événement dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot était notre précédent projet. Merci aux organisateurs, aux participants et aux contributeurs qui ont aidé à le façonner.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Décrivez le problème\"],\"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\"],\"ney/NP\":[\"Détermine la base juridique RGPD selon laquelle les données personnelles sont traitées pour ce projet.\"],\"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.\"],\"NMz7xK\":[\"Développez un cadre stratégique qui conduit à des résultats significatifs. Veuillez :\\n\\nIdentifier les objectifs clés et leurs interdépendances\\nPlanifier les moyens d'implémentation avec des délais réalistes\\nAnticiper les obstacles potentiels et les stratégies de mitigation\\nDéfinir des indicateurs clairs pour le succès au-delà des indicateurs de vanité\\nMettre en évidence les besoins en ressources et les priorités d'allocation\\nStructurer le plan pour les actions immédiates et la vision à long terme\\nInclure les portes de décision et les points de pivot\\n\\nNote : Concentrez-vous sur les stratégies qui créent des avantages compétitifs durables, pas seulement des améliorations incrémentales.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Désactiver 2FA\"],\"yrMawf\":[\"Désactiver l'authentification à deux facteurs\"],\"E/QGRL\":[\"Désactivé\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Nom d'affichage\"],\"fDGgw4\":[\"Dois-je avoir cela ?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Voulez-vous rester dans la boucle ?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"C'est bon, contactez-moi\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Télécharger\"],\"5YVf7S\":[\"Téléchargez toutes les transcriptions de conversations générées pour ce projet.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Télécharger l'audio\"],\"N8MP2s\":[\"Téléchargez l’audio et organisez les conversations\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Téléchargez l’audio, ajoutez des étiquettes depuis le tableau de bord et utilisez des résumés adaptés à la conversation. La modification et l’aperçu du portail reçoivent des corrections.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Télécharger le QR code\"],\"+bBcKo\":[\"Télécharger la transcription\"],\"5XW2u5\":[\"Options de téléchargement de la transcription\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Brouillon des actions suivantes et les organiser par priorité\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Glissez les fichiers audio ici ou cliquez pour sélectionner des fichiers\"],\"KGi3u9\":[\"Glisser pour réorganiser\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Dupliquer\"],\"lkz6PL\":[\"Durée\"],\"KIjvtr\":[\"Néerlandais\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"p. ex. \\\"Focus sur les thèmes de durabilité\\\" ou \\\"Que pensent les participants de la nouvelle politique ?\\\"\"],\"pO9dOq\":[\"par exemple : \\\"Utiliser des phrases adjectivales courtes comme 'Espaces verts urbains' ou 'Emploi des jeunes'. Éviter les titres génériques.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"ex. Résumé hebdomadaire des parties prenantes\"],\"ffuZIY\":[\"par exemple : Notifications Slack, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Modifier\"],\"9WkyHF\":[\"Modifier la conversation\"],\"Y/3VME\":[\"Modifier le sujet personnalisé\"],\"/8fAkm\":[\"Modifier le nom du fichier\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Mode édition\"],\"niSWGL\":[\"Modifier les options\"],\"G2KpGE\":[\"Modifier le projet\"],\"DdevVt\":[\"Modifier le contenu du rapport\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Modifiez les rapports directement\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Modifiez vos rapports, vérifiez plus facilement les microphones dans le portail et consultez de meilleurs indicateurs de chargement et messages d’erreur.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@travail.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji affiché à côté du sujet, par exemple : 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Vide\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Activer 2FA\"],\"D3AnH0\":[\"Activer Explorer\"],\"4KKbfZ\":[\"Activer la participation\"],\"G3dSLc\":[\"Activer les notifications de rapports\"],\"ZUS4uO\":[\"Activez cette fonctionnalité pour permettre aux participants de demander des réponses alimentées par l'IA pendant leur conversation. Les participants peuvent cliquer sur \\\"Explorer\\\" après avoir enregistré leurs pensées pour recevoir un retour contextuel, encourageant une réflexion plus profonde et un engagement accru. Une période de récupération s'applique entre les demandes.\"],\"dashboard.dembrane.feature.verify.description\":[\"Activez cette fonctionnalité pour permettre aux participants de vérifier et d'approuver les \\\"résultats\\\" de leurs contributions. Cela aide à cristalliser les idées clés, les préoccupations ou les résumés. Après la conversation, vous pouvez filtrer les discussions avec des résultats vérifiés et les examiner dans l'aperçu.\"],\"C027jd\":[\"Activer l'anonymisation des transcriptions\"],\"329BBO\":[\"Activer l'authentification à deux facteurs\"],\"x35ZEt\":[\"Activer la vérification\"],\"RxzN1M\":[\"Activé\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"Anglais\"],\"GboWYL\":[\"Entrez un terme clé ou un nom propre\"],\"TSHJTb\":[\"Entrez un nom pour le nouveau conversation\"],\"KovX5R\":[\"Entrez un nom pour votre projet cloné\"],\"DRYPFp\":[\"Entrez une clé secrète\"],\"34YqUw\":[\"Entrez un code valide pour désactiver l'authentification à deux facteurs.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Saisir le mot de passe actuel\"],\"2FPsPl\":[\"Entrez le nom du fichier (sans extension)\"],\"VpwcSk\":[\"Saisir le nouveau mot de passe\"],\"oIn7d4\":[\"Entrez le code à 6 chiffres de votre application d'authentification.\"],\"q1OmsR\":[\"Entrez le code actuel à six chiffres de votre application d'authentification.\"],\"NgaR6B\":[\"Entrez votre mot de passe\"],\"42tLXR\":[\"Entrez votre requête\"],\"HRbyGE\":[\"Entré par le participant sur le portail\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Erreur\"],\"Ne0Dr1\":[\"Erreur lors du clonage du projet\"],\"AEkJ6x\":[\"Erreur lors de la création du rapport\"],\"edh3aY\":[\"Erreur lors du chargement du projet\"],\"4kVRov\":[\"Une erreur s'est produite\"],\"hmk+3M\":[\"Erreur lors du téléchargement de \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Événements\"],\"VFClUG\":[\"Événements à écouter\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Tout semble bon – vous pouvez continuer.\"],\"jqsg/I\":[\"Exemple de payload de webhook\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Quitter le plein écran\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Expérimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explorer\"],\"participant.echo.explore\":[\"Explorer\"],\"B7flm8\":[\"Explorez les thèmes récurrents dans la Library\"],\"EebTQD\":[\"Explore les récits et les perspectives avec le modèle de chat Narratives, en anglais et en néerlandais.\"],\"HNnM2X\":[\"Explorer les archives de dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploration de \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Exporter\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"Externe\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Échec\"],\"bh2Vob\":[\"Échec de l'ajout de la conversation à la discussion\"],\"ajvYcJ\":[\"Échec de l'ajout de la conversation à la discussion\",[\"0\"]],\"g5wCZj\":[\"Échec de l'ajout de conversations au contexte\"],\"pmwvUt\":[\"Échec de l'approbation du résultat. Veuillez réessayer.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Échec de la copie du chat. Veuillez réessayer.\"],\"uvu6eC\":[\"Échec de la copie de la transcription. Réessaie.\"],\"UQ6LqT\":[\"Échec de la création du sujet personnalisé\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Échec de la suppression du sujet personnalisé\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Échec de la suppression de la réponse\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Échec de la fin de la conversation. Veuillez réessayer.\"],\"vx5bTP\":[\"Échec de la génération de \",[\"label\"],\". Veuillez réessayer.\"],\"Fa1ewI\":[\"Impossible de générer le résumé. Réessaie plus tard.\"],\"Z77bMM\":[\"Échec du chargement des webhooks\"],\"T7KYJY\":[\"Échec du marquage de toutes les annonces comme lues\"],\"eGHX/x\":[\"Échec du marquage de l'annonce comme lue\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Échec de la reconnexion. Veuillez recharger la page.\"],\"SVtMXb\":[\"Échec de la régénération du résumé. Veuillez réessayer plus tard.\"],\"h49o9M\":[\"Échec du rechargement. Veuillez réessayer.\"],\"rv8mO7\":[\"Impossible de supprimer l'avatar\"],\"kE1PiG\":[\"Échec de la suppression de la conversation de la discussion\"],\"+piK6h\":[\"Échec de la suppression de la conversation de la discussion\",[\"0\"]],\"P9wLTJ\":[\"Échec de la suppression du logo\"],\"IMUHg3\":[\"Replanification echouee. Veuillez choisir un horaire plus eloigne et reessayer.\"],\"SmP70M\":[\"Échec de la transcription de la conversation. Veuillez réessayer.\"],\"kClMar\":[\"Échec de la révision du résultat. Veuillez réessayer.\"],\"wMEdO3\":[\"Échec de l'arrêt de l'enregistrement lors du changement de périphérique. Veuillez réessayer.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Échec de la mise à jour du sujet personnalisé\"],\"BpuK7o\":[\"Échec de la mise à jour de la base juridique\"],\"Avee+B\":[\"Impossible de mettre à jour le nom\"],\"gnm1CH\":[\"Échec de la mise à jour de l'épingle\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Impossible de télécharger l'avatar\"],\"RW4V7P\":[\"Échec du téléchargement du logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Fonctionnalité bientôt disponible\"],\"YirHq7\":[\"Commentaires\"],\"radRmd\":[\"Portail de commentaires\"],\"2roTVj\":[\"Retour envoyé\"],\"87gcCP\":[\"Le fichier \\\"\",[\"0\"],\"\\\" dépasse la taille maximale de \",[\"1\"],\".\"],\"ena+qV\":[\"Le fichier \\\"\",[\"0\"],\"\\\" a un format non pris en charge. Seuls les fichiers audio sont autorisés.\"],\"LkIAge\":[\"Le fichier \\\"\",[\"0\"],\"\\\" n'est pas un format audio pris en charge. Seuls les fichiers audio sont autorisés.\"],\"RW2aSn\":[\"Le fichier \\\"\",[\"0\"],\"\\\" est trop petit (\",[\"1\"],\"). La taille minimale est de \",[\"2\"],\".\"],\"+aBwxq\":[\"Taille du fichier: Min \",[\"0\"],\", Max \",[\"1\"],\", jusqu'à \",[\"MAX_FILES\"],\" fichiers\"],\"UkgMPE\":[\"Nom du fichier depuis le fichier téléchargé\"],\"5g0xbt\":[\"Filtrer les journaux d'audit par action\"],\"9clinz\":[\"Filtrer les journaux d'audit par collection\"],\"O39Ph0\":[\"Filtrer par action\"],\"DiDNkt\":[\"Filtrer par collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filtrer les versions par année\"],\"MRk67a\":[\"Trouver des contradictions et suggérer des questions de suivi\"],\"SdZBYB\":[\"Trouvez les conversations adaptées à votre question\"],\"oRQsgh\":[\"Trouvez des espaces et poursuivez les échanges\"],\"p2j2po\":[\"Retrouvez votre place dans le chat\"],\"participant.button.stop.finish\":[\"Terminer\"],\"participant.button.finish.text.mode\":[\"Terminer\"],\"participant.button.finish\":[\"Terminer\"],\"participant.modal.finish.title.text.mode\":[\"Êtes-vous sûr de vouloir terminer la conversation ?\"],\"4dQFvz\":[\"Terminé\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"Pour vous\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"Français\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Transcription complète (lorsqu'elle est disponible)\"],\"3qkggm\":[\"Plein écran\"],\"Weq9zb\":[\"Général\"],\"ziAjHi\":[\"Générer\"],\"EIdJgG\":[\"Générer un nouveau rapport\"],\"QsUhrf\":[\"Générer un rapport\"],\"GRy59I\":[\"Générer un résumé d'abord\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Générer la bibliothèque\"],\"5SWGxv\":[\"Générer maintenant\"],\"GWUJ9X\":[\"Générer maintenant\"],\"QqIxfi\":[\"Générer un secret\"],\"gitFA/\":[\"Générer un résumé\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Recevez une réponse pendant une conversation\"],\"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.\"],\"Pl6LQ+\":[\"Prendre contact\"],\"ZDIydz\":[\"Commencer\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Donnez-moi une liste de 5 à 10 sujets qui sont discutés.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Retour\"],\"participant.concrete.artefact.action.button.go.back\":[\"Retour\"],\"DXr0zk\":[\"Plein écran\"],\"iWpEwy\":[\"Retour à l'accueil\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Aller à la nouvelle conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Bonne réponse\"],\"76gPWk\":[\"Compris\"],\"hjZBYK\":[\"Vous avez deux minutes ? Cinq questions facultatives nous aident à nous préparer.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide pour comprendre comment les titres sont générés. Les titres décrivent le sujet de la conversation, pas le participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guider le rapport\"],\"myXGZW\":[\"Guide\"],\"ZqBGoi\":[\"A des artefacts vérifiés\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Aide\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Masqué\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Pépite cachée\"],\"vLyv1R\":[\"Masquer\"],\"eHo/Jc\":[\"Masquer les données\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Masquer les données de révision\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"masquer l'invitation événement dembrane\"],\"V3NvRL\":[\"Masquer l'invitation événement dembrane fait partie d'un forfait payant.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"À la une\"],\"tn75xn\":[\"Concept spécifique mis en évidence\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Accueil\"],\"Ai2U7L\":[\"Hôte\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Guide de l'hôte\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Retour de l'hôte\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"Comment ça marche :\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"Je comprends\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identifiez les thèmes, sujets et arguments récurrents qui apparaissent de manière cohérente dans les conversations. Analysez leur fréquence, intensité et cohérence. Sortie attendue: 3-7 aspects pour les petits ensembles de données, 5-12 pour les ensembles de données moyens, 8-15 pour les grands ensembles de données. Conseils de traitement: Concentrez-vous sur les motifs distincts qui apparaissent dans de multiples conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Si ce que vous avez repéré concerne des données visibles par les mauvaises personnes, un accès dont quelqu'un ne devrait pas disposer, ou une possible faille de sécurité, utilisez plutôt notre <0>formulaire de signalement de sécurité. Il parvient à une autre équipe par une voie plus rapide. Pour toute urgence, envoyez un e-mail à <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"Si vous êtes satisfait de \",[\"objectLabel\"],\", cliquez sur \\\"Approuver\\\" pour montrer que vous vous sentez entendu.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"Si vous n'êtes pas sûr, vous n'avez probablement pas besoin de cela encore. Les webhooks sont une fonctionnalité avancée généralement utilisée par les développeurs ou les équipes avec des intégrations personnalisées. Vous pouvez toujours les configurer plus tard.\"],\"hDVOQQ\":[\"Si vous configurez des intégrations webhook, nous aimerions en savoir plus sur votre cas d'utilisation. Nous construisons également des fonctionnalités d'observabilité incluant les journaux d'audit et le suivi de la livraison.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Les images doivent faire moins de \",[\"MAX_FILE_MB\"],\" Mo\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Améliorations\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Boîte de réception\"],\"Au/WJO\":[\"Inclure le lien du portail\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Incorrect ou inventé\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Perspectives\"],\"MSVCjk\":[\"Instructions pour générer le résultat de la vérification\"],\"fN5mkr\":[\"Intégrations et exportation\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Voici Popcorn\"],\"crUYYp\":[\"Code invalide. Veuillez en demander un nouveau.\"],\"jLr8VJ\":[\"Identifiants invalides.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invitation envoyée à \",[\"email\"],\". Le projet sera partagé dès qu'elle rejoint l'espace de travail.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invitation envoyée. Le projet sera partagé dès qu'elle rejoint l'espace de travail.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Inviter dans l'espace de travail et partager\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"Adresse IP\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"library.not.available.message\":[\"Il semble que la bibliothèque n'est pas disponible pour votre compte. Veuillez demander un accès pour débloquer cette fonctionnalité.\"],\"participant.outcome.error.description\":[\"Nous n'avons pas pu charger ce résultat. Il peut s'agir d'un problème temporaire. Vous pouvez essayer de recharger ou revenir en arrière pour sélectionner un autre sujet.\"],\"5dxEAB\":[\"Il semble que vous n'ayez pas encore de rapport pour ce projet. Générez-en un pour obtenir un aperçu de vos conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"Il semble que plusieurs personnes parlent. Prendre des tours nous aidera à entendre tout le monde clairement.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italien (uniquement les fonctionnalités ECHO, Transcription et Résumés)\"],\"1BIvTp\":[\"L’italien pour vos fonctions essentielles\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Rejoindre\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Rejoindre cette session du portail\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Un instant\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Gardez les appareils éveillés pendant l’enregistrement\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Continuez à travailler pendant les imports audio, recherchez vos étiquettes et suivez la transcription. La lecture audio améliorée et une sélection plus pertinente facilitent l’analyse.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Langue\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Dernièrement enregistré le \",[\"0\"]],\"K7P0jz\":[\"Dernière mise à jour\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Dernier\"],\"lchnsl\":[\"Dernière version\"],\"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\"],\"J8VWes\":[\"Laissez votre adresse e-mail pour que nous puissions vous contacter.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Base juridique\"],\"vRXsmZ\":[\"Base juridique\"],\"CopiEV\":[\"Base juridique enregistrée\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Bibliothèque\"],\"library.title\":[\"Bibliothèque\"],\"T50lwc\":[\"Création de la bibliothèque en cours\"],\"gkv8iG\":[\"Plaque d'immatriculation\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Lien\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Lien vers la politique de confidentialité affichée aux participants\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Direct\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Mode d'exécution de l'agent en direct\"],\"participant.live.audio.level\":[\"Niveau audio en direct:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Vue en direct\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Chargement\"],\"participant.verify.instructions.loading\":[\"Chargement\"],\"yQ9yN3\":[\"Chargement des actions...\"],\"participant.concrete.loading.artefact\":[\"Chargement de l'artefact\"],\"JOvnq+\":[\"Chargement des journaux d'audit…\"],\"y+JWgj\":[\"Chargement des collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Chargement des microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Chargement de la transcription...\"],\"3SKW0s\":[\"Chargement des sujets de vérification…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"chargement...\"],\"Z3FXyt\":[\"Chargement...\"],\"Pwqkdw\":[\"Chargement…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Connexion\"],\"LM/dWU\":[\"Connexion | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo supprimé\"],\"MjfaMh\":[\"Logo mis à jour\"],\"nOhz3x\":[\"Déconnexion\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Plus long en premier\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Gérer les modèles\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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\":[\"Tout marquer comme lu\"],\"JSxZVX\":[\"Marquer toutes comme lues\"],\"E8m+Rc\":[\"Mark as attended\"],\"+s1J8k\":[\"Marquer comme lue\"],\"5GPcf9\":[\"Marquer comme non lue\"],\"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.\"],\"IthddP\":[\"Accès MCP\"],\"TJA2es\":[\"Accès MCP | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Les connexions MCP permettent à ton agent de trouver des projets, rechercher des conversations, lire des transcriptions et consulter la documentation, avec des contrôles par organisation et un consentement explicite.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Notes de réunion\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Membres\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages de \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"L'accès au microphone est toujours refusé. Veuillez vérifier vos paramètres et réessayer.\"],\"azjxk1\":[\"Ne répond pas à la question\"],\"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\":[\"Suivi\"],\"f8jrkd\":[\"autres\"],\"2FYpfJ\":[\"Plus\"],\"JcD7qf\":[\"Plus d'actions\"],\"rAPyBz\":[\"Anonymisation et enregistrement plus fiables\"],\"MmhZK+\":[\"Des résumés de conversations plus fiables\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Un contexte de chat plus utile\"],\"QWdKwH\":[\"Déplacer\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Déplacer\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Déplacer vers un autre projet\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Déplacer vers un projet\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Doit etre au moins 10 minutes dans le futur\"],\"5hOInR\":[\"Mes accès\"],\"en+4fS\":[\"Mes modèles\"],\"6YtxFj\":[\"Nom\"],\"e3/ja4\":[\"Nom A-Z\"],\"8/brI5\":[\"Le nom est requis\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Nom mis à jour\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Nom Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"Nouveau\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"Nom de la nouvelle conversation\"],\"u2uElg\":[\"Nouvelles conversations ajoutees depuis ce rapport\"],\"library.new.conversations\":[\"De nouvelles conversations ont été ajoutées depuis la génération de la bibliothèque. Régénérez la bibliothèque pour les traiter.\"],\"/yIxDf\":[\"Nouvelles fonctionnalités\"],\"QnAEjj\":[\"Nouveautés, améliorations et corrections dans dembrane.\"],\"CSz4y/\":[\"Nouveau look, nouvelles fonctionnalités\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"Nouveau mot de passe\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"gKi+a/\":[\"Nouveau projet\"],\"wzIR5D\":[\"Nouveau projet | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"Nouveau rapport\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Plus récent en premier\"],\"hXzOVo\":[\"Suivant\"],\"participant.button.next\":[\"Suivant\"],\"participant.verify.selection.button.next\":[\"Suivant\"],\"participant.verify.instructions.button.next\":[\"Suivant\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"Non\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"Aucune action trouvée\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"Aucun journal d'audit ne correspond aux filtres actuels.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"Aucune discussion trouvée. Commencez une discussion en utilisant le bouton \\\"Demander\\\".\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"Aucune collection trouvée\"],\"zsslJv\":[\"Aucun contenu\"],\"1pZsdx\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"library.no.conversations\":[\"Aucune conversation disponible pour créer la bibliothèque\"],\"EtMtH/\":[\"Aucune conversation trouvée.\"],\"BuikQT\":[\"Aucune conversation trouvée. Commencez une conversation en utilisant le lien d'invitation à participer depuis la <0><1>vue d'ensemble du projet.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"Aucune conversation n'a été traitée. Cela peut se produire si toutes les conversations sont déjà dans le contexte ou ne correspondent pas aux filtres sélectionnés.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Pas encore de conversations. Vous pouvez planifier un rapport maintenant et les conversations seront incluses une fois ajoutees.\"],\"oaDwXD\":[\"Aucune valeur par défaut définie (gestion client s'applique)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Pas encore de retours.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"Aucun résultat\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"Aucun nouveau feedback détecté encore. Veuillez continuer votre discussion et réessayer bientôt.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Personne dans l'organisation pour l'instant.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"Aucun projet trouvé \",[\"0\"]],\"y29l+b\":[\"Aucun projet trouvé pour ce terme de recherche\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Pas encore de notes de version.\"],\"ctlSnm\":[\"Aucun rapport trouvé\"],\"1iQvuD\":[\"Pas encore de rapports\"],\"Ev2r9A\":[\"Aucun résultat\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"Aucune étiquette trouvée\"],\"LcBe0w\":[\"Aucune étiquette n'a encore été ajoutée à ce projet. Ajoutez une étiquette en utilisant le champ de texte ci-dessus pour commencer.\"],\"KE6RCJ\":[\"Aucun modèle ne correspond à {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"Aucune transcription disponible\"],\"vq+6l+\":[\"Aucune transcription n'existe pour cette conversation. Veuillez vérifier plus tard.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"Aucun fichier audio valide n'a été sélectionné. Veuillez sélectionner uniquement des fichiers audio (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Aucun sujet de vérification n'est configuré pour ce projet.\"],\"pdWSGS\":[\"Aucun sujet de vérification disponible.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"Aucun webhook configuré\"],\"/PUkCU\":[\"Aucun webhook trouvé\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Non ajoutées\"],\"OJx3wK\":[\"Non disponible\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Rien de nouveau de dembrane pour le moment.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notifier les participants lorsqu'un rapport est publié.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Plus ancien en premier\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Une fois que vous avez discuté, appuyez sur \\\"réviser\\\" pour que \",[\"objectLabel\"],\" change afin de refléter votre discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Une fois que vous recevez \",[\"objectLabel\"],\", lisez-le à haute voix et partagez à haute voix ce que vous souhaitez modifier, le cas échéant.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"En cours\"],\"conversation.ongoing\":[\"En cours\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Modifiez uniquement ce paramètre en consultation avec la(les) personne(s) responsable(s) de la protection des données dans votre organisation.\"],\"z7dMhl\":[\"Seules les images peuvent être jointes\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Seuls les administrateurs de l'espace de travail peuvent modifier la base juridique.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Il semble que l'accès au microphone ait été refusé. Pas d'inquiétude ! Nous avons un guide de dépannage pratique pour vous. N'hésitez pas à le consulter. Une fois le problème résolu, revenez sur cette page pour vérifier si votre microphone est prêt.\"],\"1TNIig\":[\"Ouvrir\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Voir l'enregistrement\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Ouvrir le guide de dépannage\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Ouvrez votre application d'authentification et entrez le code actuel à six chiffres.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optionnel\"],\"ZFIvWo\":[\"Optionnel (retour à l'anglais)\"],\"V44CS4\":[\"Champ optionnel sur la page de démarrage\"],\"bkndzy\":[\"Champ optionnel sur la page de remerciements\"],\"xam4uE\":[\"Question facultative \",[\"0\"],\" sur \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Les administrateurs d’organisation peuvent rejoindre les espaces privés depuis la page des membres. Les options d’accès expliquent quand il faut d’abord rejoindre un espace.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organisations, espaces de travail et projets\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organisez le travail en espaces, invitez des collaborateurs externes et des observateurs, et gérez les accès depuis la nouvelle barre latérale. Déplacez conversations et projets entre leurs espaces respectifs.\"],\"+g4lbW\":[\"Organisez votre travail en organisations, espaces de travail et projets, avec un contrôle plus clair des accès.\"],\"ucgZ0o\":[\"Organisation\"],\"/IX/7x\":[\"Autre\"],\"x0FjQV\":[\"Notre première version majeure\"],\"GC75c7\":[\"Résultat approuvé avec succès !\"],\"QLXrh9\":[\"Résultat rechargé avec succès !\"],\"LJg1UW\":[\"Résultat revu avec succès !\"],\"df3S+R\":[\"Résultat mis à jour !\"],\"1fjbvD\":[\"résultats\"],\"ZU3zZC\":[\"Résultats\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Remplacée pour ce projet\"],\"AR/qbs\":[\"Remplacer pour ce projet\"],\"6/dCYd\":[\"Aperçu\"],\"/fAXQQ\":[\"Vue d’ensemble - Thèmes et patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Contenu de la page\"],\"8F1i42\":[\"Page non trouvée\"],\"6+Py7/\":[\"Titre de la page\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Email du participant\"],\"WdEzKM\":[\"Emails du participant\"],\"Uc9fP1\":[\"Fonctionnalités participant\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Nom et email du participant\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Les participants peuvent demander une réponse pendant l’enregistrement et la lire à mesure qu’elle arrive. Les hôtes activent les réponses et personnalisent la consigne dans les paramètres du portail.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Les participants peuvent vérifier les résultats et affiner les réponses. De nouveaux modes et suggestions soutiennent l’analyse, et l’authentification à deux facteurs complète la connexion.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Les participants pourront sélectionner des étiquettes lors de la création de conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Mot de passe\"],\"zJx6Vx\":[\"Mot de passe modifié\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Les mots de passe ne correspondent pas\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"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\":[\"Action en attente\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Les informations personnelles seront remplacées par des espaces réservés. La lecture audio, le téléchargement et la retranscription seront désactivés pour la nouvelle conversation.\"],\"zmwvG2\":[\"Téléphone\"],\"B8mlc2\":[\"Choisir une date\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Choisir un créneau maintenant\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Choisis l’approche qui correspond à ta question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Épingler\"],\"u8qC4w\":[\"Épingler le projet\"],\"S+WiJ3\":[\"Épinglez des modèles ici pour un accès rapide.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Épinglés est plein (max 5)\"],\"EC6BHi\":[\"Projets épinglés\"],\"RimR35\":[\"Modèles épinglés\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Prévu\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Veuillez autoriser l'accès au microphone pour démarrer le test.\"],\"SQSc5o\":[\"Veuillez vérifier plus tard ou contacter le propriétaire du projet pour plus d'informations.\"],\"T8REcf\":[\"Veuillez vérifier vos entrées pour les erreurs.\"],\"n6oAnk\":[\"Veuillez activer la participation pour activer le partage\"],\"fwrPh4\":[\"Veuillez entrer une adresse e-mail valide.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également répondre par écrit en cliquant sur l'icône de texte.\\n**Veuillez garder cet écran allumé**\\n(écran noir = pas d'enregistrement)\"],\"Lu1j4b\":[\"Veuillez enregistrer votre réponse en cliquant sur le bouton \\\"Enregistrer\\\" ci-dessous. Vous pouvez également répondre par écrit en cliquant sur l'icône de texte.\\n**Veuillez garder cet écran allumé**\\n(écran noir = pas d'enregistrement).\\nVotre transcription sera anonymisée et votre hôte ne pourra pas écouter votre enregistrement.\"],\"library.processing.request\":[\"Bibliothèque en cours de traitement\"],\"04DMtb\":[\"Veuillez patienter pendant que nous traitons votre demande de retranscription. Vous serez redirigé vers la nouvelle conversation lorsque prêt.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG ou WebP. Sera recadré en cercle.\"],\"jjdudv\":[\"Mauvaise réponse\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Contenu du Portail\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Éditeur du portail\"],\"qVypVJ\":[\"Éditeur de Portail\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Préparez les sessions avec un guide modifiable, recueillez les e-mails et anonymisez les transcriptions. Cette version introduit aussi les logos personnalisés et les titres automatiques de conversations.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Préparation de votre expérience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Aperçu : Le rapide brun fox saute sur le chien paresseux.\"],\"DHhJ7s\":[\"Précédent\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Imprimer / Enregistrer PDF\"],\"S8ugMC\":[\"Imprimer le rapport\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL de la politique de confidentialité\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Continuer\"],\"select.all.modal.proceed\":[\"Continuer\"],\"select.all.modal.loading.description\":[\"Traitement de <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" et ajout à votre chat\"],\"gzGDMM\":[\"Traitement de votre demande de retranscription...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Projet\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"La recherche de projets et de conversations, avec des QR codes personnalisés.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Projet créé\"],\"zjTrs1\":[\"Valeur par défaut du projet : activé. Les informations personnelles seront remplacées par des espaces réservés. La lecture audio, le téléchargement et la retranscription seront désactivés pour la nouvelle conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Résumé Meta du Projet\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Nom du projet\"],\"3gh0L6\":[\"Nom et ID du projet\"],\"6Z2q2Y\":[\"Le nom du projet doit comporter au moins 4 caractères\"],\"n7JQEk\":[\"Projet introuvable\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Aperçu du projet | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Paramètres du projet\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projets\"],\"DK5DV3\":[\"Projets | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Fournissez un aperçu des sujets principaux et des thèmes récurrents\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publier\"],\"vsX8VJ\":[\"Publiez ce rapport d'abord pour afficher le lien du portail\"],\"IHzoSN\":[\"Publiez ce rapport pour obtenir un lien de partage\"],\"u3wRF+\":[\"Publié\"],\"E7YTYP\":[\"Récupère les citations les plus marquantes de cette session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Question\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Évaluation\"],\"wr9IYa\":[\"Ressaisir le nouveau mot de passe\"],\"0ZBIgY\":[\"Réutiliser les paramètres d'un webhook existant\"],\"Z5Tlsx\":[\"Contactez-moi\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Lire à haute voix\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Prêt à commencer\"],\"ShoKlK\":[\"Prêt à connecter vos outils ? Ajoutez un webhook pour recevoir automatiquement les données de conversation lorsque des événements se produisent.\"],\"VJScHU\":[\"Motif\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Applications recommandées\"],\"participant.button.s3check.reconnect\":[\"Reconnecter\"],\"participant.button.interruption.reconnect\":[\"Reconnecter\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Enregistrer\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Enregistrer une autre conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Les appareils restent éveillés plus sûrement. L’accueil des participants, l’affinement des réponses et la sélection de conversations dans le chat Specific Details reçoivent des corrections.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Enregistrement interrompu\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Enregistrement en pause\"],\"/l7qFE\":[\"Enregistrement démarré\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recréer la vue\"],\"view.recreate.modal.title\":[\"Recréer la vue\"],\"CqnkB0\":[\"Thèmes récurrents\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"Références\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Actualiser\"],\"ZMXpAp\":[\"Actualiser les journaux d'audit\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Régénérer\"],\"PpFJd2\":[\"Régénérer le résumé\"],\"bluvj0\":[\"Régénérer le résumé\"],\"participant.regenerating.outcome\":[\"Régénération du résultat\"],\"oYlYU+\":[\"Régénération du résumé. Patiente un peu...\"],\"HPitDS\":[\"S'enregistrer | dembrane\"],\"/PACVa\":[\"Notes de version\"],\"Gm7/K+\":[\"Notes de version | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Vidéo de la version : \",[\"0\"]],\"tF5Smn\":[\"Recharger la page\"],\"participant.button.reload.page.text.mode\":[\"Recharger la page\"],\"participant.button.reload\":[\"Recharger la page\"],\"participant.concrete.artefact.action.button.reload\":[\"Recharger la page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Rappeler aux utilisateurs de vérifier avant de finir\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Supprimer\"],\"w61W3L\":[\"Supprimer \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Supprimer l'avatar\"],\"Kl7//J\":[\"Supprimer l'e-mail\"],\"cILfnJ\":[\"Supprimer le fichier\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Supprimer de cette conversation\"],\"O90CN2\":[\"Supprimer le logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Supprimer le remplacement\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Renommer\"],\"6PsaMr\":[\"Renommer le chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Enregistrement\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Prompt de réponse\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Rapport\"],\"e/MQa5\":[\"Rapport déjà en cours de génération\"],\"Q3LOVJ\":[\"Signaler un problème\"],\"DUmD+q\":[\"Rapport créé - \",[\"0\"]],\"hh/mvZ\":[\"Génération du rapport annulée\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Génération du rapport en cours...\"],\"v7O77U\":[\"La génération du rapport a été annulée. Vous pouvez démarrer un nouveau rapport ci-dessous.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Signalez des problèmes avec des images ou la voix, évaluez les réponses du chat et demandez une offre adaptée. Définissez une base légale par défaut pour votre espace de travail.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Notifications de rapports\"],\"M9snPp\":[\"Rapport programmé\"],\"6g+4DA\":[\"Signalement envoyé. Merci\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Les modèles de rapport sont sur notre feuille de route.\"],\"lNo4U2\":[\"Rapport mis à jour - \",[\"0\"]],\"t9yxlZ\":[\"Rapports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Demander l'accès\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Demander le Réinitialisation du Mot de Passe\"],\"8H5nRH\":[\"Demander le Réinitialisation du Mot de Passe | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Accès au microphone en cours...\"],\"TMLAx2\":[\"Requis\"],\"0Hf+6m\":[\"Requiert \\\"Demander l'email ?\\\" pour être activé\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reprogrammer\"],\"6eIR/n\":[\"Replanifier pour\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Réinitialiser\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Réinitialiser le Mot de Passe\"],\"9uplIY\":[\"Réinitialiser le Mot de Passe | dembrane\"],\"L+rMC9\":[\"Réinitialiser aux paramètres par défaut\"],\"kX8Fjz\":[\"Retour sur la réponse\"],\"participant.button.stop.resume\":[\"Reprendre\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Rétranscrire\"],\"ehyRtB\":[\"Rétranscrire la conversation\"],\"1JHQpP\":[\"Rétranscrire la conversation\"],\"+gmVxi\":[\"La rétranscrire n'est pas disponible pour les conversations anonymisées\"],\"MXwASV\":[\"La rétranscrire a commencé. La nouvelle conversation sera disponible bientôt.\"],\"6gRgw8\":[\"Réessayer\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Réessayer le téléchargement\"],\"2fCpt5\":[\"Retour à l'accueil\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Examinez l'activité de votre espace de travail. Filtrez par collection ou action, et exportez la vue actuelle pour une investigation plus approfondie.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Examiner les fichiers avant le téléchargement\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Examiner le statut de traitement pour chaque conversation collectée dans ce projet.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Réviser\"],\"OG3mVO\":[\"Révision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"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\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Lignes par page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Relancez la transcription d’une conversation existante. La documentation néerlandaise est également mise à jour.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Enregistrer\"],\"participant.concrete.action.button.save\":[\"Enregistrer\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Enregistrer comme modèle\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Enregistrer les modifications\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Erreur lors de l'enregistrement !\"],\"5dVjYt\":[\"Enregistrer le modèle\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Enregistrement...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scannez le code QR ou copiez le secret dans votre application.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Scannez pour démarrer une nouvelle session du portail\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Planifier\"],\"wCGy0o\":[\"Programmer le rapport\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Rapports programmés et modèles personnalisés\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Défiler vers le bas\"],\"A1taO8\":[\"Rechercher\"],\"select.all.modal.loading.search\":[\"Rechercher\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Recherchez et sélectionnez les conversations pour ce chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Rechercher des conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Rechercher des projets\"],\"I0hU01\":[\"Rechercher des projets\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Rechercher des projets...\"],\"5WYZKZ\":[\"Résultats de recherche\"],\"lnWve4\":[\"Rechercher des tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Rechercher des templates...\"],\"select.all.modal.search.text\":[\"Texte de recherche :\"],\"nhvuQF\":[\"Rechercher des webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Recherché parmi les sources les plus pertinentes\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Recherche en cours…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copié\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"À bientôt\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Sélectionner un microphone\"],\"s5OrCL\":[\"Sélectionner un webhook à cloner\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Tout sélectionner\"],\"+fRipn\":[\"Tout sélectionner (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Sélectionnez toutes les conversations ou celles filtrées pour le chat, et filtrez en cliquant sur une étiquette. Les imports d’enregistrements sont plus fiables, avec des messages plus clairs en période de forte demande.\"],\"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\"],\"qtJxoV\":[\"Sélectionner plusieurs conversations\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Sélectionner un projet\"],\"ekUnNJ\":[\"Sélectionner les étiquettes\"],\"CG1cTZ\":[\"Sélectionnez les instructions qui seront affichées aux participants lorsqu'ils commencent une conversation\"],\"qxzrcD\":[\"Sélectionnez le type de retour ou de participation que vous souhaitez encourager.\"],\"QdpRMY\":[\"Sélectionner le tutoriel\"],\"Dh99yE\":[\"Selectionnez jusqu'a 2 axes de focus pour votre rapport\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Sélectionnez les sujets que les participants peuvent utiliser pour \\\"Vérifier\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Sélectionner votre microphone:\"],\"gU5H9I\":[\"Fichiers sélectionnés (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Microphone sélectionné\"],\"tP/pEQ\":[\"Sélection trop grande\"],\"select.all.modal.context.limit.reached\":[\"Sélection trop grande. Certaines conversations n'ont pas été ajoutées.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Envoyer\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Envoyer l'invitation\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Envoyer le signalement\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Envoyer des notifications Slack/Teams lorsque de nouvelles conversations sont terminées\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Nom de la Séance\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"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\":[\"Configurer l'espace de travail\"],\"J4TuIW\":[\"Configurer votre première organisation\"],\"aBwEIZ\":[\"Configurer votre organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Paramètres\"],\"participant.settings.modal.title\":[\"Paramètres\"],\"BVRW7i\":[\"Paramètres | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Configuration\"],\"WFl+oC\":[\"Adaptez la vérification des résultats\"],\"Z8lGw6\":[\"Partager\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Partager le portail\"],\"OuFYHU\":[\"Partager le rapport\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Partager avec \",[\"0\"],\" personnes\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Partager avec tout l'espace de travail\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Partager vos informations ici\"],\"nnWGzO\":[\"Partagez vos idées avec notre équipe\"],\"4o0klJ\":[\"Partagez votre voix en scannant le code QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Partager un projet privé avec une personne non membre propose désormais une invitation au lieu d’une erreur. L’accès est accordé quand elle rejoint l’espace de travail.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Plus court en premier\"],\"8vETh9\":[\"Afficher\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Afficher le lecteur audio\"],\"pzaNzD\":[\"Afficher les données\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Afficher les adresses IP\"],\"6lGV3K\":[\"Afficher moins\"],\"fMPkxb\":[\"Afficher plus\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Afficher le code QR\"],\"3bGwZS\":[\"Afficher les références\"],\"OV2iSn\":[\"Afficher les données de révision\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Afficher l'invitation\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Affichage de \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" sur \",[\"totalItems\"],\" entrées\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" sur \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Affichage de votre dernier rapport terminé.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Passer\"],\"participant.button.verify_prompt.skip\":[\"Passer\"],\"select.all.modal.context.limit.reached.description\":[\"Ignorées car la sélection était trop grande.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Communauté Slack\"],\"dE/7ox\":[\"Des enregistrements plus fluides, des questions plus rapides\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Certains fichiers ont déjà été sélectionnés et ne seront pas ajoutés deux fois.\"],\"select.all.modal.skip.disclaimer\":[\"Certaines peuvent être ignorées (pas de transcription ou sélection trop grande).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Quelque chose bloque votre connexion. Votre audio ne sera pas sauvegardé tant que ce problème ne sera pas résolu.\"],\"nwtY4N\":[\"Une erreur s'est produite\"],\"participant.conversation.error.text.mode\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"participant.conversation.error\":[\"Il semble que la conversation a été supprimée pendant que vous enregistriez. Nous avons arrêté l'enregistrement pour éviter tout problème. Vous pouvez en commencer une nouvelle à tout moment.\"],\"mwpVVD\":[\"Un problème est survenu lors de la génération de votre dernier rapport.\"],\"2WNFmv\":[\"Un problème est survenu lors de la génération de votre rapport.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Une erreur s'est produite lors de l'exportation des journaux d'audit.\"],\"q9A2tm\":[\"Une erreur s'est produite lors de la génération du secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Une erreur s'est produite avec la conversation. Veuillez réessayer ou contacter le support si le problème persiste\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Quelque chose s'est mal passé. Veuillez réessayer en appuyant sur le bouton <0>Explorer, ou contactez le support si le problème persiste.\"],\"fWsBTs\":[\"Une erreur s'est produite. Veuillez réessayer.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Désolé, nous ne pouvons pas traiter cette demande en raison de la politique de contenu du fournisseur de LLM.\"],\"f6Hub0\":[\"Trier\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Espagnol\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Contexte spécifique\"],\"mORM2E\":[\"Détails précis\"],\"Etejcu\":[\"Détails précis - Conversations sélectionnées\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Équipe dembrane\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Commencer de zéro\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Commencer une nouvelle conversation\"],\"participant.button.start.new.conversation\":[\"Commencer une nouvelle conversation\"],\"i88wdJ\":[\"Recommencer\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Démarrez sans créer de conversations en double, consultez l’heure réelle de début et utilisez vos modèles de questions depuis Ask. Les nouveautés de la barre latérale affichent un nombre de messages non lus.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Statut\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Arrêter\"],\"participant.button.stop\":[\"Arrêter\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Planification Stratégique\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Soumettre\"],\"participant.button.submit.text.mode\":[\"Envoyer\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Succès\"],\"aG+cH9\":[\"Suggérer des suggestions dynamiques basées sur votre conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggéré:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Résumer\"],\"5Y4tAB\":[\"Résume cet entretien en un article partageable\"],\"dXoieq\":[\"Résumé\"],\"+bZY9/\":[\"Résumé (lorsqu'il est disponible)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Le résumé sera disponible une fois la conversation transcrite.\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Formats supportés: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Volontiers\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Passer à la saisie de texte\"],\"5dzzI6\":[\"La désactiver fait partie d'un forfait payant.\"],\"D+NlUC\":[\"Système\"],\"woaefe\":[\"Valeur par défaut du système\"],\"InGQz2\":[\"État du système\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Étiquettes\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template appliqué\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Nom du template\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Modèles\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Tester le webhook\"],\"xeiujy\":[\"Texte\"],\"mFQRXn\":[\"Des contributions écrites et des formulaires de suivi.\"],\"CPN34F\":[\"Merci pour votre participation !\"],\"u+Whi9\":[\"Contenu de la page Merci\"],\"1LLF3Z\":[\"Merci !\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Merci, nous vous recontactons sous un jour.\"],\"2yHHa6\":[\"Ce code n'a pas fonctionné. Réessayez avec un nouveau code de votre application d'authentification.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Cela ne ressemble pas à une adresse e-mail.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"C'est tout, merci\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"Le code n'a pas fonctionné, veuillez réessayer.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"participant.conversation.error.loading\":[\"La conversation n'a pas pu être chargée. Veuillez réessayer ou contacter le support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"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).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"La première version majeure place le projet sous la Business Source License 1.1.\"],\"Jo19Pu\":[\"Les conversations suivantes ont été automatiquement ajoutées au contexte\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"La Library offre des vues plus claires des thèmes récurrents. Les modèles de chat restent accessibles, les conversations ont des liens directs et les imports sont plus faciles à suivre.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"Le rapport peut démarrer jusqu'à 5 minutes après l'heure choisie.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"La page de remerciement se termine par une carte invitant les participants à organiser leur propre événement avec dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"L'URL du webhook et les événements seront clonés. Vous devrez entrer à nouveau le secret si un était configuré.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Thème\"],\"tn4pEQ\":[\"Bienvenue\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"Il y avait une erreur lors du clonage de votre projet. Veuillez réessayer ou contacter le support.\"],\"JDFjCg\":[\"Il y avait une erreur lors de la création de votre rapport. Veuillez réessayer ou contacter le support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"Ces conversations ont été exclues en raison de transcriptions manquantes.\"],\"8xYB4s\":[\"Ces modèles de vue par défaut seront générés lorsque vous créerez votre première bibliothèque.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Réflexion en cours...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"Cela peut se produire lorsqu'un VPN ou un pare-feu bloque la connexion. Essayez de désactiver votre VPN, de passer à un autre réseau (par ex. partage de connexion mobile) ou contactez votre service informatique pour obtenir de l'aide.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"Cette conversation a les copies suivantes :\"],\"conversation.linking_conversations.description\":[\"Cette conversation est une copie de\"],\"SzU1mG\":[\"Cette e-mail est déjà dans la liste.\"],\"participant.modal.refine.info.available.in\":[\"Cette fonctionnalité sera disponible dans \",[\"remainingTime\"],\" secondes.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"Ces informations sont anonymisées\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"Cette est une vue en direct du portail du participant. Vous devrez actualiser la page pour voir les dernières modifications.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"C'est un exemple des données JSON envoyées à votre URL de webhook lorsqu'une conversation est résumée.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Le traitement basé sur le consentement est défini sans lien vers la politique de confidentialité. Ajoutez-en un pour que ce réglage reste valide : les participants doivent pouvoir lire la politique de confidentialité.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"Bibliothèque\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"Cette langue sera utilisée pour le Portail du participant.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Ce portail n’accepte pas de nouvelles sessions pour le moment.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Ce projet suivra alors le réglage hérité : \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"Cette prompt guide comment l'IA répond aux participants. Personnalisez-la pour former le type de feedback ou d'engagement que vous souhaitez encourager.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"Ce rapport n'est pas encore disponible. \"],\"GQTpnY\":[\"Ce rapport a été ouvert par \",[\"0\"],\" personnes\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"Ce titre est affiché aux participants lorsqu'ils commencent une conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"Cela effacera votre entrée actuelle. Êtes-vous sûr ?\"],\"NrRH+W\":[\"Cela créera une copie du projet actuel. Seuls les paramètres et les étiquettes sont copiés. Les rapports, les chats et les conversations ne sont pas inclus dans le clonage. Vous serez redirigé vers le nouveau projet après le clonage.\"],\"hsNXnX\":[\"Cela créera une nouvelle conversation avec la même audio mais une transcription fraîche. La conversation d'origine restera inchangée.\"],\"add.tag.filter.modal.info\":[\"Cela filtrera la liste de conversations pour afficher les conversations avec cette étiquette.\"],\"participant.concrete.regenerating.artefact.description\":[\"Cela ne prendra que quelques instants\"],\"participant.concrete.loading.artefact.description\":[\"Cela ne prendra qu'un instant\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"Cet espace de travail a utilisé ses heures d'enregistrement. Passez à une offre supérieure pour continuer à utiliser la voix.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Pouce vers le bas\"],\"Nuw8ty\":[\"Pouce vers le haut\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Heure\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Horodatage\"],\"XSqo4Y\":[\"Horodatages et durée\"],\"rm2Cxd\":[\"Conseil\"],\"fEocaE\":[\"Conseil : Utilisez le bouton de lecture (▶) pour envoyer un payload de test à votre webhook et vérifier qu'il fonctionne correctement.\"],\"Zb3ANR\":[\"Astuce : Vous pouvez aussi créer un modèle à partir de n'importe quel message de chat que vous envoyez, ou dupliquer un modèle existant.\"],\"MHrjPM\":[\"Titre\"],\"1xkgU6\":[\"Titre auto-généré\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"Pour nous aider à agir, essayez d'inclure où cela s'est produit et ce que vous essayiez de faire. Pour les bugs, dites-nous ce qui s'est mal passé. Pour les idées, dites-nous quel besoin cela résoudrait pour vous.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Trop grande\"],\"yIsdT7\":[\"Trop long\"],\"qgwLj6\":[\"Trop long ou confus\"],\"lcsUaI\":[\"Trop de signalements. Patientez quelques minutes puis réessayez\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Sujet créé avec succès\"],\"Sawj4V\":[\"Sujet supprimé avec succès\"],\"xcp3ny\":[\"Étiquette de sujet\"],\"vQoAht\":[\"Sujet mis à jour avec succès\"],\"th8cMZ\":[\"Titre basé sur le sujet décrivant ce qui a été discuté\"],\"sFMBP5\":[\"Sujets\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Formation\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Formation requise pour une utilisation à haut risque\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Transcrivez à nouveau une conversation\"],\"fp5rKh\":[\"Transcription en cours...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcription\"],\"5jqJzi\":[\"L’anonymisation des transcriptions et les réglages de retranscription sont plus cohérents. La durée reste correcte après une pause et une reprise.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcription copiée dans le presse-papiers\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transformez ce contenu en insights qui ont vraiment de l'importance. Veuillez :\\n\\nExtrayez les idées essentielles qui contredisent le pensée standard\\nÉcrivez comme quelqu'un qui comprend les nuances, pas un manuel\\nFocalisez-vous sur les implications non évidentes\\nRestez concentré et substantiel\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si le contenu ne contient aucun insight substantiel, veuillez me le signaler, nous avons besoin de matériel de source plus fort.\"],\"uK9JLu\":[\"Transformez cette discussion en intelligence actionnable. Veuillez :\\nCapturez les implications stratégiques, pas seulement les points de vue\\nStructurez-le comme un analyse d'un leader, pas des minutes\\nSurmontez les points de vue standard\\nFocalisez-vous sur les insights qui conduisent à des changements réels\\nOrganisez pour la clarté et la référence future\\nÉquilibrez les détails tactiques avec la vision stratégique\\n\\nNote : Si la discussion manque de points de décision substantiels ou d'insights, veuillez le signaler pour une exploration plus approfondie la prochaine fois.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Déclencher des workflows automatisés dans des outils comme Zapier, Make, ou n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Tu peux demander\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Essayez de vous rapprocher un peu plus de votre microphone pour une meilleure qualité audio.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Transforme les conversations en diapositives en direct. Lance une session en direct ou une analyse à la demande, présente au groupe et retrouve les sources des observations.\"],\"portal.anonymization.disable.confirm\":[\"Désactiver\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Désactiver l'anonymisation ?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Transformez les conversations de votre projet en diapositives en direct pour la salle.\\n\\n- Suivez les thèmes émergents pendant les échanges.\\n- Présentez les éclairages et consultez les conversations à leur origine.\\n- Lancez une session en direct ou une analyse à la demande.\\n\\nAussi dans cette version : modèles de chat, connexions aux agents et améliorations sur mobile.\"],\"portal.anonymization.disable.warning\":[\"La désactivation de l'anonymisation pendant les enregistrements en cours peut avoir des conséquences inattendues. Les conversations actives seront également affectées en cours d'enregistrement. Veuillez utiliser cette option avec prudence.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"NwChk2\":[\"Authentification à deux facteurs désactivée\"],\"qwpE/S\":[\"Authentification à deux facteurs activée\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Tapez un message ou appuyez sur / pour les templates...\"],\"EvmL3X\":[\"Tapez votre réponse ici\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainien (uniquement les fonctionnalités ECHO, Transcription et Résumés)\"],\"MksxNf\":[\"Impossible de charger les journaux d'audit.\"],\"participant.outcome.error.title\":[\"Impossible de charger le résultat\"],\"59QK2U\":[\"Impossible de charger le résultat généré. Veuillez réessayer.\"],\"nGxDbq\":[\"Impossible de traiter ce fragment\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Annuler\"],\"Ef7StM\":[\"Inconnu\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Raison inconnue\"],\"nWMRxa\":[\"Détacher\"],\"vSdeRU\":[\"Désépinglez d'abord un projet (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Désépinglez d'abord un projet (max 3)\"],\"dx+iaL\":[\"Désépingler le projet\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Modifications non enregistrées\"],\"SMaFdc\":[\"Se désabonner\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Sans titre\"],\"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.\"],\"0wHyhk\":[\"Jusqu'à \",[\"MAX_FILES\"],\" images\"],\"lLehih\":[\"Jusqu'à \",[\"MAX_MESSAGE_CHARS\"],\" caractères\"],\"ia8YsC\":[\"À venir\"],\"EkH9pt\":[\"Mettre à jour\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Mises à jour\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Télécharger un avatar\"],\"kV3A2a\":[\"Téléchargement terminé\"],\"4Fr6DA\":[\"Télécharger des conversations\"],\"pZq3aX\":[\"Le téléchargement a échoué. Veuillez réessayer.\"],\"HAKBY9\":[\"Télécharger les fichiers\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Téléchargement des fichiers audio...\"],\"participant.modal.uploading\":[\"Envoi de l'audio...\"],\"participant.modal.interruption.uploading\":[\"Envoi de l'audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"L'URL est requise\"],\"3VnYUR\":[\"L'URL doit commencer par http:// ou https://\"],\"7FaY4u\":[\"Utilisation\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Utilisation et facturation\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Utiliser la valeur héritée\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Utilisez l’italien pour le chat, les rapports, la transcription et les cartes d’accueil des participants. Cette version ne comprenait pas la traduction complète de l’interface.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Utilisez Shift + Entrée pour ajouter une nouvelle ligne\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"5pcSZ4\":[\"Used on your invoices. Prices exclude VAT.\"],\"vSPQ9U\":[\"Used the wrong address? <0>Register again.\"],\"lcDO4m\":[\"Paramètres utilisateur\"],\"7sNhEz\":[\"Nom d'utilisateur\"],\"1Nt3Kg\":[\"Utilisation du logo dembrane par défaut\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Utilisez des webhooks ? Nous aimerions en savoir plus sur votre cas d'utilisation\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Rappel de vérification\"],\"participant.banner.verification_required\":[\"Vérification requise\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Vérifié\"],\"select.all.modal.loading.verified\":[\"Vérifié\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Vérifié\"],\"Iv1iWN\":[\"artefacts vérifiés\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Vérifier\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Vérifier\"],\"participant.echo.verify\":[\"Vérifier\"],\"4LFZoj\":[\"Vérifier le code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Vérifiez les résultats et affinez les réponses\"],\"w6Mgbs\":[\"Sujets de vérification\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"Vue\"],\"SZw9tS\":[\"Voir les détails\"],\"95YFbG\":[\"Voir un exemple de payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Voir les notes de version\"],\"D4e7re\":[\"Voir vos réponses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"En attente de la fin des conversations avant de générer un rapport.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Pareil pour votre événement ?\"],\"q7LnaV\":[\"Envie d'organiser un événement avec dembrane ?\"],\"La34Yq\":[\"Envie d'utiliser dembrane lors de votre prochain événement ?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Regardez la vidéo pour découvrir les organisations, espaces de travail et projets.\"],\"participant.alert.microphone.access.issue\":[\"Nous ne pouvons pas vous entendre. Veuillez essayer de changer de microphone ou de vous rapprocher un peu plus de l'appareil.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"Nous n'avons pas pu désactiver l'authentification à deux facteurs. Réessayez avec un nouveau code.\"],\"sM2pBB\":[\"Nous n'avons pas pu activer l'authentification à deux facteurs. Vérifiez votre code et réessayez.\"],\"mW8QSA\":[\"Nous n'avons pas trouvé la page que vous cherchiez. Elle a peut-être été déplacée.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"Nous avons besoin d'un peu plus de contexte pour vous aider à utiliser ECHO efficacement. Veuillez continuer à enregistrer afin que nous puissions fournir de meilleures suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Nous vous recontactons sous un jour. Vous préférez choisir un créneau vous-même ?\"],\"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.\"],\"FXjsEJ\":[\"Nous serions ravis de vous lire. Que vous ayez une idée pour quelque chose de nouveau, repéré une traduction qui sonne faux, ou envie de nous dire comment ça se passe. Vous avez trouvé un bug ? Utilisez <0>Signaler un problème pour l'envoyer avec des captures d'écran.\"],\"XolQc4\":[\"Nous serions ravis de vous lire. Que vous ayez une idée pour quelque chose de nouveau, repéré une traduction qui sonne faux, ou envie de nous dire comment ça se passe. Vous avez trouvé un bug ? Utilisez Signaler un problème dans la barre latérale pour l'envoyer avec des captures d'écran.\"],\"participant.test.microphone.description\":[\"Nous testerons votre microphone pour vous assurer la meilleure expérience pour tout le monde dans la session.\"],\"+eLc52\":[\"Nous entendons un peu de silence. Essayez de parler plus fort pour que votre voix soit claire.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"URL du webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Les webhooks sont des messages automatisés envoyés d'une application à une autre lorsqu'un événement se produit. Pensez à eux comme à un \\\"système de notification\\\" pour vos autres outils.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Bienvenue\"],\"9eF5oV\":[\"Bon retour\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Bienvenue sur dembrane!\"],\"u4aLOz\":[\"Bienvenue en mode Vue d’ensemble ! J’ai chargé les résumés de toutes tes conversations. Pose-moi des questions sur les tendances, thèmes et insights de tes données. Pour des citations exactes, démarre un nouveau chat en mode Contexte précis.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Bienvenue !\"],\"RL57XM\":[\"Qu'est-ce que les webhooks ? (2 min de lecture)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"Quelles données sont envoyées ?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"Que souhaitez-vous vérifier ?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Que s'est-il passé ? Collez une capture d'écran ici pour la joindre\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"Que doit ECHO analyser ou générer à partir des conversations ?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"Qu'est-ce qui n'a pas marché ?\"],\"qGrqH9\":[\"Quels ont été les moments clés de cette conversation ?\"],\"FXZcgH\":[\"Qu’est-ce que tu veux explorer ?\"],\"3ePd3I\":[\"Nouveautés\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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 ?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"Lorsqu'il est activé, tous les nouveaux transcriptions auront des informations personnelles (noms, emails, numéros de téléphone, adresses) remplacées par des placeholders. Les conversations anonymisées désactivent également la lecture de l'audio, le téléchargement de l'audio et la rétranscrire pour protéger la confidentialité des participants. Cela ne peut pas être annulé pour les conversations déjà traitées.\"],\"MEmr1I\":[\"Lorsque vous terminez la conversation, les participants qui n'ont pas encore vérifié seront invités à vérifier ou à sauter\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"Quand le rapport doit-il être généré ?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"Lorsque le résumé est prêt (inclut à la fois le transcript et le résumé)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"sera inclus dans votre rapport\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Travaillez avec le nouvel assistant conversationnel, suivez les sessions dans le moniteur en direct et utilisez le traitement de transcription mis à jour.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Espace de travail\"],\"IG4YLy\":[\"Espace de travail / projet\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Valeur par défaut de l'espace de travail\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Paramètres de l'espace de travail\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Espaces de travail\"],\"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 ?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Rédigez vos consignes de vérification, générez des résultats dans la langue du projet et rappelez aux participants de vérifier avant de terminer. Configurez chaque base légale.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Langue ou ton incorrect\"],\"MNTYHt\":[\"Mauvaises sources\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Oui\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"Vous\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"Vous êtes déjà désinscrit ou votre lien est invalide.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"Vous êtes le propriétaire des données\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"Vous pourrez modifier cela plus tard dans les paramètres de l'espace de travail après avoir ajouté vos informations de facturation.\"],\"uGP87g\":[\"Vous pourrez modifier cela plus tard dans les paramètres de l'espace de travail.\"],\"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.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"Vous pouvez réessayer ci-dessous.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"Vous avez une invitation en attente\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"Vous avez déjà ajouté <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" à ce chat.\"],\"7W35AW\":[\"Vous avez déjà ajouté toutes les conversations liées à ceci\"],\"participant.modal.change.mic.confirmation.text\":[\"Vous avez changé votre microphone. Veuillez cliquer sur \\\"Continuer\\\", pour continuer la session.\"],\"T/Q7jW\":[\"Vous avez été désinscrit avec succès.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"Vous n'avez encore vérifié aucun résultat. Souhaitez-vous vérifier avant de terminer ?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"Vous pouvez également choisir d'enregistrer une autre conversation.\"],\"yCtSKg\":[\"Vous devez vous connecter avec le même fournisseur que vous avez utilisé pour vous inscrire. Si vous rencontrez des problèmes, veuillez contacter le support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"Vous semblez être hors ligne, veuillez vérifier votre connexion internet\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"Vous recevrez bientôt \",[\"objectLabel\"],\" à vérifier.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"Vous êtes à jour.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"vous@exemple.fr\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Votre approbation nous aide à comprendre ce que vous pensez vraiment !\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Votre adresse e-mail\"],\"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.\"],\"vaTeZ3\":[\"Votre retour et cette réponse sont transmis à l'équipe dembrane.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Vos entrées seront automatiquement enregistrées.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"La génération de votre dernier rapport a été annulée. Affichage de votre rapport le plus récent.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Votre nom\"],\"VSneAo\":[\"Votre nom, votre e-mail et la page actuelle sont inclus pour que nous puissions vous recontacter.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page.\"],\"DrJCbp\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page. Vous pouvez également enregistrer une autre conversation ou partager le code QR pour que d'autres puissent contribuer.\"],\"7i36j4\":[\"Votre réponse a été enregistrée. Vous pouvez maintenant fermer cette page. Vous pouvez également partager le code QR pour que d'autres puissent contribuer, ou enregistrer une autre conversation.\"],\"wurHZF\":[\"Vos réponses\"],\"B8Q/i2\":[\"Votre vue a été créée. Veuillez patienter pendant que nous traitons et analysons les données.\"],\"library.views.title\":[\"Vos vues\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/it-IT.po b/echo/frontend/src/locales/it-IT.po index 3d21d92c..14290a5b 100644 --- a/echo/frontend/src/locales/it-IT.po +++ b/echo/frontend/src/locales/it-IT.po @@ -53,6 +53,16 @@ msgstr "Preparing your dashboard" msgid "Welcome back" msgstr "Welcome back" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:542 +#~ msgid "participant.button.back.microphone" +#~ msgstr "Back" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:446 +#~ msgid "participant.mic.check.button.skip" +#~ msgstr "Skip" + #: src/components/popcorn/PopcornStatus.tsx:45 msgid " · {heldBack} held back" msgstr "" @@ -2088,13 +2098,8 @@ msgid "Back" msgstr "Back" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:542 -msgid "participant.button.back.microphone" -msgstr "Back" - -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:567 -#: src/components/layout/ParticipantHeader.tsx:87 +#: src/components/participant/ParticipantOnboardingCards.tsx:419 +#: src/components/layout/ParticipantHeader.tsx:90 msgid "participant.button.back" msgstr "Back" @@ -2381,7 +2386,7 @@ msgid "participant.concrete.action.button.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:97 +#: src/components/layout/ParticipantHeader.tsx:100 msgid "participant.concrete.instructions.button.cancel" msgstr "Cancel" @@ -3038,14 +3043,13 @@ msgid "Continue" msgstr "Continue" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:554 -#: src/components/participant/MicrophoneTest.tsx:414 -msgid "participant.button.continue" +#: src/components/participant/ParticipantInitiateForm.tsx:336 +msgid "participant.ready.to.begin.button.text" msgstr "Continue" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:336 -msgid "participant.ready.to.begin.button.text" +#: src/components/participant/MicrophoneTest.tsx:414 +msgid "participant.button.continue" msgstr "Continue" #: src/routes/organisation/OrganisationRoute.tsx:1629 @@ -7275,7 +7279,7 @@ msgid "Next" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:584 +#: src/components/participant/ParticipantOnboardingCards.tsx:436 msgid "participant.button.next" msgstr "Next" @@ -9276,7 +9280,7 @@ msgid "Reads every 2 minutes. Refresh reads now." msgstr "" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:418 +#: src/components/participant/ParticipantOnboardingCards.tsx:313 msgid "participant.ready.to.begin" msgstr "Ready to Begin?" @@ -10766,8 +10770,8 @@ msgstr "" #: src/features/sidebar/views/org/OrgSettingsView.tsx:31 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 -#: src/components/layout/ParticipantHeader.tsx:121 -#: src/components/layout/ParticipantHeader.tsx:122 +#: src/components/layout/ParticipantHeader.tsx:124 +#: src/components/layout/ParticipantHeader.tsx:125 msgid "Settings" msgstr "Settings" @@ -10810,8 +10814,8 @@ msgstr "" msgid "Share link" msgstr "" -#: src/components/layout/ParticipantHeader.tsx:111 -#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:114 +#: src/components/layout/ParticipantHeader.tsx:115 msgid "Share portal" msgstr "Condividi il portale" @@ -11026,11 +11030,6 @@ msgstr "Skip" msgid "participant.button.verify_prompt.skip" msgstr "Skip" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:446 -msgid "participant.mic.check.button.skip" -msgstr "Skip" - #. js-lingui-explicit-id #: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" diff --git a/echo/frontend/src/locales/it-IT.ts b/echo/frontend/src/locales/it-IT.ts index b4565bbf..50c71d9d 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\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message from dembrane\"],\"other\":[\"Messages from dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" non è ancora in questo workspace.\"],\"RZUJFH\":[[\"0\"],\" non è ancora in questo workspace. Chiedi a un admin del workspace di invitare questa persona.\"],\"iOmAhc\":[[\"0\"],\" non è ancora in questo workspace. Invia un invito e condividi questo progetto quando entra.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" persone non sono ancora in questo workspace.\"],\"E6f0Mh\":[[\"0\"],\" persone non sono ancora in questo workspace. Chiedi a un admin del workspace di invitarle.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" views\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" persone erano già state invitate. Il progetto viene condiviso quando entrano.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" ha già un invito in sospeso per un altro progetto. Condividi questo progetto quando entra.\"],\"zB7Coe\":[[\"email\"],\" è nella lista degli inviti in sospeso, ma l'email non è stata inviata. Reinviala da Membri.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" inviti inviati. Il progetto viene condiviso quando entrano.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Upload audio più affidabili\"],\"XPY0OE\":[\"Un nuovo assistente e un monitor in diretta\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"sy1BvY\":[\"Un portale per i partecipanti per registrare conversazioni.\"],\"zm7GU7\":[\"Per il trattamento basato sul consenso serve un link all'informativa sulla privacy. Deve iniziare con http:// o https:// e avere al massimo 255 caratteri.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Uno spazio per le conversazioni più semplice\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Accesso\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Predefinito dell'account\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Aggiungi conversazioni al contesto della chat, usa modelli di domande migliori e opzioni di trascrizione aggiornate. Sono corretti problemi nelle citazioni e traduzioni.\"],\"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.\"],\"5phU36\":[\"Aggiungi immagini\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"uqLJli\":[\"Aggiungi persone via email. Chi non è ancora nel workspace riceve un invito e accesso a questo progetto quando entra.\"],\"1G8+6T\":[\"Aggiungi persone via email. Chi non è ancora in questo workspace riceve un invito e il progetto viene condiviso quando entra.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"QKlADn\":[[\"0\"],\" persone aggiunte\"],\"z9TWoF\":[[\"granted\"],\" persone aggiunte\"],\"q+wngh\":[\"Aggiunto e condiviso\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Tutte le versioni su GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Tutti gli anni\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Già invitato. Il progetto viene condiviso quando entra.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"C'è stato un errore imprevisto. Di solito basta ricaricare la pagina o tornare alla home.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"Dzr23X\":[\"Announcements\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Altro?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Chiedi a un admin del workspace di invitare questa persona.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"L’elaborazione e gli upload audio sono più robusti. La lista delle conversazioni mostra totali più chiari.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio Tip\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"WI8FHU\":[\"Seleziona automaticamente le conversazioni utili per la chat e segui i riferimenti alle fonti. Iscriviti agli avvisi dei report e usa upload audio e testo migliori.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"9aZHfH\":[\"Back to settings\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"g7YpV4\":[\"Prima di questa cronologia delle versioni\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Commenti migliori, contatti più semplici\"],\"5DnJa6\":[\"Registrazioni migliori, più modi di rispondere\"],\"9GKCNF\":[\"Upload, trascrizioni e ricerca migliori\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Prenota una chiamata con noi\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Correzioni di bug\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Annulla la sostituzione\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat con singole conversazioni.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Le chat ricevono titoli automatici e il contesto include date e durate. Vai all’ultimo messaggio e usa un percorso di upload audio più chiaro.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Le chat impostate in ceco ora rispondono in ceco invece che in inglese.\"],\"gLvHXQ\":[\"Controlla e scegli il microfono prima di registrare, guarda gli indicatori audio e usa una trascrizione multilingue migliore. Scegli riassunto, nuove idee o risposte personalizzate.\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"WQUm5N\":[\"Controlla il testo e le immagini, poi riprova\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Scegli spazi visibili, su invito o privati. I membri si caricano più in fretta, dopo gli upload torni alle conversazioni e i riassunti e le unioni automatiche sono più affidabili.\"],\"okLwd9\":[\"Choose from your other projects\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Fonti più chiare nella chat\"],\"xOlaOX\":[\"Accessi più chiari per gli amministratori\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"EhtOYz\":[\"Il trattamento basato sul consenso è attivo senza link all'informativa sulla privacy. Aggiungine uno dove è impostata la base giuridica: i partecipanti devono poter leggere l'informativa.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversazione\"],\"EiHu8M\":[\"Conversation added to chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"I riferimenti alle conversazioni sono ora riuniti sotto un solo titolo Fonti. Il modulo per i commenti può inserire il tuo indirizzo e-mail.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Le pagine e il caricamento dei dati sono più semplici. La selezione automatica lascia più spazio alle risposte e gli annunci producono meno notifiche ripetute.\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"I riassunti non si bloccano più nei casi di elaborazione interessati. Le conversazioni ferme per i limiti del piano gratuito ripartono dopo un cambio di piano.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Conversation tags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Non abbiamo salvato il feedback\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Non siamo riusciti a inviare la segnalazione. Riprova\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Invito non revocato\"],\"LPY4VY\":[\"Invito non inviato\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Create Library\"],\"bUyyzw\":[\"Crea più report per progetto e usa le tue istruzioni per guidare la scrittura. I report programmati (beta) includono tutte le conversazioni registrate prima dell’orario scelto. Crea, salva e fissa i tuoi modelli di chat (beta). Questa versione aggiunge anche i progetti fissati, le impostazioni del profilo e la chat in ucraino.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Conversazioni in ceco, risposte in ceco\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Data\"],\"ItMGda\":[\"Intervallo di date\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"I progetti eliminati e le conversazioni in pausa per i limiti del piano non causano più tentativi ripetuti di creare riassunti.\"],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane al tuo evento?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"invito agli eventi dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot era il nostro progetto precedente. Grazie agli organizzatori, ai partecipanti e a chi ha contribuito a costruirlo.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Descrivi il problema\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Stabilisce la base giuridica GDPR per i dati personali di questo progetto.\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Fatto, contattatemi\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"N8MP2s\":[\"Scarica l’audio e organizza le conversazioni\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Scarica l’audio, aggiungi tag dalla dashboard e usa riassunti che si adattano alla conversazione. Sono corretti problemi nella modifica e nell’anteprima del portale.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Modifica i report direttamente\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Modifica i report, controlla più facilmente i microfoni nel portale e leggi indicatori di caricamento e messaggi di errore migliori.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"B7flm8\":[\"Esplora i temi ricorrenti nella Library\"],\"EebTQD\":[\"Esplora storie e punti di vista con il modello di chat Narratives, in inglese e olandese.\"],\"HNnM2X\":[\"Esplora l’archivio di dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Riprogrammazione non riuscita. Scegli un orario più avanti e riprova.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"2roTVj\":[\"Commento inviato\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filtra le versioni per anno\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"SdZBYB\":[\"Trova le conversazioni adatte alla tua domanda\"],\"oRQsgh\":[\"Trova spazi e continua le conversazioni\"],\"p2j2po\":[\"Ritrova il tuo posto nella chat\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Ricevi una risposta durante una conversazione\"],\"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.\"],\"Pl6LQ+\":[\"Mettiti in contatto\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Buona risposta\"],\"76gPWk\":[\"Ho capito\"],\"hjZBYK\":[\"Hai due minuti? Cinque domande facoltative ci aiutano a prepararci.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guidato\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"nascondere l'invito agli eventi dembrane\"],\"V3NvRL\":[\"Nascondere l'invito agli eventi dembrane fa parte di un piano a pagamento.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"In evidenza\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Organizzatore\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Commento dell'organizzatore\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"I understand\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Se hai notato dati visibili a persone sbagliate, qualcuno con un accesso che non dovrebbe avere, o una possibile vulnerabilità di sicurezza, usa il nostro <0>modulo di segnalazione di sicurezza. Arriva a un altro team con un percorso più rapido. Per le urgenze, scrivi a <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Le immagini devono pesare meno di \",[\"MAX_FILE_MB\"],\" MB\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Miglioramenti\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Sbagliato o inventato\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Ecco Popcorn\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invito inviato a \",[\"email\"],\". Il progetto viene condiviso quando entra.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invito inviato. Il progetto viene condiviso quando entra.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invita nel workspace e condividi\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"1BIvTp\":[\"Italiano per le funzioni principali\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Partecipa a questa sessione del portale\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Mantieni attivi i dispositivi durante la registrazione\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Continua a lavorare durante gli upload audio, cerca i tag e controlla la trascrizione. La riproduzione audio migliorata e una selezione più utile semplificano l’analisi.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Latest\"],\"lchnsl\":[\"Ultima versione\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"J8VWes\":[\"Lascia la tua email così possiamo contattarti.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Base giuridica\"],\"vRXsmZ\":[\"Legal Basis\"],\"CopiEV\":[\"Base giuridica salvata\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Link all'informativa sulla privacy mostrata ai partecipanti\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Loading\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Con le connessioni MCP il tuo agente trova progetti, cerca conversazioni, legge trascrizioni e consulta la documentazione. L’organizzazione controlla l’accesso e serve il tuo consenso esplicito.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"azjxk1\":[\"Non risponde alla domanda\"],\"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\"],\"f8jrkd\":[\"more\"],\"2FYpfJ\":[\"Altro\"],\"JcD7qf\":[\"More actions\"],\"rAPyBz\":[\"Anonimizzazione e registrazione più affidabili\"],\"MmhZK+\":[\"Riassunti delle conversazioni più affidabili\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Un contesto più utile per la chat\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Deve essere almeno 10 minuti nel futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"Nuove conversazioni aggiunte da questo report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"/yIxDf\":[\"Nuove funzioni\"],\"QnAEjj\":[\"Nuove funzioni, miglioramenti e correzioni in dembrane.\"],\"CSz4y/\":[\"Nuovo aspetto, nuove funzioni\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Ancora nessuna conversazione. Puoi programmare un report ora. Le aggiungiamo quando arrivano.\"],\"oaDwXD\":[\"Nessun valore predefinito (vale la gestione del cliente)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Ancora nessun feedback.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Ancora nessuno nell'organizzazione.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Non ci sono ancora note di rilascio.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"z7dMhl\":[\"Puoi allegare solo immagini\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Solo gli amministratori del workspace possono cambiare la base giuridica.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Apri registrazione\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"xam4uE\":[\"Domanda facoltativa \",[\"0\"],\" di \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Gli amministratori dell’organizzazione possono entrare negli spazi privati dalla pagina dei membri. Le opzioni spiegano quando devi prima entrare in uno spazio.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organizzazioni, spazi di lavoro e progetti\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organizza il lavoro in spazi, invita collaboratori esterni e osservatori e gestisci gli accessi dalla nuova barra laterale. Sposta conversazioni tra progetti e progetti tra spazi.\"],\"+g4lbW\":[\"Organizza il tuo lavoro in organizzazioni, spazi di lavoro e progetti, con un controllo più chiaro su chi ha accesso.\"],\"ucgZ0o\":[\"Organizzazione\"],\"/IX/7x\":[\"Altro\"],\"x0FjQV\":[\"La nostra prima versione principale\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Sostituita per questo progetto\"],\"AR/qbs\":[\"Sostituisci per questo progetto\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"I partecipanti possono chiedere una risposta mentre registrano e leggerla mentre arriva. Chi ospita attiva le risposte e modifica le istruzioni nelle impostazioni del portale.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"I partecipanti possono verificare i risultati e migliorare le risposte. Nuove modalità e suggerimenti aiutano l’analisi. L’autenticazione a due fattori aggiunge un’opzione di accesso.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Scegli una data\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Scegli un orario adesso\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording)\"],\"Lu1j4b\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"jjdudv\":[\"Risposta scadente\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Prepara le sessioni con una guida modificabile, raccogli e-mail e anonimizza le trascrizioni. Questo aggiornamento introduce anche loghi personalizzati e titoli automatici delle conversazioni.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"DHhJ7s\":[\"Precedente\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL dell'informativa sulla privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Ricerca di progetti e conversazioni, con codici QR personalizzati.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Domanda\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Valutazione\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"Z5Tlsx\":[\"Contattatemi\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"VJScHU\":[\"Motivo\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"I dispositivi restano attivi in modo più affidabile. Sono corretti problemi nelle introduzioni, nel miglioramento delle risposte e nella selezione delle conversazioni in Specific Details.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"/l7qFE\":[\"Recording started\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"References\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"/PACVa\":[\"Note di rilascio\"],\"Gm7/K+\":[\"Note di rilascio | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Video della versione: \",[\"0\"]],\"tF5Smn\":[\"Ricarica la pagina\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Rimuovi \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Rimuovi la sostituzione\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Registrazione\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Segnala un problema\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Segnala problemi con immagini o voce, valuta le risposte della chat e richiedi un piano adatto. Imposta una base giuridica predefinita per il tuo spazio di lavoro.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"6g+4DA\":[\"Segnalazione inviata. Grazie\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Riprogramma per\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"kX8Fjz\":[\"Commento sulla risposta\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Torna alla home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Rows per page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Ripeti la trascrizione di una conversazione esistente. Anche la documentazione in olandese è aggiornata.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Saving...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Scansiona per iniziare una nuova sessione del portale\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Report programmati e modelli personalizzati\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Cerca e seleziona le conversazioni per questa chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Seleziona tutte le conversazioni o quelle filtrate per la chat e filtra premendo un tag. Gli upload delle registrazioni sono più affidabili, con avvisi più chiari quando la richiesta è alta.\"],\"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\"],\"qtJxoV\":[\"Seleziona più conversazioni\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"Dh99yE\":[\"Seleziona fino a 2 aree di focus per il tuo report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Invia invito\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Invia segnalazione\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Scegli come verificare i risultati\"],\"Z8lGw6\":[\"Condividi\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Condividi il portale\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Condividi con \",[\"0\"],\" persone\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Condividi con tutto il workspace\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Condividi la tua voce scansionando il codice QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Quando condividi un progetto privato con chi non è membro, ora puoi inviare un invito invece di ricevere un errore. La persona ottiene l’accesso quando entra nello spazio di lavoro.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Mostra il codice QR\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Mostra l'invito\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" di \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"dE/7ox\":[\"Registrazioni più semplici, domande più veloci\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanish\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Avvia la registrazione senza creare doppioni, vedi l’ora reale di inizio e usa i modelli salvati da Ask. Gli aggiornamenti nella barra laterale mostrano quanti messaggi non hai letto.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Volentieri\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"5dzzI6\":[\"Disattivarlo fa parte di un piano a pagamento.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"Predefinito di sistema\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Contributi scritti e moduli dopo la conversazione.\"],\"CPN34F\":[\"Thank you for participating!\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Grazie, ti ricontatteremo entro un giorno.\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Non sembra un indirizzo email.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"È tutto, grazie\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"La prima versione principale pubblica il progetto con la Business Source License 1.1.\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"La Library mostra meglio i temi ricorrenti. I modelli di chat restano a portata di mano, le conversazioni hanno link diretti e gli upload sono più facili da seguire.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"La pagina di ringraziamento termina con una scheda che invita i partecipanti a organizzare il proprio evento con dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"È impostato il trattamento basato sul consenso senza link all'informativa sulla privacy. Aggiungine uno per mantenere valida questa impostazione: i partecipanti devono poter leggere l'informativa.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Questo portale non accetta nuove sessioni al momento.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Questo progetto seguirà l'impostazione ereditata: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Pollice giù\"],\"Nuw8ty\":[\"Pollice su\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Ora\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"qgwLj6\":[\"Troppo lungo o poco chiaro\"],\"lcsUaI\":[\"Troppe segnalazioni. Aspetta qualche minuto e riprova\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Trascrivi di nuovo una conversazione\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"5jqJzi\":[\"L’anonimizzazione e le impostazioni per ripetere la trascrizione funzionano in modo più coerente. La durata resta corretta dopo una pausa e una ripresa.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Trasforma le conversazioni in slide dal vivo. Avvia una sessione dal vivo o un’analisi quando serve, presenta al gruppo e consulta le fonti delle osservazioni.\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Trasforma le conversazioni del tuo progetto in slide in diretta per la sala.\\n\\n- Segui i temi che emergono mentre le persone parlano.\\n- Presenta le idee e controlla le conversazioni da cui nascono.\\n- Avvia una sessione in diretta o un’analisi quando ti serve.\\n\\nIn più: nuovi modelli di chat, connessioni agli agenti e miglioramenti per i telefoni.\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Massimo \",[\"MAX_FILES\"],\" immagini\"],\"lLehih\":[\"Fino a \",[\"MAX_MESSAGE_CHARS\"],\" caratteri\"],\"ia8YsC\":[\"In arrivo\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Usa il valore ereditato\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Usa l’italiano per chat, report, trascrizione e schede introduttive dei partecipanti. Questa versione non includeva la traduzione completa dell’interfaccia.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Verifica i risultati e migliora le risposte\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Vedi le note di rilascio\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Lo vuoi al tuo evento?\"],\"q7LnaV\":[\"Vuoi organizzare un evento con dembrane?\"],\"La34Yq\":[\"Vuoi usare dembrane al tuo prossimo evento?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Guarda il video per scoprire organizzazioni, spazi di lavoro e progetti.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"mW8QSA\":[\"Non abbiamo trovato la pagina che cercavi. Forse è stata spostata.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Ti ricontatteremo entro un giorno. Preferisci scegliere tu un orario?\"],\"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.\"],\"FXjsEJ\":[\"Ci fa piacere sentirti. Hai un'idea per qualcosa di nuovo, hai visto una traduzione che non va, o vuoi solo dirci come sta andando. Hai trovato un bug? Usa <0>Segnala un problema per inviarlo con gli screenshot.\"],\"XolQc4\":[\"Ci fa piacere sentirti. Hai un'idea per qualcosa di nuovo, hai visto una traduzione che non va, o vuoi solo dirci come sta andando. Hai trovato un bug? Usa Segnala un problema nella barra laterale per inviarlo con gli screenshot.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Benvenuto nella modalità Panoramica. Ho caricato i riassunti di tutte le tue conversazioni. Chiedimi schemi, temi o approfondimenti nei tuoi dati. Per citazioni esatte, apri una nuova chat in modalità Contesto Specifico.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Cosa è successo? Incolla qui uno screenshot per allegarlo\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"Cosa non ha funzionato?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Lavora con il nuovo assistente di conversazione, segui le sessioni nel monitor in diretta e usa il sistema di trascrizione aggiornato.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Spazio di lavoro / progetto\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Predefinito del workspace\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Impostazioni del workspace\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Scrivi istruzioni di verifica, genera risultati nella lingua del progetto e ricorda ai partecipanti di verificare prima di finire. Configura le impostazioni per ogni base giuridica.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Lingua o tono sbagliati\"],\"MNTYHt\":[\"Fonti sbagliate\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"You can change this later in workspace settings after you add billing details.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"tu@esempio.it\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"La tua email\"],\"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.\"],\"vaTeZ3\":[\"Il tuo commento e questa risposta arrivano al team dembrane.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"VSneAo\":[\"Includiamo il tuo nome, la tua email e la pagina attuale, così possiamo ricontattarti.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"DrJCbp\":[\"La tua risposta è stata registrata. Ora puoi chiudere questa scheda. Puoi anche registrare un'altra conversazione o condividere il codice QR così che altri possano contribuire.\"],\"7i36j4\":[\"La tua risposta è stata registrata. Ora puoi chiudere questa scheda. Puoi anche condividere il codice QR così che altri possano contribuire, o registrare un'altra conversazione.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message from dembrane\"],\"other\":[\"Messages from dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" non è ancora in questo workspace.\"],\"RZUJFH\":[[\"0\"],\" non è ancora in questo workspace. Chiedi a un admin del workspace di invitare questa persona.\"],\"iOmAhc\":[[\"0\"],\" non è ancora in questo workspace. Invia un invito e condividi questo progetto quando entra.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" persone non sono ancora in questo workspace.\"],\"E6f0Mh\":[[\"0\"],\" persone non sono ancora in questo workspace. Chiedi a un admin del workspace di invitarle.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" views\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" persone erano già state invitate. Il progetto viene condiviso quando entrano.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" ha già un invito in sospeso per un altro progetto. Condividi questo progetto quando entra.\"],\"zB7Coe\":[[\"email\"],\" è nella lista degli inviti in sospeso, ma l'email non è stata inviata. Reinviala da Membri.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" inviti inviati. Il progetto viene condiviso quando entrano.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Upload audio più affidabili\"],\"XPY0OE\":[\"Un nuovo assistente e un monitor in diretta\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"sy1BvY\":[\"Un portale per i partecipanti per registrare conversazioni.\"],\"zm7GU7\":[\"Per il trattamento basato sul consenso serve un link all'informativa sulla privacy. Deve iniziare con http:// o https:// e avere al massimo 255 caratteri.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Uno spazio per le conversazioni più semplice\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Accesso\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Predefinito dell'account\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Aggiungi conversazioni al contesto della chat, usa modelli di domande migliori e opzioni di trascrizione aggiornate. Sono corretti problemi nelle citazioni e traduzioni.\"],\"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.\"],\"5phU36\":[\"Aggiungi immagini\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"uqLJli\":[\"Aggiungi persone via email. Chi non è ancora nel workspace riceve un invito e accesso a questo progetto quando entra.\"],\"1G8+6T\":[\"Aggiungi persone via email. Chi non è ancora in questo workspace riceve un invito e il progetto viene condiviso quando entra.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"QKlADn\":[[\"0\"],\" persone aggiunte\"],\"z9TWoF\":[[\"granted\"],\" persone aggiunte\"],\"q+wngh\":[\"Aggiunto e condiviso\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Tutte le versioni su GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Tutti gli anni\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Già invitato. Il progetto viene condiviso quando entra.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"C'è stato un errore imprevisto. Di solito basta ricaricare la pagina o tornare alla home.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"Dzr23X\":[\"Announcements\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Altro?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Chiedi a un admin del workspace di invitare questa persona.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"L’elaborazione e gli upload audio sono più robusti. La lista delle conversazioni mostra totali più chiari.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio Tip\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"WI8FHU\":[\"Seleziona automaticamente le conversazioni utili per la chat e segui i riferimenti alle fonti. Iscriviti agli avvisi dei report e usa upload audio e testo migliori.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"9aZHfH\":[\"Back to settings\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"g7YpV4\":[\"Prima di questa cronologia delle versioni\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Commenti migliori, contatti più semplici\"],\"5DnJa6\":[\"Registrazioni migliori, più modi di rispondere\"],\"9GKCNF\":[\"Upload, trascrizioni e ricerca migliori\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Prenota una chiamata con noi\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Correzioni di bug\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Annulla la sostituzione\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Chat con singole conversazioni.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Le chat ricevono titoli automatici e il contesto include date e durate. Vai all’ultimo messaggio e usa un percorso di upload audio più chiaro.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Le chat impostate in ceco ora rispondono in ceco invece che in inglese.\"],\"gLvHXQ\":[\"Controlla e scegli il microfono prima di registrare, guarda gli indicatori audio e usa una trascrizione multilingue migliore. Scegli riassunto, nuove idee o risposte personalizzate.\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"WQUm5N\":[\"Controlla il testo e le immagini, poi riprova\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Scegli spazi visibili, su invito o privati. I membri si caricano più in fretta, dopo gli upload torni alle conversazioni e i riassunti e le unioni automatiche sono più affidabili.\"],\"okLwd9\":[\"Choose from your other projects\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Fonti più chiare nella chat\"],\"xOlaOX\":[\"Accessi più chiari per gli amministratori\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"EhtOYz\":[\"Il trattamento basato sul consenso è attivo senza link all'informativa sulla privacy. Aggiungine uno dove è impostata la base giuridica: i partecipanti devono poter leggere l'informativa.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Conversazione\"],\"EiHu8M\":[\"Conversation added to chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"I riferimenti alle conversazioni sono ora riuniti sotto un solo titolo Fonti. Il modulo per i commenti può inserire il tuo indirizzo e-mail.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Le pagine e il caricamento dei dati sono più semplici. La selezione automatica lascia più spazio alle risposte e gli annunci producono meno notifiche ripetute.\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"I riassunti non si bloccano più nei casi di elaborazione interessati. Le conversazioni ferme per i limiti del piano gratuito ripartono dopo un cambio di piano.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Conversation tags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Non abbiamo salvato il feedback\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Non siamo riusciti a inviare la segnalazione. Riprova\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Invito non revocato\"],\"LPY4VY\":[\"Invito non inviato\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Create Library\"],\"bUyyzw\":[\"Crea più report per progetto e usa le tue istruzioni per guidare la scrittura. I report programmati (beta) includono tutte le conversazioni registrate prima dell’orario scelto. Crea, salva e fissa i tuoi modelli di chat (beta). Questa versione aggiunge anche i progetti fissati, le impostazioni del profilo e la chat in ucraino.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Conversazioni in ceco, risposte in ceco\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Data\"],\"ItMGda\":[\"Intervallo di date\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"I progetti eliminati e le conversazioni in pausa per i limiti del piano non causano più tentativi ripetuti di creare riassunti.\"],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane al tuo evento?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"invito agli eventi dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot era il nostro progetto precedente. Grazie agli organizzatori, ai partecipanti e a chi ha contribuito a costruirlo.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Descrivi il problema\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Stabilisce la base giuridica GDPR per i dati personali di questo progetto.\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Fatto, contattatemi\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"N8MP2s\":[\"Scarica l’audio e organizza le conversazioni\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Scarica l’audio, aggiungi tag dalla dashboard e usa riassunti che si adattano alla conversazione. Sono corretti problemi nella modifica e nell’anteprima del portale.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Modifica i report direttamente\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Modifica i report, controlla più facilmente i microfoni nel portale e leggi indicatori di caricamento e messaggi di errore migliori.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"B7flm8\":[\"Esplora i temi ricorrenti nella Library\"],\"EebTQD\":[\"Esplora storie e punti di vista con il modello di chat Narratives, in inglese e olandese.\"],\"HNnM2X\":[\"Esplora l’archivio di dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Riprogrammazione non riuscita. Scegli un orario più avanti e riprova.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"2roTVj\":[\"Commento inviato\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Filtra le versioni per anno\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"SdZBYB\":[\"Trova le conversazioni adatte alla tua domanda\"],\"oRQsgh\":[\"Trova spazi e continua le conversazioni\"],\"p2j2po\":[\"Ritrova il tuo posto nella chat\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Ricevi una risposta durante una conversazione\"],\"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.\"],\"Pl6LQ+\":[\"Mettiti in contatto\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Buona risposta\"],\"76gPWk\":[\"Ho capito\"],\"hjZBYK\":[\"Hai due minuti? Cinque domande facoltative ci aiutano a prepararci.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"Guidato\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"nascondere l'invito agli eventi dembrane\"],\"V3NvRL\":[\"Nascondere l'invito agli eventi dembrane fa parte di un piano a pagamento.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"In evidenza\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Organizzatore\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Commento dell'organizzatore\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"I understand\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Se hai notato dati visibili a persone sbagliate, qualcuno con un accesso che non dovrebbe avere, o una possibile vulnerabilità di sicurezza, usa il nostro <0>modulo di segnalazione di sicurezza. Arriva a un altro team con un percorso più rapido. Per le urgenze, scrivi a <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Le immagini devono pesare meno di \",[\"MAX_FILE_MB\"],\" MB\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Miglioramenti\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Sbagliato o inventato\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Ecco Popcorn\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invito inviato a \",[\"email\"],\". Il progetto viene condiviso quando entra.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invito inviato. Il progetto viene condiviso quando entra.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invita nel workspace e condividi\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"1BIvTp\":[\"Italiano per le funzioni principali\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Partecipa a questa sessione del portale\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Mantieni attivi i dispositivi durante la registrazione\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Continua a lavorare durante gli upload audio, cerca i tag e controlla la trascrizione. La riproduzione audio migliorata e una selezione più utile semplificano l’analisi.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Latest\"],\"lchnsl\":[\"Ultima versione\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"J8VWes\":[\"Lascia la tua email così possiamo contattarti.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Base giuridica\"],\"vRXsmZ\":[\"Legal Basis\"],\"CopiEV\":[\"Base giuridica salvata\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Link all'informativa sulla privacy mostrata ai partecipanti\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Loading\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Con le connessioni MCP il tuo agente trova progetti, cerca conversazioni, legge trascrizioni e consulta la documentazione. L’organizzazione controlla l’accesso e serve il tuo consenso esplicito.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"azjxk1\":[\"Non risponde alla domanda\"],\"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\"],\"f8jrkd\":[\"more\"],\"2FYpfJ\":[\"Altro\"],\"JcD7qf\":[\"More actions\"],\"rAPyBz\":[\"Anonimizzazione e registrazione più affidabili\"],\"MmhZK+\":[\"Riassunti delle conversazioni più affidabili\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Un contesto più utile per la chat\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Deve essere almeno 10 minuti nel futuro\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"Nuove conversazioni aggiunte da questo report\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"/yIxDf\":[\"Nuove funzioni\"],\"QnAEjj\":[\"Nuove funzioni, miglioramenti e correzioni in dembrane.\"],\"CSz4y/\":[\"Nuovo aspetto, nuove funzioni\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Ancora nessuna conversazione. Puoi programmare un report ora. Le aggiungiamo quando arrivano.\"],\"oaDwXD\":[\"Nessun valore predefinito (vale la gestione del cliente)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Ancora nessun feedback.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"Ancora nessuno nell'organizzazione.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Non ci sono ancora note di rilascio.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"z7dMhl\":[\"Puoi allegare solo immagini\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Solo gli amministratori del workspace possono cambiare la base giuridica.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Apri registrazione\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"xam4uE\":[\"Domanda facoltativa \",[\"0\"],\" di \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Gli amministratori dell’organizzazione possono entrare negli spazi privati dalla pagina dei membri. Le opzioni spiegano quando devi prima entrare in uno spazio.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Organizzazioni, spazi di lavoro e progetti\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Organizza il lavoro in spazi, invita collaboratori esterni e osservatori e gestisci gli accessi dalla nuova barra laterale. Sposta conversazioni tra progetti e progetti tra spazi.\"],\"+g4lbW\":[\"Organizza il tuo lavoro in organizzazioni, spazi di lavoro e progetti, con un controllo più chiaro su chi ha accesso.\"],\"ucgZ0o\":[\"Organizzazione\"],\"/IX/7x\":[\"Altro\"],\"x0FjQV\":[\"La nostra prima versione principale\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Sostituita per questo progetto\"],\"AR/qbs\":[\"Sostituisci per questo progetto\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"I partecipanti possono chiedere una risposta mentre registrano e leggerla mentre arriva. Chi ospita attiva le risposte e modifica le istruzioni nelle impostazioni del portale.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"I partecipanti possono verificare i risultati e migliorare le risposte. Nuove modalità e suggerimenti aiutano l’analisi. L’autenticazione a due fattori aggiunge un’opzione di accesso.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Scegli una data\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Scegli un orario adesso\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording)\"],\"Lu1j4b\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"jjdudv\":[\"Risposta scadente\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Prepara le sessioni con una guida modificabile, raccogli e-mail e anonimizza le trascrizioni. Questo aggiornamento introduce anche loghi personalizzati e titoli automatici delle conversazioni.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"DHhJ7s\":[\"Precedente\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL dell'informativa sulla privacy\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Ricerca di progetti e conversazioni, con codici QR personalizzati.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Domanda\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Valutazione\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"Z5Tlsx\":[\"Contattatemi\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"VJScHU\":[\"Motivo\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"I dispositivi restano attivi in modo più affidabile. Sono corretti problemi nelle introduzioni, nel miglioramento delle risposte e nella selezione delle conversazioni in Specific Details.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"/l7qFE\":[\"Recording started\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"References\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"/PACVa\":[\"Note di rilascio\"],\"Gm7/K+\":[\"Note di rilascio | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Video della versione: \",[\"0\"]],\"tF5Smn\":[\"Ricarica la pagina\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Rimuovi \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Rimuovi la sostituzione\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Registrazione\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Segnala un problema\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Segnala problemi con immagini o voce, valuta le risposte della chat e richiedi un piano adatto. Imposta una base giuridica predefinita per il tuo spazio di lavoro.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"6g+4DA\":[\"Segnalazione inviata. Grazie\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Riprogramma per\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"kX8Fjz\":[\"Commento sulla risposta\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Torna alla home\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Rows per page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Ripeti la trascrizione di una conversazione esistente. Anche la documentazione in olandese è aggiornata.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Saving...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Scansiona per iniziare una nuova sessione del portale\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Report programmati e modelli personalizzati\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Cerca e seleziona le conversazioni per questa chat.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Seleziona tutte le conversazioni o quelle filtrate per la chat e filtra premendo un tag. Gli upload delle registrazioni sono più affidabili, con avvisi più chiari quando la richiesta è alta.\"],\"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\"],\"qtJxoV\":[\"Seleziona più conversazioni\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"Dh99yE\":[\"Seleziona fino a 2 aree di focus per il tuo report\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Invia invito\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Invia segnalazione\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Scegli come verificare i risultati\"],\"Z8lGw6\":[\"Condividi\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Condividi il portale\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Condividi con \",[\"0\"],\" persone\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Condividi con tutto il workspace\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Condividi la tua voce scansionando il codice QR\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Quando condividi un progetto privato con chi non è membro, ora puoi inviare un invito invece di ricevere un errore. La persona ottiene l’accesso quando entra nello spazio di lavoro.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Mostra il codice QR\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Mostra l'invito\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" di \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"dE/7ox\":[\"Registrazioni più semplici, domande più veloci\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanish\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Avvia la registrazione senza creare doppioni, vedi l’ora reale di inizio e usa i modelli salvati da Ask. Gli aggiornamenti nella barra laterale mostrano quanti messaggi non hai letto.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Volentieri\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"5dzzI6\":[\"Disattivarlo fa parte di un piano a pagamento.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"Predefinito di sistema\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Contributi scritti e moduli dopo la conversazione.\"],\"CPN34F\":[\"Thank you for participating!\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Grazie, ti ricontatteremo entro un giorno.\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Non sembra un indirizzo email.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"È tutto, grazie\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"La prima versione principale pubblica il progetto con la Business Source License 1.1.\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"La Library mostra meglio i temi ricorrenti. I modelli di chat restano a portata di mano, le conversazioni hanno link diretti e gli upload sono più facili da seguire.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"La pagina di ringraziamento termina con una scheda che invita i partecipanti a organizzare il proprio evento con dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"È impostato il trattamento basato sul consenso senza link all'informativa sulla privacy. Aggiungine uno per mantenere valida questa impostazione: i partecipanti devono poter leggere l'informativa.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Questo portale non accetta nuove sessioni al momento.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Questo progetto seguirà l'impostazione ereditata: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Pollice giù\"],\"Nuw8ty\":[\"Pollice su\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Ora\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"qgwLj6\":[\"Troppo lungo o poco chiaro\"],\"lcsUaI\":[\"Troppe segnalazioni. Aspetta qualche minuto e riprova\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Trascrivi di nuovo una conversazione\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"5jqJzi\":[\"L’anonimizzazione e le impostazioni per ripetere la trascrizione funzionano in modo più coerente. La durata resta corretta dopo una pausa e una ripresa.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Trasforma le conversazioni in slide dal vivo. Avvia una sessione dal vivo o un’analisi quando serve, presenta al gruppo e consulta le fonti delle osservazioni.\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Trasforma le conversazioni del tuo progetto in slide in diretta per la sala.\\n\\n- Segui i temi che emergono mentre le persone parlano.\\n- Presenta le idee e controlla le conversazioni da cui nascono.\\n- Avvia una sessione in diretta o un’analisi quando ti serve.\\n\\nIn più: nuovi modelli di chat, connessioni agli agenti e miglioramenti per i telefoni.\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"Massimo \",[\"MAX_FILES\"],\" immagini\"],\"lLehih\":[\"Fino a \",[\"MAX_MESSAGE_CHARS\"],\" caratteri\"],\"ia8YsC\":[\"In arrivo\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Usa il valore ereditato\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Usa l’italiano per chat, report, trascrizione e schede introduttive dei partecipanti. Questa versione non includeva la traduzione completa dell’interfaccia.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Verifica i risultati e migliora le risposte\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Vedi le note di rilascio\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Lo vuoi al tuo evento?\"],\"q7LnaV\":[\"Vuoi organizzare un evento con dembrane?\"],\"La34Yq\":[\"Vuoi usare dembrane al tuo prossimo evento?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Guarda il video per scoprire organizzazioni, spazi di lavoro e progetti.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"mW8QSA\":[\"Non abbiamo trovato la pagina che cercavi. Forse è stata spostata.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Ti ricontatteremo entro un giorno. Preferisci scegliere tu un orario?\"],\"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.\"],\"FXjsEJ\":[\"Ci fa piacere sentirti. Hai un'idea per qualcosa di nuovo, hai visto una traduzione che non va, o vuoi solo dirci come sta andando. Hai trovato un bug? Usa <0>Segnala un problema per inviarlo con gli screenshot.\"],\"XolQc4\":[\"Ci fa piacere sentirti. Hai un'idea per qualcosa di nuovo, hai visto una traduzione che non va, o vuoi solo dirci come sta andando. Hai trovato un bug? Usa Segnala un problema nella barra laterale per inviarlo con gli screenshot.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Benvenuto nella modalità Panoramica. Ho caricato i riassunti di tutte le tue conversazioni. Chiedimi schemi, temi o approfondimenti nei tuoi dati. Per citazioni esatte, apri una nuova chat in modalità Contesto Specifico.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Cosa è successo? Incolla qui uno screenshot per allegarlo\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"Cosa non ha funzionato?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Lavora con il nuovo assistente di conversazione, segui le sessioni nel monitor in diretta e usa il sistema di trascrizione aggiornato.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Spazio di lavoro / progetto\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Predefinito del workspace\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Impostazioni del workspace\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Scrivi istruzioni di verifica, genera risultati nella lingua del progetto e ricorda ai partecipanti di verificare prima di finire. Configura le impostazioni per ogni base giuridica.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Lingua o tono sbagliati\"],\"MNTYHt\":[\"Fonti sbagliate\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"You can change this later in workspace settings after you add billing details.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"tu@esempio.it\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"La tua email\"],\"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.\"],\"vaTeZ3\":[\"Il tuo commento e questa risposta arrivano al team dembrane.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"VSneAo\":[\"Includiamo il tuo nome, la tua email e la pagina attuale, così possiamo ricontattarti.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"DrJCbp\":[\"La tua risposta è stata registrata. Ora puoi chiudere questa scheda. Puoi anche registrare un'altra conversazione o condividere il codice QR così che altri possano contribuire.\"],\"7i36j4\":[\"La tua risposta è stata registrata. Ora puoi chiudere questa scheda. Puoi anche condividere il codice QR così che altri possano contribuire, o registrare un'altra conversazione.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/nl-NL.po b/echo/frontend/src/locales/nl-NL.po index f4d36b61..8c4d8f14 100644 --- a/echo/frontend/src/locales/nl-NL.po +++ b/echo/frontend/src/locales/nl-NL.po @@ -54,6 +54,16 @@ msgstr "Dashboard klaarmaken" msgid "Welcome back" msgstr "Welkom terug" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:542 +#~ msgid "participant.button.back.microphone" +#~ msgstr "Terug naar microfoon" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:446 +#~ msgid "participant.mic.check.button.skip" +#~ msgstr "Overslaan" + #: src/components/popcorn/PopcornStatus.tsx:45 msgid " · {heldBack} held back" msgstr "" @@ -2086,13 +2096,8 @@ msgid "Back" msgstr "Terug" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:542 -msgid "participant.button.back.microphone" -msgstr "Terug naar microfoon" - -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:567 -#: src/components/layout/ParticipantHeader.tsx:87 +#: src/components/participant/ParticipantOnboardingCards.tsx:419 +#: src/components/layout/ParticipantHeader.tsx:90 msgid "participant.button.back" msgstr "Terug" @@ -2379,7 +2384,7 @@ msgid "participant.concrete.action.button.cancel" msgstr "Annuleren" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:97 +#: src/components/layout/ParticipantHeader.tsx:100 msgid "participant.concrete.instructions.button.cancel" msgstr "Annuleren" @@ -3036,14 +3041,13 @@ msgid "Continue" msgstr "Doorgaan" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:554 -#: src/components/participant/MicrophoneTest.tsx:414 -msgid "participant.button.continue" +#: src/components/participant/ParticipantInitiateForm.tsx:336 +msgid "participant.ready.to.begin.button.text" msgstr "Doorgaan" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:336 -msgid "participant.ready.to.begin.button.text" +#: src/components/participant/MicrophoneTest.tsx:414 +msgid "participant.button.continue" msgstr "Doorgaan" #: src/routes/organisation/OrganisationRoute.tsx:1629 @@ -7273,7 +7277,7 @@ msgid "Next" msgstr "Volgende" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:584 +#: src/components/participant/ParticipantOnboardingCards.tsx:436 msgid "participant.button.next" msgstr "Volgende" @@ -9274,7 +9278,7 @@ msgid "Reads every 2 minutes. Refresh reads now." msgstr "" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:418 +#: src/components/participant/ParticipantOnboardingCards.tsx:313 msgid "participant.ready.to.begin" msgstr "Klaar om te beginnen" @@ -10764,8 +10768,8 @@ msgstr "Instellen" #: src/features/sidebar/views/org/OrgSettingsView.tsx:31 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 -#: src/components/layout/ParticipantHeader.tsx:121 -#: src/components/layout/ParticipantHeader.tsx:122 +#: src/components/layout/ParticipantHeader.tsx:124 +#: src/components/layout/ParticipantHeader.tsx:125 msgid "Settings" msgstr "Instellingen" @@ -10808,8 +10812,8 @@ msgstr "Deel uitnodigingslinks als alternatief voor uitnodigingen per e-mail." msgid "Share link" msgstr "" -#: src/components/layout/ParticipantHeader.tsx:111 -#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:114 +#: src/components/layout/ParticipantHeader.tsx:115 msgid "Share portal" msgstr "Portal delen" @@ -11024,11 +11028,6 @@ msgstr "Overslaan" msgid "participant.button.verify_prompt.skip" msgstr "Overslaan" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:446 -msgid "participant.mic.check.button.skip" -msgstr "Overslaan" - #. js-lingui-explicit-id #: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" diff --git a/echo/frontend/src/locales/nl-NL.ts b/echo/frontend/src/locales/nl-NL.ts index 9a5ddeba..de9df3ef 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\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"XGun3K\":[\"(directe toegang tot werkruimte)\"],\"ls1N1w\":[\"(ontbreekt)\"],\"B/gRsg\":[\"(geen)\"],\"NzluOx\":[\"(optioneel)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(onbekend)\"],\"dDUgzP\":[\"(Jij)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" werkruimte)\"],\"other\":[\"(\",\"#\",\" werkruimtes)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" overeenkomst\"],\"other\":[\"#\",\" overeenkomsten\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio gestopt\"],\"other\":[\"#\",\" audio gestopt\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek kon niet aan deze chat worden toegevoegd.\"],\"other\":[\"#\",\" gesprekken konden niet aan deze chat worden toegevoegd.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek wordt hiermee ook verborgen.\"],\"other\":[\"#\",\" gesprekken worden hiermee ook verborgen.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" lid\"],\"other\":[\"#\",\" leden\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" betaling\"],\"other\":[\"#\",\" betalingen\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projecten\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" geselecteerd\"],\"other\":[\"#\",\" geselecteerd\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" in transcriptie\"],\"other\":[\"#\",\" in transcriptie\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" met fouten\"],\"other\":[\"#\",\" met fouten\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" woord toegevoegd\"],\"other\":[\"#\",\" woorden toegevoegd\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" woord verwijderd\"],\"other\":[\"#\",\" woorden verwijderd\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focus op \",\"#\",\" gesprek:\"],\"other\":[\"Focus op \",\"#\",\" gesprekken:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Bericht van dembrane\"],\"other\":[\"Berichten van dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Verplaats \",\"#\",\" project naar een andere werkruimte.\"],\"other\":[\"Verplaats \",\"#\",\" projecten naar een andere werkruimte.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Laat zien wat er verandert (\",\"#\",\" veld)\"],\"other\":[\"Laat zien wat er verandert (\",\"#\",\" velden)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek in gebruik:\"],\"other\":[\"#\",\" gesprekken in gebruik:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (standaard)\"],\"r/Wlfo\":[[\"0\"],\" / plek / maand × \",[\"1\"],\", jaarlijks gefactureerd. Exclusief btw.\"],\"bBa8T+\":[[\"0\"],\" / plek × \",[\"1\"],\". Exclusief btw.\"],\"eysOsc\":[[\"0\"],\" / plek × \",[\"1\"],\". Wordt na deze periode niet meer in rekening gebracht.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" werkruimtes, \",[\"2\"],\" actief\"],\"xfMOtJ\":[[\"0\"],\" over alles\"],\"RKutZY\":[[\"0\"],\" actief\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"q87k+2\":[[\"0\"],\" toegevoegd vanuit je organisatie\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" verwijderd\"],\"6Re9LE\":[[\"0\"],\" van dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" zit nog niet in deze werkruimte.\"],\"RZUJFH\":[[\"0\"],\" zit nog niet in deze werkruimte. Vraag een werkruimtebeheerder om deze persoon uit te nodigen.\"],\"iOmAhc\":[[\"0\"],\" zit nog niet in deze werkruimte. Stuur een uitnodiging en deel dit project zodra ze meedoen.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" van \",[\"1\"],\" leden zijn getraind.\"],\"uQcaBv\":[[\"0\"],\" van \",[\"1\"],\" getraind\"],\"lOn63U\":[[\"0\"],\" mensen zitten nog niet in deze werkruimte.\"],\"E6f0Mh\":[[\"0\"],\" mensen zitten nog niet in deze werkruimte. Vraag een werkruimtebeheerder om ze uit te nodigen.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" totaal stijgt naar \",[\"1\"],\" zodra \",[\"pendingInvites\"],\" openstaande \",[\"2\"],\" geaccepteerd\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" weergaven\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" werkruimtes · \",[\"1\"],\" betaalde plekken · \",[\"2\"],\" gratis waarnemers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" werkruimtes, \",[\"1\"],\" plekken gedeeld\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", werkruimte-id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" persoon\"],\"other\":[\"#\",\" personen\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" persoon\"],\"other\":[\"#\",\" personen\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" mensen waren al uitgenodigd. Het project wordt gedeeld zodra ze meedoen.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" gratis\"],\"other\":[\"#\",\" gratis\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" gesprekken • Bewerkt \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" items in geschiedenis\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% korting toegepast\"],\"0jXKsc\":[[\"email\"],\" heeft al een openstaande uitnodiging voor een ander project. Deel dit project zodra ze meedoen.\"],\"zB7Coe\":[[\"email\"],\" staat op de lijst met openstaande uitnodigingen, maar de e-mail kon niet worden verstuurd. Stuur hem opnieuw vanuit Leden.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" gesprek heeft nog geen transcript, dus het is weggelaten.\"],\"other\":[\"#\",\" gesprekken hebben nog geen transcript, dus ze zijn weggelaten.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[\"Voor het gesprek leest \",[\"host\"],\" je antwoorden en neemt een conceptvoorstel mee.\"],\"XrsLMx\":[[\"invalidCount\"],\" adressen hebben aandacht nodig\"],\"GxhS2s\":[[\"inviterName\"],\" heeft je uitgenodigd voor \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Verwijder het \",\"#\",\" project in deze werkruimte voordat je de werkruimte zelf verwijdert.\"],\"other\":[\"Verwijder de \",\"#\",\" projecten in deze werkruimte voordat je de werkruimte zelf verwijdert.\"]}]],\"YtOXS1\":[\"Gesprek van \",[\"name\"]],\"lJ6xri\":[\"Transcriptfragment van \",[\"name\"]],\"P9UcSP\":[[\"names\"],\" en nog \",[\"extra\"]],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" personen meer\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" gesprek paste niet in deze chat. Start een nieuwe chat voor de rest.\"],\"other\":[\"#\",\" gesprekken pasten niet in deze chat. Start een nieuwe chat voor de rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" uitnodiging(en) in afwachting. Telt mee zodra geaccepteerd.\"],\"lEeV+7\":[[\"person\"],\" verliest toegang tot elke werkruimte in deze organisatie. Directe uitnodigingen voor werkruimtes blijven intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Gericht op \",\"#\",\" gesprek\"],\"other\":[\"Gericht op \",\"#\",\" gesprekken\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"#\",\" gesprek in gebruik\"],\"other\":[\"#\",\" gesprekken in gebruik\"]}]],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"/+py6Q\":[[\"seats\"],\" plekken\"],\"ArGmEy\":[[\"selectedCount\"],\" van \",[\"totalCount\"],\" velden geselecteerd. Accepteren geldt alleen voor de aangevinkte velden.\"],\"odzwX/\":[[\"sent\"],\" uitnodigingen verstuurd\"],\"l8fzDs\":[[\"sent\"],\" uitnodigingen verstuurd. Het project wordt gedeeld zodra ze meedoen.\"],\"dmKaRr\":[[\"sentCount\"],\" uitnodigingen verstuurd.\"],\"qzj8O/\":[[\"tag\"],\" (vooraf gekozen)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" actief\"],\"other\":[\"#\",\" actief\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisatie\"],\"other\":[\"#\",\" organisaties\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"lDyo+I\":[\"/zetel/mnd · jaarlijks gefactureerd\"],\"u5M/5B\":[\"/zetel/mnd · maandelijks gefactureerd\"],\"RuXuwk\":[\"+\",[\"0\"],\" meer\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"VAhv7y\":[\"€\",[\"0\"],\" per stuk, boven de inbegrepen \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra deelnemer\"],\"+Tssgi\":[\"€150 / zetel / maand\"],\"NPPhXn\":[\"€20 / zetel / maand\"],\"XlCmuS\":[\"€75 / zetel / maand\"],\"LeFXS1\":[\"0 Aspecten\"],\"r3PXp+\":[\"1 adres vraagt om aandacht\"],\"N0QWsI\":[\"1 u opname\"],\"2BWxOx\":[\"1 item in geschiedenis\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 weergave\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"9u4NIb\":[\"16 tot 40.\"],\"WehR9U\":[\"2 maanden geleden\"],\"gGr93M\":[\"2 tot 5.\"],\"L9boOH\":[\"2. Wanneer een gesprek of rapport plaatsvindt, sturen we de data automatisch naar je URL\"],\"VaA9mu\":[\"24 uur\"],\"RkmegJ\":[\"250 tot 1000.\"],\"7ZrpGs\":[\"3 dagen\"],\"lxBOZP\":[\"3 maanden geleden\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"c5EE1L\":[\"50 tot 250.\"],\"rV+scO\":[\"6 tot 15.\"],\"34Qhax\":[\"8 uur\"],\"aFDk6y\":[\"Een paar korte vragen en je bent binnen.\"],\"Ddr+Kq\":[\"Een app_user-id van dembrane-personeel. De server controleert het @dembrane.com-adres.\"],\"iqgpeQ\":[\"Bij een downgrade gelden de downgrade-effecten uit de matrix en krijgen de admins van de werkruimte bericht. Bij een betaald tier gaat het account over op facturatie via dembrane.\"],\"thilZ0\":[\"Een downgrade beperkt functies direct.\"],\"wsTrfq\":[\"Zodra de eerste versie klaar is, verschijnt die hier.\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"GrwZLh\":[\"Een link Help ons vertalen nodigt uit om mee te vertalen. Een volledige Italiaanse interfacevertaling is niet inbegrepen.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Betrouwbaarder audio uploaden\"],\"XPY0OE\":[\"Een nieuwe assistent en een live monitor\"],\"z9VxrW\":[\"Er wordt automatisch een nieuw rapport gegenereerd en gepubliceerd op het geplande tijdstip.\"],\"sy1BvY\":[\"Een deelnemersportaal om gesprekken op te nemen.\"],\"zm7GU7\":[\"Een link naar het privacybeleid is verplicht voor verwerking op basis van toestemming. De link moet beginnen met http:// of https:// en mag maximaal 255 tekens bevatten.\"],\"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.\"],\"lN8IO2\":[\"Een schatting of \\\"weet ik nog niet\\\". Met allebei kunnen we verder.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"Een zetel is één lid. Voeg leden toe of verwijder ze in het tabblad Mensen van elke werkruimte; je volgende afschrijving past zich automatisch aan.\"],\"hyYKSp\":[\"Een zetel is één lid. Zetels blijven beschikbaar tot het abonnement eindigt; wijzigingen worden niet in rekening gebracht.\"],\"SpaKQm\":[\"Een aparte context voor data-eigendom en facturering. Je kunt deze later overdragen aan die organisatie zonder data te verplaatsen.\"],\"GhjsDN\":[\"Een korte tekst die op het organisatieoverzicht wordt getoond.\"],\"F9QjSt\":[\"Een korte notitie over waar dit project over gaat. Je kunt dit later aanpassen.\"],\"dNbbpo\":[\"Een soepelere plek voor je gesprekken\"],\"j2mO8+\":[\"een werkruimte\"],\"kO7Ugp\":[\"Over de voorgestelde projectupdate: \",[\"hostNote\"]],\"2rz0sA\":[\"Over jou\"],\"g3UF2V\":[\"Accepteren\"],\"Q74FZp\":[\"Accepteren en deelnemen\"],\"JAvG0l\":[\"Voorwaarden geaccepteerd\"],\"LuXP9q\":[\"Toegang\"],\"rOvy9I\":[\"Toegangsinstellingen leggen uit wanneer je eerst lid moet worden van een werkruimte.\"],\"qLcf0w\":[\"Toegang stopt op\"],\"5RckdQ\":[\"Access expires after\"],\"18D/K9\":[\"Toegang verleend voor 24 uur.\"],\"HlgFV1\":[\"Toegangsgeschiedenis\"],\"6NLtuJ\":[\"Toegangsverzoek goedgekeurd\"],\"RpdQvB\":[\"Toegangsverzoek geweigerd\"],\"FmhC27\":[\"Toegangsverzoek verlopen\"],\"pyPxxw\":[\"Toegangsverzoek ingetrokken\"],\"ekMaJX\":[\"Toegangsverzoeken\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account en beveiliging\"],\"K3wUdw\":[\"Accountstandaard\"],\"g9NChz\":[\"Accountmanager\"],\"/8wINa\":[\"Accountmanager toegewezen.\"],\"Q+M1Ej\":[\"Account overgezet naar self-service facturatie.\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"Euv0O8\":[\"Account overgezet naar facturatie via dembrane.\"],\"A7C5YV\":[\"Account op beheerd gezet.\"],\"0qqrUz\":[\"Gefactureerde accounts\"],\"L5gswt\":[\"Actie door\"],\"7U5F+i\":[\"Actie nodig\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"F6pfE9\":[\"Actief\"],\"3976bh\":[\"Actief · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Toevoegen\"],\"4USg1N\":[[\"0\"],\" toevoegen aan \",[\"1\"],\" als <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Voeg een gesprek direct toe aan de chatcontext.\"],\"uyE3Y1\":[\"Voeg een lid toe en kies de toegang.\"],\"o1Svup\":[\"Voeg een naam en een prompt toe voordat je dit toepast.\"],\"kKuKkg\":[\"Voeg een naam, beschrijving en framing toe.\"],\"5xxrhm\":[\"Notitie toevoegen\"],\"Cf2umO\":[\"Voeg een projectdoel toe voordat je opslaat.\"],\"pVTvYj\":[\"een werkruimte toe te voegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"L1uMzn\":[\"Nog een toevoegen\"],\"LvDRbs\":[\"Toevoegen via e-mail\"],\"FXfXPD\":[\"Voeg gesprekstags toe vanuit het dashboard.\"],\"XXmtxs\":[\"Voeg gesprekken toe aan chatcontext, gebruik verbeterde vraagsjablonen en werk met vernieuwde transcriptieopties. Ondersteunende citaten en vertalingen zijn verbeterd.\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"8T7YRB\":[\"Voeg eerst gesprekken toe aan je project\"],\"LL1rvo\":[\"Aangepast onderwerp toevoegen\"],\"0qHnFM\":[\"Voeg doeltekst toe voordat je dit toepast.\"],\"5phU36\":[\"Afbeeldingen toevoegen\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"uqLJli\":[\"Voeg mensen toe via e-mail. Wie nog niet in de werkruimte zit, krijgt een uitnodiging en toegang tot dit project zodra ze meedoen.\"],\"1G8+6T\":[\"Voeg mensen toe via e-mail. Wie nog niet in deze werkruimte zit, krijgt een uitnodiging en het project wordt gedeeld zodra ze meedoen.\"],\"ymW+mN\":[\"Voeg mensen uit je organisatie toe\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"b6Sm+u\":[\"Toevoegen aan \",[\"0\"],\"?\"],\"jo1zkp\":[\"Toevoegen aan Chat\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"P4Egjx\":[\"Toevoegen aan werkruimtes\"],\"6Xm4X2\":[\"Onderwerp toevoegen\"],\"AHaRrL\":[\"Vertalingen toevoegen\"],\"yFRVHT\":[\"Verificatieprompt toevoegen\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"x2dB2O\":[\"je logo toe te voegen\"],\"hp8OtS\":[\"Toegevoegd\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"QKlADn\":[[\"0\"],\" mensen toegevoegd\"],\"z9TWoF\":[[\"granted\"],\" mensen toegevoegd\"],\"q+wngh\":[\"Toegevoegd en gedeeld\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"uVX6Vk\":[\"Toegevoegd aan werkruimte\"],\"yg5kon\":[\"Je bent toegevoegd aan \",[\"okCount\"],\" werkruimtes\"],\"ZncK2m\":[\"Je bent toegevoegd aan \",[\"okCount\"],\". \",[\"0\"],\" konden niet worden toegevoegd, probeer opnieuw.\"],\"lQmOCQ\":[\"Je bent toegevoegd aan 1 werkruimte\"],\"54QrMC\":[\"Als je er \",[\"pendingCount\"],\" toevoegt, gaat deze werkruimte over de zetellimiet. Extra zetels worden gefactureerd tegen het tarief van de werkruimte.\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"Du6bPw\":[\"Adres\"],\"NY/x1b\":[\"Adresregel 1\"],\"cormHa\":[\"Adresregel 2\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"U3pytU\":[\"Beheerder\"],\"84oArf\":[\"Beheerdersdashboard\"],\"HJ47wa\":[\"Hier beheerder via organisatierol\"],\"uYQEe4\":[\"Beheerder, dembrane\"],\"eC58+P\":[\"Beheerders\"],\"CLlKPV\":[\"Beheerders hebben toegang tot elke werkruimte in deze organisatie. Leden en externen zien alleen de werkruimtes waartoe ze toegang hebben gekregen.\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent-run mislukt\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Tool-gestuurd uitvoering\"],\"I1JKlv\":[\"Agentische chat\"],\"N40H+G\":[\"Alles\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"zG6Ooi\":[\"Alle projecten\"],\"ynXPFB\":[\"Alles gelezen\"],\"52imBJ\":[\"Alle releases op GitHub\"],\"W/4/mV\":[\"Alle plekken in dit niveau zijn bezet. Verwijder een lid of externe, of upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"XQ7aEI\":[\"Alle plekken zijn bezet. Maak een plek vrij of upgrade om meer mensen uit te nodigen.\"],\"X3FPsl\":[\"Alle plekken bezet\"],\"NGO2th\":[\"Alle sjablonen\"],\"IOEBQh\":[\"Alle niveaus\"],\"dYoI9C\":[\"Alle zichtbare gesprekken geselecteerd\"],\"AWdiC+\":[\"Alle werkruimtes\"],\"wm3Zlr\":[\"Alle jaren\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Geef dembrane-medewerkers toegang tot deze werkruimte voor support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Al uitgenodigd. Het project wordt gedeeld zodra ze meedoen.\"],\"3lBGEC\":[\"Al gebruikt in deze chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Altijd aan, het staat op onze website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"Een burgerberaad.\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"iRgQMM\":[\"Een evenement of workshop.\"],\"zqhMd0\":[\"Er ging iets onverwachts mis. Opnieuw laden of teruggaan naar home helpt meestal.\"],\"F4cOH1\":[\"Analyse taal\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"Dzr23X\":[\"Meldingen\"],\"w6zk79\":[\"Aankondigingen veroorzaken geen herhaalde meldingspop-ups meer.\"],\"n9aGa5\":[\"Aankondigingen zonder vervaldatum zijn weer zichtbaar.\"],\"AWZZ+1\":[\"Anonimiseer persoonsgegevens in transcripties. Bij geanonimiseerde gesprekken zijn audio afspelen en downloaden uitgeschakeld.\"],\"J8yrvq\":[\"Transcripten anonimiseren\"],\"QgPWYr\":[\"Geanonimiseerde transcripties hebben duidelijkere labels.\"],\"M8cgTa\":[\"Transcript anonimiseren\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"YdiKaK\":[\"anoniem gesprek\"],\"iPiP6k\":[\"Anoniem gesprek\"],\"D9CFV5\":[\"Anoniem\"],\"Pg5/xn\":[\"Anonieme deelnemer\"],\"SEllfL\":[\"Anonieme bezoeker\"],\"t2jB92\":[\"Een andere admin of eigenaar moet je herstellen.\"],\"6GojWN\":[\"Elke tag\"],\"FnbCx1\":[\"Iedereen in je organisatie kan deze werkruimte vinden. Admins kunnen meteen meedoen, leden kunnen toegang aanvragen.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Nog iets anders nodig?\"],\"isAHo8\":[\"Wil je nog iets anders delen\"],\"kR5k2j\":[\"Nog iets?\"],\"N1Wkmw\":[\"Is er iets dat we beter hadden kunnen doen?\"],\"sMMWxH\":[\"Wil je nog iets toevoegen\"],\"aAIQg2\":[\"Weergave\"],\"9+QMn9\":[\"Toegepast. Het canvas toont nu dit ontwerp en houdt het actueel.\"],\"HMzKuc\":[\"Past deze formulering en het verversgedrag toe op het bestaande canvas.\"],\"DB8zMK\":[\"Toepassen\"],\"4TwsNi\":[\"Sjabloon toepassen\"],\"AhHy/i\":[\"Na het toepassen van een template verschijnt een bevestiging met Ongedaan maken.\"],\"5swDY2\":[\"Bijna een limiet bereikt deze maand\"],\"z0ccuc\":[\"Bijna aan de limiet: \",[\"0\"],\" / 32.000 tekens\"],\"Z7ZXbT\":[\"Goedkeuren\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"m14CS3\":[\"Goedkeuren voor 24 uur\"],\"1kA9Tv\":[\"Supporttoegang goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"uqhbrg\":[\"Weet je zeker dat je deze chat wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"yrk3z3\":[\"Weet je zeker dat je dit aangepaste onderwerp wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"ELQ+fw\":[\"Weet je zeker dat je dit rapport wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"e3BGhi\":[\"Weet u zeker dat u dit sjabloon wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"ZmeZPn\":[\"Weet je zeker dat je je avatar wilt verwijderen?\"],\"wQ5jM6\":[\"Weet je zeker dat je je aangepaste logo wilt verwijderen? Het standaard dembrane-logo wordt in plaats daarvan gebruikt.\"],\"Wh64Gd\":[\"Geregeld met dembrane\"],\"F+vBv0\":[\"Stel vraag\"],\"VttPAe\":[\"Vragen | dembrane\"],\"Djkxtl\":[\"Stel een vraag over de gesprekken in dit project, of vraag hulp bij het opzetten ervan. Elke wijziging wordt eerst ter beoordeling voorgesteld en er wordt niets opgeslagen totdat je het goedkeurt.\"],\"2QOQAV\":[\"Vraag een admin van de werkruimte om een uitnodiging, of kies een andere werkruimte uit je lijst.\"],\"Z6YTnr\":[\"Vraag een werkruimtebeheerder om deze persoon uit te nodigen.\"],\"jPTnVt\":[\"Stel vragen over de app.\"],\"7edAaq\":[\"Hierover vragen\"],\"9pDK3A\":[\"Vraag iets over je gesprekken...\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"+8Zvos\":[\"Vraag na afloop van een gesprek om e-mailadressen van deelnemers.\"],\"KmS8XG\":[\"Vraag het in de chat als je een live beeld van de gesprekken wilt. Het eerste canvas komt hier te staan.\"],\"ZwM3p2\":[\"meer vragen te stellen in de chat\"],\"6S+qQR\":[\"Vraag deelnemers om hun e-mailadres\"],\"I+vZ9W\":[\"Vraag deelnemers om hun naam\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kaEPzR\":[\"Toewijzen\"],\"d/bvvp\":[\"Assistent\"],\"MPY6SL\":[\"Assistent-context\"],\"aYfeOI\":[\"Assistent-geheugen\"],\"bU39dx\":[\"Minstens 8 tekens\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"quMOkF\":[\"Aan het einde van deze periode\"],\"8Fp5MP\":[\"Hoeveel gesprekken zijn er op je drukste moment tegelijk bezig?\"],\"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\"],\"9+kvhX\":[\"Audio- en tekstuploads worden meegenomen in gespreksanalyse.\"],\"kHN5Zx\":[\"Audio-download niet beschikbaar voor anonieme gesprekken\"],\"N2tS3I\":[\"Audio komt binnen\"],\"SLvg/d\":[\"Audio-afspelen niet beschikbaar voor anonieme gesprekken\"],\"3z8PNB\":[\"Audio afspelen, transcriptie en automatische gespreksselectie zijn verbeterd.\"],\"7xo9jH\":[\"Audioverwerking en uploads zijn robuuster en de gesprekkenlijst toont duidelijkere totalen.\"],\"oyIxJL\":[\"Audioverwerking en uploads zijn robuuster.\"],\"IOBCIN\":[\"Audio-tip\"],\"HzJSSc\":[\"Audio-uploadknoppen en dialoogvensters reageren correct op klikken.\"],\"0ih2hV\":[\"Audio-uploads werken betrouwbaarder via VPN-verbindingen.\"],\"tQsOBQ\":[\"Na het uploaden van audio keer je terug naar de gesprekslijst.\"],\"OCG9c0\":[\"Er kwam audio binnen, maar dat is gestopt. De verbinding is misschien weggevallen of de telefoon is vergrendeld.\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"OFsXNQ\":[\"Automatische gespreksselectie laat meer ruimte over voor chatantwoorden.\"],\"wcnfVG\":[\"Automatische gesprekstitels blijven zichtbaar wanneer een naam wordt verwijderd.\"],\"mA167s\":[\"Automatische samenvattingen, het samenvoegen van gesprekken en tijdsduren werken betrouwbaarder.\"],\"8kH9im\":[\"Automatische titels en concepttags\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"WI8FHU\":[\"Selecteer automatisch relevante gesprekken voor chat en volg bronverwijzingen. Abonneer je op rapportmeldingen en werk met verbeterde audio- en tekstuploads.\"],\"+OjHg0\":[\"Selecteer automatisch relevante gesprekken voor je vraag.\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"AUb80i\":[\"Beschikbaar met een betaald abonnement\"],\"KKfW2W\":[\"Avatar verwijderd\"],\"jSKImf\":[\"Avatar bijgewerkt\"],\"vhjbKr\":[\"Afwezig\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.button.back\":[\"Terug\"],\"BT2r2q\":[\"Terug naar dembrane\"],\"aBqveh\":[\"Terug naar live\"],\"7rgUr5\":[\"Terug naar mijn werkruimtes\"],\"/9nVLo\":[\"Terug naar selectie\"],\"9aZHfH\":[\"Back to settings\"],\"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\"],\"g7YpV4\":[\"Vóór deze releasegeschiedenis\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"Zz7XBz\":[\"Betafuncties\"],\"omCN5G\":[\"Betere feedback, eenvoudiger opvolgen\"],\"5DnJa6\":[\"Betere opnames, meer manieren om te antwoorden\"],\"9GKCNF\":[\"Betere uploads, transcripten en zoeken\"],\"K9cTJe\":[\"Jaarlijks gefactureerd\"],\"aIkeAd\":[\"Maandelijks gefactureerd\"],\"rKaO4m\":[\"Wordt op een eigen abonnement gefactureerd, niet dat van je organisatie. Beheer dit via de facturering van deze werkruimte.\"],\"IHgGGv\":[\"Apart gefactureerd\"],\"4FkKL6\":[\"Apart gefactureerd, geen onderdeel van het abonnement van de organisatie.\"],\"jtq36d\":[\"Gefactureerd onder het abonnement van je organisatie, samen met je andere werkruimtes.\"],\"R+w/Va\":[\"Facturering\"],\"17Ox+q\":[\"Factuurgegevens\"],\"UQPSlS\":[\"Factuurgegevens opgeslagen.\"],\"ZQhgRe\":[\"Facturering wordt beheerd door je organisatie\"],\"/2TrP/\":[\"Facturatiemodus\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"KKLfx1\":[\"Plan een gesprek met ons\"],\"kFl92P\":[\"Boek een gecertificeerde training om dembrane te blijven gebruiken in situaties met hoog risico.\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"xHijXF\":[\"Overzicht · \",[\"0\"],\" actief\"],\"EpQC5j\":[\"Overzicht per niveau\"],\"16exrD\":[\"Briefing\"],\"7Ic570\":[\"Gebruik je eigen LLM\"],\"t06RRh\":[\"Bugfixes\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"G46Sdr\":[\"door \",[\"by\"]],\"IqudIv\":[\"Door dit project te verwijderen, verwijder je alle bijbehorende gegevens. Deze actie kan niet ongedaan worden gemaakt. Weet je het absoluut zeker?\"],\"aeGLaK\":[\"Op status\"],\"0rwwOn\":[\"Op trefwoord\"],\"URPLGF\":[\"kan bewerken\"],\"6++86c\":[\"kan lezen\"],\"OoV4VL\":[\"Kun je ons meer vertellen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"4MDqQJ\":[\"Annuleer wanneer je wilt. Je houdt toegang tot het einde van de periode.\"],\"KWnDn1\":[\"Huidige run stoppen\"],\"UKcgfh\":[\"Overschrijving annuleren\"],\"Bu+BBn\":[\"Abonnement opzeggen\"],\"HoYkSd\":[\"Verzoek intrekken\"],\"lrdoAi\":[\"Planning annuleren\"],\"iypQhn\":[\"Selectie annuleren\"],\"XzQibx\":[\"Training annuleren\"],\"D2vAZP\":[\"Je abonnement opzeggen\"],\"vv7kpg\":[\"Opgezegd\"],\"AreLja\":[\"Bij opzeggen wordt je abonnement niet verlengd. Je houdt \",[\"0\"],\" tot het einde van je huidige factureringsperiode en gaat daarna over naar Free.\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"SL9Qao\":[\"Kan niet opnieuw plannen binnen 10 minuten voor het geplande tijdstip\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Verversfrequentie van het canvas aangepast\"],\"RP1RaW\":[\"Canvasvoorbeeld\"],\"J5lsfs\":[\"Canvasinstellingen\"],\"vkf71G\":[\"ontbrekende mogelijkheid\"],\"kryGs+\":[\"Kaart\"],\"SHhA6n\":[\"inhalen \",[\"0\"]],\"wNBLz0\":[\"Gecertificeerde training voor teams die dembrane in risicovolle situaties gebruiken. Een apart product, per sessie gefactureerd.\"],\"o+XJ9D\":[\"Wijzigen\"],\"rlgQn8\":[\"De organisatierol van \",[\"person\"],\" wijzigen van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"De rol van \",[\"person\"],\" op \",[\"wsName\"],\" wijzigen van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Toch wijzigen\"],\"U8sdJ+\":[\"Wijzigen in werkruimte-instellingen\"],\"+DEogc\":[\"Taal wijzigen\"],\"7KtLzo\":[\"Organisatierol wijzigen?\"],\"GptGxg\":[\"Wachtwoord wijzigen\"],\"Ts/A07\":[\"Betaalmethode wijzigen\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Rol wijzigen\"],\"qpV0fp\":[\"Niveau wijzigen\"],\"XbjzC/\":[\"Werkruimterol wijzigen?\"],\"mtseAM\":[\"Je eigen rol wijzigen?\"],\"X0m2J4\":[\"Wijzig je wachtwoord in de instellingen zonder contact met ondersteuning.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Wijzigingen toegepast. Je kunt ze altijd bijstellen in de projectinstellingen.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"De chatcontext bevat gespreksdatums en tijdsduren.\"],\"KNCmqW\":[\"Chat aangemaakt\"],\"pB+sJr\":[\"Chat verwijderd\"],\"qlK5jV\":[\"Chat is niet beschikbaar op jouw toegangsniveau. Neem contact op met je werkruimtebeheerder om een upgrade aan te vragen.\"],\"qUVihD\":[\"Chatlimiet bereikt\"],\"tDlhkF\":[\"Chatnaam\"],\"qROGJJ\":[\"Chat verstuurt niet meer per ongeluk dubbele berichten.\"],\"VcmnNx\":[\"Chattemplates blijven zichtbaar terwijl je werkt.\"],\"nsBRp+\":[\"Chat waarschuwt voordat je een bericht boven de tekenlimiet verstuurt.\"],\"5YLyJ8\":[\"Chatten met individuele gesprekken.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Chats krijgen automatische titels en gesprekscontext bevat datums en duren. Ga naar het nieuwste bericht en gebruik een duidelijkere audio-uploadflow.\"],\"ZScceP\":[\"Chats krijgen automatische titels.\"],\"iFHfAI\":[\"Chats die op Tsjechisch staan, antwoorden in het Tsjechisch in plaats van Engels.\"],\"uKHYRK\":[\"Chats die op Tsjechisch staan, antwoorden nu in het Tsjechisch in plaats van het Engels.\"],\"gLvHXQ\":[\"Controleer en kies je microfoon voor de opname, bekijk audiokwaliteitsindicatoren en gebruik verbeterde meertalige transcriptie. Kies samenvattingen, brainstormen of eigen antwoordmodi.\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"WQUm5N\":[\"Controleer de tekst en afbeeldingen en probeer het opnieuw\"],\"v4fiSg\":[\"Controleer je email\"],\"mGd0TP\":[\"Gecontroleerd \",[\"checkedAgo\"],\". De eerste update verschijnt zodra er genoeg te tonen is.\"],\"fhPONC\":[\"Gecontroleerd \",[\"checkedAgo\"],\". Niets nieuws sinds je laatste gesprek. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Live gesprekken controleren\"],\"pMF40U\":[\"Je sessie wordt gecontroleerd.\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"MgLGKD\":[\"Kies een methodologie\"],\"4Jd65a\":[\"Kies eerst een organisatie\"],\"0hjkQk\":[\"Kies vindbare, alleen op uitnodiging toegankelijke of privéwerkruimtes.\"],\"d5ey9z\":[\"Kies vindbare workspaces, workspaces op uitnodiging of privéworkspaces. Organisatieleden laden sneller, na uploads keer je terug naar je gesprekken en automatisch samenvatten en samenvoegen werken betrouwbaarder.\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"lrPU2/\":[\"Kies de antwoordmodus Samenvatten, Ideeën brainstormen of Aangepast.\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"mgiYV1\":[\"Kies je voorkeurstaal voor de interface\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"3wV73y\":[\"Plaats\"],\"xCJdfg\":[\"Wissen\"],\"yYxB17\":[\"Alles wissen\"],\"u8JHrO\":[\"Filters wissen\"],\"V8yTm6\":[\"Zoekopdracht wissen\"],\"eIdJyh\":[[\"cleared\"],\" van \",[\"total\"],\" gesprekken gewist\"],\"0ZbLOL\":[\"Duidelijkere bronnen in chat\"],\"xOlaOX\":[\"Duidelijkere workspacetoegang voor beheerders\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"TmA1Yd\":[\"Klik op een gesprekstag om die aan je filters toe te voegen.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"oL+Urh\":[\"Klik om te sorteren\"],\"VbcOhD\":[\"Klantkorting %\"],\"1vOl9f\":[\"Klantorganisatie\"],\"WXNW/R\":[\"Klantorganisaties van partners\"],\"bIj+VB\":[\"Door client beheerd\"],\"dcBdC4\":[\"Kopieerknoppen werken in Safari en je gekozen interfacetaal wordt onthouden.\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"RRo5cD\":[\"Sluiten en naar dembrane\"],\"bQfDiL\":[\"Cloud Act-veilig\"],\"sShXu3\":[\"Collega's die je uitnodigt kunnen gesprekken verkennen, inzichten delen en samen met jou rapporten maken.\"],\"Y+lkZA\":[\"Verhalen van mensen verzamelen zonder dat je erbij bent, zoals met een gesproken enquête.\"],\"q+hNag\":[\"Collectie\"],\"jEu4bB\":[\"Kolommen\"],\"AUYALh\":[\"Binnenkort beschikbaar\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"xDz9mh\":[\"Compacte voetnoten houden gespreksbronnen binnen bereik.\"],\"Wqc3zS\":[\"Vergelijk\"],\"CfO59/\":[\"Vergelijk & Contrast Insights\"],\"2Jg8b0\":[\"Gratis proefperiode. €0 omzet.\"],\"bUEr/M\":[\"Gratis proefperiode. Verloopt op \",[\"0\"],\". €0 omzet.\"],\"bD8I7O\":[\"Voltooid\"],\"qqWcBV\":[\"Voltooid\"],\"XdO6hR\":[\"Voltooid op\"],\"YmlJMO\":[\"Configureer instellingen voor elke rechtsgrondslag.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"7VpPHA\":[\"Bevestigen\"],\"s/uNVb\":[\"Bevestigen en versturen\"],\"JRQitQ\":[\"Bevestig nieuw wachtwoord\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"xnWESi\":[\"Wachtwoord bevestigen\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"vz1fGK\":[\"Herplanning bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"participant.modal.s3check.title\":[\"Verbindingsprobleem\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Verbinding ongezond\"],\"l9fkrm\":[\"Toestemming\"],\"EhtOYz\":[\"Verwerking op basis van toestemming is actief zonder link naar het privacybeleid. Voeg er een toe waar de rechtsgrondslag is ingesteld: deelnemers moeten het privacybeleid kunnen lezen.\"],\"mpby9d\":[\"Contact met support\"],\"E5Shm/\":[\"Neem contact op met de beheerder als dit onverwacht was.\"],\"4b3oEV\":[\"Inhoud\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"JX3KT4\":[\"Contextuele suggesties\"],\"xGVfLh\":[\"Doorgaan\"],\"participant.button.continue\":[\"Doorgaan\"],\"participant.ready.to.begin.button.text\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"YyNOE7\":[\"Gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"UL2RVZ\":[\"Gespreksverwijzingen staan samen onder één kop Bronnen.\"],\"yo+cs6\":[\"Gespreksverwijzingen staan nu samen onder één kop Bronnen. Het feedbackformulier kan je e-mailadres vooraf invullen.\"],\"HVt1q8\":[\"Gespreksdatums tonen wanneer de opname begon, niet wanneer de pagina werd geopend.\"],\"zoQtTL\":[\"Gespreksduren en het kopiëren van projecten zijn betrouwbaarder.\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"E14kXV\":[\"Gespreksnamen verschijnen in de Library en het eindscherm van het portaal werkt correct.\"],\"oMLs8t\":[\"Gesprekspagina's en het laden van gegevens zijn vereenvoudigd.\"],\"bRjeED\":[\"Gesprekspagina’s en het laden van gegevens zijn vereenvoudigd. Automatische gespreksselectie laat meer ruimte voor antwoorden en aankondigingen veroorzaken minder herhaalde meldingen.\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"77Vr/m\":[\"De gespreksstatus bevat de uploadvoortgang.\"],\"J2pUSq\":[\"Gesprekssamenvattingen lopen niet meer vast in de getroffen verwerkingsstappen. Gesprekken die door limieten van het gratis plan zijn gepauzeerd, worden na een upgrade opgepakt.\"],\"ym9Tli\":[\"Gesprekssamenvattingen blijven niet meer hangen in de getroffen verwerkingsgevallen.\"],\"7Ljafh\":[\"Gesprekslabels\"],\"zaWnya\":[\"Gesprekstags zijn beter leesbaar.\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"72XGHt\":[\"Gesprekken gewist\"],\"iQeG0i\":[\"Gesprekken die zijn gepauzeerd door gratis abonnementslimieten worden na een upgrade samengevat.\"],\"72TERk\":[\"Gesprekken gebruiken de vernieuwde Dembrane-26-07-transcriptieverwerking.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Uitnodigingslink kopiëren\"],\"y1eoq1\":[\"Kopieer link\"],\"H4brGj\":[\"Link naar klembord kopiëren\"],\"AjrNNs\":[\"Rapportinhoud kopiëren\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Kopieren...\"],\"/GF06U\":[\"Kon je gesprekken niet aan deze chat toevoegen\"],\"wcXkqW\":[\"Kon niet alle tagwijzigingen toepassen.\"],\"5XIW2B\":[\"Kon de wijzigingen niet toepassen. Er is niets opgeslagen.\"],\"1kNETE\":[\"Je selectie kon niet worden meegenomen. Kies hieronder opnieuw.\"],\"Exvn8R\":[\"Kon die actie niet voltooien.\"],\"leuP7L\":[\"Kon de betaling niet bevestigen. Vernieuw om opnieuw te proberen.\"],\"inHtAw\":[\"Kon niet naar het klembord kopiëren. Probeer het opnieuw.\"],\"X+pWr+\":[\"Sjabloon kon niet worden aangemaakt\"],\"qg6spM\":[\"De organisatie kon niet worden aangemaakt\"],\"D4A5VY\":[\"Kon dit canvas niet aanmaken\"],\"kzqg8O\":[\"Kon deze methodologie niet aanmaken\"],\"BiXtZw\":[\"Sjabloon kon niet worden verwijderd\"],\"qFM9uZ\":[\"Er kon geen samenvatting worden gegenereerd. Probeer het opnieuw.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Kon de methodologieën niet laden.\"],\"RYJyLk\":[\"Betalingen konden niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"3ewci6\":[\"Kon de bibliotheek niet laden.\"],\"S+kUD0\":[\"De rollup kon niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"mNTNj8\":[\"Kon het doel van dit project niet laden.\"],\"2gcFEX\":[\"De gesprekkenlijst kon niet worden geopend. Probeer het opnieuw.\"],\"WSxAYE\":[\"Kon nu geen voorbeeld van dit canvas laden.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Kon dit canvas niet verversen\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Kon niet opslaan\"],\"vFB5Q8\":[\"Feedback niet opgeslagen\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"BIQxIX\":[\"Kon tags niet opslaan\"],\"/C4Hgq\":[\"De hostgids kon niet worden opgeslagen\"],\"mb/wyK\":[\"Kon deze methodologie niet opslaan\"],\"g4QEze\":[\"Kon dit projectdoel niet opslaan\"],\"HQinjp\":[\"De uitnodigings-e-mail kon niet worden verstuurd. Controleer de e-mailconfiguratie.\"],\"BMDNcQ\":[\"Je melding kon niet worden verzonden. Probeer het opnieuw\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Sjabloon kon niet worden bijgewerkt\"],\"Ld3JrX\":[\"Kon dit canvas niet bijwerken\"],\"0Mj7CF\":[\"Kon de methodologie van dit project niet bijwerken\"],\"/P90WH\":[[\"failed\"],\" leden konden niet worden toegevoegd. Voeg ze toe via de instellingen van de werkruimte.\"],\"n5jG23\":[\"1 lid kon niet worden toegevoegd. Voeg het toe via de instellingen van de werkruimte.\"],\"KFEjpC\":[\"Persoon kon niet worden toegevoegd\"],\"RbXh2U\":[\"Zichtbaarheid kon niet worden gewijzigd\"],\"DjWv8n\":[\"De link kon niet worden gekopieerd.\"],\"QYq+2z\":[\"Deelnemen lukt nu niet\"],\"TOvPOV\":[\"Kon live activiteit niet laden\"],\"CLBne9\":[\"Kon herinneringen niet laden. Vernieuw om het opnieuw te proberen.\"],\"SnOYvu\":[\"Organisatie kon niet worden geladen (\",[\"0\"],\")\"],\"KYcw2y\":[\"Organisatieleden konden niet worden geladen. Probeer te vernieuwen, en neem contact op met support als het blijft mislukken.\"],\"Vw2vHe\":[\"Openstaande uitnodigingen konden niet worden geladen.\"],\"8a9fbX\":[\"Gebruik kon niet worden geladen (\",[\"0\"],\")\"],\"Fwc3py\":[\"Instellingen van de werkruimte konden niet worden geladen (\",[\"0\"],\")\"],\"edGmsx\":[\"Werkruimtes konden niet worden geladen. Sluit en open opnieuw om het nogmaals te proberen.\"],\"4ufrJH\":[\"Gebruik kon niet worden vernieuwd. Probeer het opnieuw.\"],\"PMx835\":[\"Kon deze herinnering niet verwijderen\"],\"b5ALMv\":[\"Training kon niet worden aangevraagd\"],\"SUJwLx\":[\"Uitnodiging kon niet worden ingetrokken\"],\"LPY4VY\":[\"Uitnodiging kon niet worden verstuurd\"],\"JNCzPW\":[\"Land\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"oJfYM5\":[\"Een onderzoeksbrief maken van recente gesprekken\"],\"1hMWR6\":[\"Account aanmaken\"],\"3T8ziB\":[\"Maak een account aan\"],\"lJ+m2/\":[\"Maak een account aan om deel te nemen\"],\"5VjGj6\":[\"Maak en beheer meerdere rapporten binnen één project.\"],\"/EJK2h\":[\"nog een rapport te maken\"],\"NaGyxm\":[\"Maak eigen chattemplates (bèta), of kopieer en bewerk een ingebouwde template.\"],\"library.create\":[\"Maak bibliotheek aan\"],\"bUyyzw\":[\"Maak meerdere rapporten per project en stuur de inhoud met je eigen instructies. Geplande rapporten (bèta) bevatten alle gesprekken die vóór het geplande tijdstip zijn opgenomen. Maak, bewaar en pin eigen chattemplates (bèta). Deze release voegt ook het pinnen van projecten, profielinstellingen en Oekraïense chatondersteuning toe.\"],\"T7gFri\":[\"Nieuwe organisatie aanmaken\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"55yNvT\":[\"Organisatie aanmaken\"],\"vPAex+\":[\"Wachtwoord aanmaken\"],\"Q7h9s/\":[\"Project aanmaken\"],\"bsfMt3\":[\"Maak rapport\"],\"A5hiCy\":[\"Template aanmaken\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"FdtSNC\":[\"Werkruimte aanmaken\"],\"WqpzRx\":[\"Werkruimte aanmaken | dembrane\"],\"d+F6q9\":[\"Aangemaakt\"],\"NCIYDF\":[\"Aangemaakt door\"],\"45O6zJ\":[\"Gemaakt op\"],\"QxmQob\":[\"Aanmaken in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Avatar bijsnijden\"],\"udBqWc\":[\"Afbeelding bijsnijden\"],\"8LMgB6\":[\"Logo bijsnijden\"],\"6dfVdc\":[\"Logo bijsnijden\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Huidig\"],\"yOrQ4N\":[\"Huidige logo\"],\"Pn2B7/\":[\"Huidig wachtwoord\"],\"A+zoTy\":[\"Huidig abonnement\"],\"a+EVO+\":[\"Huidig tarief\"],\"8Tg/JR\":[\"Aangepast\"],\"puMv5a\":[\"Eigen chattemplates worden weer correct opgeslagen en gedeeld.\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"jthSbr\":[\"De instellingen voor eigen logo's leggen nu de aanbevolen verhouding van 3:1 uit.\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"yGoz+a\":[\"Eigen logo van de werkruimte dat aan deelnemers wordt getoond.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Tsjechisch (alleen ECHO-functies, transcriptie en samenvattingen)\"],\"RRwgJO\":[\"Tsjechische gesprekken, Tsjechische antwoorden\"],\"TNZKpI\":[\"Gevaar\"],\"Zz6Cxn\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"S3EU+A\":[\"E-mail van de data-eigenaar\"],\"+kPwoM\":[\"Data-eigendom\"],\"mYGY3B\":[\"Datum\"],\"ItMGda\":[\"Datumbereik\"],\"Zpu3D+\":[\"Data die passen, context, alles wat verder relevant is\"],\"jbq7j2\":[\"Weigeren\"],\"a1Rv+M\":[\"Uitnodiging weigeren\"],\"bdg17D\":[\"Verzoek weigeren\"],\"OhcpqZ\":[\"Verzoek weigeren?\"],\"BfuTZd\":[\"De uitnodiging voor \",[\"subjectName\"],\" weigeren? Je kunt vragen om hem later opnieuw te sturen.\"],\"vrNxDR\":[\"Dit toegangsverzoek weigeren? De aanvrager krijgt geen melding en zou opnieuw toegang moeten aanvragen.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"K/78Yl\":[\"Multistap analyse delegeren met live tool uitvoering\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"Tf88pC\":[[\"0\"],\" verwijderen?\"],\"YFpLoV\":[\"Chat verwijderen\"],\"2GCE3m\":[\"Gesprek verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"j5pYC4\":[\"Aangepast onderwerp verwijderen\"],\"mp235G\":[\"Project verwijderen\"],\"++iDlT\":[\"Verwijder project\"],\"rUWrSE\":[\"Rapport verwijderen\"],\"qr0gpK\":[\"Tag verwijderen\"],\"DFjdv0\":[\"Template verwijderen\"],\"NUXYj2\":[\"Dit project in \",[\"0\"],\" verwijderen? Alle gesprekken en gegevens worden definitief verwijderd.\"],\"Ja/2b5\":[\"Deze werkruimte verwijderen\"],\"ooWc3n\":[\"Deze werkruimte verwijderen. Leden verliezen direct toegang en alle gesprekken en gegevens worden definitief verwijderd.\"],\"zdyslo\":[\"Webhook verwijderen\"],\"kYu0eF\":[\"Werkruimte verwijderen\"],\"Jb6/SB\":[\"Verwijderen…\"],\"L7H6O4\":[\"Verwijderd · \",[\"0\"]],\"17dnn7\":[\"Verwijderde projecten en gesprekken die door abonnementslimieten zijn gepauzeerd, veroorzaken geen herhaalde samenvattingspogingen meer.\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"InIP7b\":[\"Een organisatie verwijderen doen we samen met support. Mail <0>support@dembrane.com en we lopen het met je door. Alle werkruimtes moeten eerst leeg zijn en verwijderd.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane, de standaard\"],\"hEVZlB\":[\"Ook dembrane inzetten?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", alle rechten voorbehouden.\"],\"qFd3qy\":[\"dembrane kan fouten maken. Controleer antwoorden altijd even.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"dembrane event-uitnodiging\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"bK6CFO\":[\"toegang voor dembrane-medewerker automatisch gestopt\"],\"NBxEip\":[\"dembrane-medewerker heeft de sessie verlengd\"],\"7VMnIt\":[\"dembrane-medewerker is erbij gekomen voor support\"],\"g0sCc9\":[\"dembrane-medewerker is vertrokken\"],\"PDkZlx\":[\"dembrane-medewerker heeft toegang aangevraagd\"],\"zPKc5G\":[\"dembrane/pilot was ons eerdere project. Dank aan de hosts, deelnemers en bijdragers die het hebben helpen vormgeven.\"],\"cFCKYZ\":[\"Weigeren\"],\"HpYpx4\":[\"Beschrijf het probleem\"],\"Fs/0D5\":[\"Beschrijf wat de taalmodel moet extraheren of samenvatten uit het gesprek...\"],\"Nu4oKW\":[\"Beschrijving\"],\"Uf+1DF\":[\"Doelwerkruimte\"],\"ney/NP\":[\"Bepaalt onder welke AVG-rechtsgrondslag persoonsgegevens voor dit project worden verwerkt.\"],\"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.\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"rGCttu\":[\"Verwachtte je dit niet? Je kunt deze pagina rustig negeren.\"],\"ch15wD\":[\"Niet ontvangen? Kijk eerst in je spam of ongewenste mail. Het bericht komt van dembrane.com.\"],\"hsGK8G\":[\"Niet ontvangen? Kijk in je spam- of ongewenste-mailmap. De e-mail komt van dembrane.com.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"bzSI52\":[\"Weggooien\"],\"Xrxdv5\":[\"Dit project weggooien?\"],\"gemv7o\":[\"Deze werkruimte weggooien?\"],\"H6Ma8Z\":[\"Korting\"],\"Ix7Qp4\":[\"Vindbaar in deze organisatie\"],\"1QfxQT\":[\"Negeren\"],\"J6hrEy\":[\"Genegeerd\"],\"K0Wh2e\":[\"Afgewezen. Er is niets gewijzigd.\"],\"pfa8F0\":[\"Weergavenaam\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"qPwbNF\":[\"Ben je van plan dembrane te gebruiken in de zorg, het onderwijs, werving, het beheer van kritieke infrastructuur, rechtshandhaving of de rechtspraak?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Wordt niet vanzelf bijgewerkt.\"],\"VjXLEl\":[\"Wordt niet vanzelf bijgewerkt. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Klaar\"],\"9bIbDI\":[\"Klaar, neem contact met me op\"],\"K98xdM\":[\"Nu terug naar Free\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"SCWfsz\":[\"Alle transcripties downloaden\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"N8MP2s\":[\"Audio downloaden en gesprekken organiseren\"],\"h9oGl9\":[\"Download audio van gesprekken.\"],\"NJkTm9\":[\"Download gespreksaudio, voeg tags toe vanuit het dashboard en gebruik samenvattingen die zich aanpassen aan het gesprek. Bewerken en het portaalvoorbeeld zijn verbeterd.\"],\"KMdYRY\":[\"PDF downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Ontwerp volgende acties en organiseer ze op basis van prioriteit\"],\"yboQcK\":[\"Een notitie opstellen die je naar het dembrane-team kunt sturen\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"pBB+yW\":[\"Gaat terug naar het gratis plan. Ze kunnen op elk moment een betaald plan nemen.\"],\"euc6Ns\":[\"Dupliceren\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"gMbUE3\":[\"De Nederlandse documentatie is bijgewerkt.\"],\"FOwxqK\":[\"Hosts die Nederlands gebruiken zien de Nederlandse rondleiding bij Wat is nieuw.\"],\"oUKP8j\":[\"E-factuur\"],\"hBOGLr\":[\"bijv. \\\"Focus op duurzaamheidsthema's\\\" of \\\"Wat vinden deelnemers van het nieuwe beleid?\\\"\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"9nchXg\":[\"bijv. Klant Alpha\"],\"o8kQWN\":[\"bijv. Klant Alpha, Q1-onderzoek\"],\"Ys/6OK\":[\"bijv. Onboardinggesprekken met klanten, Q1-productonderzoek\"],\"MR17iW\":[\"bijv. Klimaatluisteren, Q1-onderzoek\"],\"xnZ8L2\":[\"bijv. het rapportprobleem onderzoeken waarover je mailde\"],\"jYJhQk\":[\"bijv. We zijn een onderzoeksbureau. Rapporten gaan naar gemeentelijke opdrachtgevers, dus houd samenvattingen formeel en in het Nederlands.\"],\"sHNbQq\":[\"bijv. Wekelijkse samenvatting stakeholders\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"Cs04r/\":[\"Elk nieuw lid wordt per stoel in rekening gebracht volgens je abonnement.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Nieuwe functies die je in dit project kunt proberen voordat ze klaar zijn voor iedereen.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"Y/3VME\":[\"Aangepast onderwerp bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"IYfHCP\":[\"Bijwerkinstellingen aanpassen\"],\"qDZ8v9\":[\"Doel bewerken\"],\"X14Q1S\":[\"Methodologie bewerken\"],\"G1Sb51\":[\"Bewerkingsmodus\"],\"niSWGL\":[\"Opties bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"UHTUfP\":[\"Bewerk rapporten voordat je ze publiceert.\"],\"4uk9v2\":[\"Rapporten direct bewerken\"],\"nedzic\":[\"Bewerk rapporten direct in dembrane.\"],\"yZyG0D\":[\"Bewerk rapporten zelf, controleer microfoons duidelijker in het portaal en zie betere laadstatussen en foutmeldingen.\"],\"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\"],\"0GlhwE\":[\"Bewerk je weergavenaam en upload, snijd bij of verwijder je profielfoto.\"],\"5MB4fU\":[\"Het bewerken van een gesprek veroorzaakt de betreffende opslagfout niet meer.\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"E-mailadres\"],\"LimKOG\":[\"E-mailverificatie\"],\"QdCcsg\":[\"E-mailverificatie | dembrane\"],\"g2N9MJ\":[\"email@werk.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji getoond naast het onderwerp bijvoorbeeld 💡 🔍 📊\"],\"TiAvLQ\":[\"leeggemaakt\"],\"N2S1rs\":[\"Leeg\"],\"ru50wd\":[\"Lege of verwijderde gesprekken verstoren de chatcontext niet meer.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"2FA inschakelen\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dashboard.dembrane.feature.verify.description\":[\"Schakel deze functie in om deelnemers \\\"resultaten\\\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"237hSL\":[\"Afgelopen\"],\"ajxGoy\":[\"Eindigt op \",[\"endDate\"],\", gaat daarna over naar Free\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"QbilUm\":[\"Voer een geldig e-mailadres in\"],\"CyH1Uk\":[\"Voer het huidige wachtwoord in\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"VpwcSk\":[\"Voer het nieuwe wachtwoord in\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"FiGRkg\":[\"Gegevens ingevuld\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"edh3aY\":[\"Fout bij laden van project\"],\"4kVRov\":[\"Fout opgetreden\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Geschatte kosten\"],\"0PkibI\":[\"Geschat totaal: €\",[\"estimated\"]],\"sIs2jw\":[\"In de EU gehoste taalmodellen inbegrepen\"],\"inuQyd\":[\"Hulp van het dembrane-team bij je evenement\"],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"IwE6dT\":[\"Elke 15 minuten\"],\"QFwKaB\":[\"Elke 5 minuten\"],\"NsoFw9\":[\"Elke 60 minuten\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Elke week, een jaar lang\"],\"aBiYpV\":[\"Iedereen kan het vinden. Admins doen direct mee, leden kunnen het aanvragen.\"],\"Mzb7Rk\":[\"Iedereen in \",[\"0\"],\" kan dit project vinden en openen.\"],\"PwqyQw\":[\"Iedereen in je organisatie\"],\"nvU1pM\":[\"Iedereen op de lijst is getraind.\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"p9TUoT\":[\"Overschrijdt het maximum aantal stoelen. Er gelden extra kosten.\"],\"sQpDn6\":[\"Volledig scherm sluiten\"],\"FATwZw\":[\"Werkruimtes uitvouwen\"],\"Rsjgm0\":[\"Experimenteel\"],\"M1RnFv\":[\"Verlopen\"],\"KnN1Tu\":[\"Verloopt\"],\"vHL8v0\":[\"Verloopt binnenkort\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"B7flm8\":[\"Verken terugkerende thema’s in de Library\"],\"EebTQD\":[\"Verken verhalen en perspectieven met de chattemplate Narratives, in het Engels en Nederlands.\"],\"HNnM2X\":[\"Bekijk het dembrane/pilot-archief\"],\"6jZGjE\":[\"Verkennen\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"2KAI4N\":[\"CSV exporteren\"],\"tZXz25\":[\"24 uur verlengen\"],\"bVhrVt\":[\"Extern\"],\"3xOpcO\":[\"Extern van \",[\"0\"]],\"8f/4pG\":[\"Extern van partner\"],\"FMB83I\":[\"Externen\"],\"uRzQpN\":[\"Externen worden niet aan je organisatie toegevoegd. Ze zien alleen de werkruimtes die je hier selecteert.\"],\"W3lkzg\":[\"Externen bestaan alleen binnen een werkruimte. Kies er minstens één om de uitnodiging te versturen.\"],\"KVTM6i\":[\"Extra deelnemers\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"UcQWAA\":[\"Gesprekken wissen is mislukt\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"UQ6LqT\":[\"Fout bij het aanmaken van het aangepaste onderwerp\"],\"bHJ//P\":[\"Project aanmaken mislukt\"],\"nVOWis\":[\"Verwijderen van chat mislukt\"],\"ZiNeUi\":[\"Fout bij het verwijderen van het aangepaste onderwerp\"],\"7QAutA\":[\"Verwijderen van project mislukt\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"REIHSi\":[\"Verwijderen van tag mislukt\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"PECaxL\":[\"Aankondiging als ongelezen markeren mislukt\"],\"CN1kl1\":[\"Verplaatsen van project mislukt\"],\"kC1ABz\":[\"Verplaatsen van projecten mislukt\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"rv8mO7\":[\"Kan avatar niet verwijderen\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"IMUHg3\":[\"Opnieuw plannen mislukt. Kies een tijdstip verder in de toekomst en probeer het opnieuw.\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"FBpxE9\":[\"De run stoppen is mislukt\"],\"6xOp3l\":[\"Bericht versturen is mislukt\"],\"qTUnxX\":[\"Fout bij het bijwerken van het aangepaste onderwerp\"],\"BpuK7o\":[\"Fout bij het bijwerken van de rechtsgrondslag\"],\"Avee+B\":[\"Kan naam niet bijwerken\"],\"gnm1CH\":[\"Vastpinnen bijwerken mislukt\"],\"tOcErW\":[\"Instellingen bijwerken is mislukt\"],\"S1McZh\":[\"Kan avatar niet uploaden\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"3O1Mz4\":[\"Redelijk wachtwoord\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedbackportaal\"],\"2roTVj\":[\"Feedback verstuurd\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"3AFOMQ\":[\"Filter op naam of id\"],\"q8rWRy\":[\"Filter releases op jaar\"],\"MRk67a\":[\"Vind tegenstrijdigheden en voeg volgende vragen voor\"],\"SdZBYB\":[\"Vind de juiste gesprekken voor je vraag\"],\"oRQsgh\":[\"Vind workspaces en houd gesprekken in beweging\"],\"p2j2po\":[\"Vind je plek in chat\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"jtvljU\":[\"Afronden\"],\"V1EGGU\":[\"Voornaam\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus op gesprekken\"],\"2CludW\":[\"Gericht op:\"],\"IaFUVX\":[\"Volg lopende sessies in de live monitor.\"],\"URFuH+\":[\"Volg bronverwijzingen vanuit chatantwoorden.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"Voor intern gebruik\"],\"c08s58\":[\"Voor facturen, een gedeeld contract, om een samenwerking te bespreken of voor iets op maat, mail <0>support@dembrane.com.\"],\"YP/rFm\":[\"voor het dembrane-team\"],\"GcibpE\":[\"Voor jou\"],\"z7J3FU\":[\"Prognose\"],\"UXY498\":[\"Een opgeslagen herinnering vergeten\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"rWsDiJ\":[\"Kader\"],\"2POOFK\":[\"Gratis\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Het gratis plan staat 1 rapport per werkruimte toe\"],\"GAy5hu\":[\"Het gratis plan staat 1 werkruimte per organisatie toe\"],\"NXMsm8\":[\"De limieten van het gratis abonnement en upgradeopties zijn duidelijker.\"],\"/L+Kwy\":[\"Gratis, alleen-lezen. Ziet projecten, gesprekken en rapporten. Kan niet chatten of rapporten genereren.\"],\"nLC6tu\":[\"Frans\"],\"2Ui6bR\":[\"wrijving\"],\"OwIqiD\":[\"Volledig scherm\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"3qkggm\":[\"Volledig scherm\"],\"Weq9zb\":[\"Algemeen\"],\"ziAjHi\":[\"Genereren\"],\"EIdJgG\":[\"Nieuw rapport genereren\"],\"QsUhrf\":[\"Rapport genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"RW9Woq\":[\"Genereer gesprekstitels automatisch, met een optie om dit uit te schakelen.\"],\"MWSGhX\":[\"Bibliotheek genereren\"],\"5SWGxv\":[\"Nu genereren\"],\"GWUJ9X\":[\"Nu genereren\"],\"QqIxfi\":[\"Geheim genereren\"],\"gitFA/\":[\"Samenvatting genereren\"],\"+cSW/S\":[\"Automatische gesprekstitels bevatten één titel in plaats van een lijst suggesties.\"],\"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\"],\"Hd0xjq\":[\"Krijg een antwoord tijdens een gesprek\"],\"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.\"],\"Pl6LQ+\":[\"Neem contact op\"],\"ZDIydz\":[\"Aan de slag\"],\"4/PUV0\":[\"aan de slag.\"],\"erZjsz\":[[\"0\"],\" van dembrane 24 uur adminrechten geven voor deze werkruimte? De toegang stopt automatisch.\"],\"G2IKZF\":[\"Geef chatantwoorden een duim omhoog of omlaag.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"DXr0zk\":[\"Volledig scherm\"],\"iWpEwy\":[\"Ga naar home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Naar facturering\"],\"mPlqH9\":[\"Naar chats\"],\"s15CIR\":[\"Naar gesprekken\"],\"10Xyas\":[\"Naar dashboard\"],\"4+0/e5\":[\"Naar de hostgids\"],\"BVMldh\":[\"Naar de bibliotheek\"],\"SAshCc\":[\"Naar de monitor\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"S8lgYE\":[\"Naar het overzicht\"],\"Zo4Spg\":[\"Naar de portal-editor\"],\"jH97zI\":[\"Naar de projectpagina\"],\"QvyaLZ\":[\"Naar het rapport\"],\"1WuwiM\":[\"Naar instellingen\"],\"EEZvNu\":[\"Doel\"],\"mc61Qc\":[\"Doel opgeslagen\"],\"VIfUjY\":[\"Goed antwoord\"],\"76gPWk\":[\"Begrepen\"],\"hjZBYK\":[\"Heb je twee minuten? Vijf optionele vragen helpen ons voorbereiden.\"],\"Lr2Goo\":[\"Licenties toekennen\"],\"ALoP4W\":[\"Groeperen op\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"2XucLv\":[\"Stuur het schrijven van rapporten met je eigen instructies.\"],\"uMjvI3\":[\"Het rapport begeleiden\"],\"myXGZW\":[\"Begeleid\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"0zo6ap\":[\"Heb je een training afgerond?\"],\"OwUS8p\":[\"je opnames te laten transcriberen\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me op weg\"],\"55zzNI\":[\"Hulp bij het opzetten van je project.\"],\"1zZ1IK\":[\"Hoi\"],\"v6a4UH\":[\"Hoi \",[\"firstName\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Verborgen voor leden van de organisatie. Beheerders van de organisatie kunnen de werkruimte nog wel vinden en eraan deelnemen.\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"CdQHTK\":[\"Details verbergen\"],\"lqv0Dk\":[\"Projecten verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"dN/wNN\":[\"Stappen verbergen\"],\"umJNCH\":[\"Wijzigingen verbergen\"],\"SGJRXz\":[\"de dembrane event-uitnodiging verbergen\"],\"V3NvRL\":[\"De dembrane event-uitnodiging verbergen kan met een betaald plan.\"],\"+WN0mu\":[\"Meldingen over grote drukte verklaren langere wachttijden op antwoorden.\"],\"gtEbeW\":[\"Hoogtepunt\"],\"tn75xn\":[\"Specifiek Concept markeren\"],\"3l+JGi\":[\"Notitie bij wijziging\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Host\"],\"Elg25+\":[\"hostgids\"],\"bGCQQ9\":[\"Hostgids\"],\"7PTDfe\":[\"Hostgidsen worden bij het project opgeslagen en met een witte achtergrond afgedrukt.\"],\"EW9rvn\":[\"Feedback van de host\"],\"y9DTlP\":[\"Hosts kunnen antwoorden inschakelen en de prompt aanpassen in de portaalinstellingen.\"],\"yY8wAv\":[\"Uren\"],\"zvDeDZ\":[\"Uren vanaf nu\"],\"EmxJlb\":[\"Hoe Vragen werkt en wat je ermee kunt.\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"DTQkD6\":[\"Hoeveel opnames verwacht je in je eerste jaar?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"Zeg het zoals jij het zou zeggen. Een datum, een seizoen, of dat je het nog niet weet.\"],\"/c3Xl4\":[\"https://youtu.be/y6jIf-kAYtQ\"],\"ACVscB\":[\"Ik heb het canvas toegepast.\"],\"wJCEin\":[\"Ik heb het doel toegepast.\"],\"L5eful\":[\"Ik heb binnenkort veel grote evenementen\"],\"Q53s6K\":[\"Ik heb de <0>voorwaarden gelezen en ga ermee akkoord\"],\"IVvH44\":[\"Ik heb ondersteuning voor een specifieke taal nodig\"],\"UTbk9h\":[\"Ik heb strikte privacygaranties nodig\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"Ik weet het over een week of twee\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"QSzGDE\":[\"Inactief\"],\"IroOSC\":[\"Als je hebt gezien dat gegevens zichtbaar zijn voor de verkeerde mensen, dat iemand toegang heeft die dat niet hoort te hebben, of dat er mogelijk een beveiligingslek is, gebruik dan ons <0>formulier voor beveiligingsmeldingen. Je melding komt dan bij een ander team terecht en wordt sneller opgepakt. Mail bij spoed naar <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"Als je tevreden bent met \",[\"objectLabel\"],\", klik dan op \\\"Goedkeuren\\\" om te laten zien dat je je gehoord voelt.\"],\"qtM5OH\":[\"Als je iets anders nodig hebt, maken we een voorstel voor jouw situatie.\"],\"mHvgOU\":[\"Verwachtte je toegang? Vraag de persoon die je heeft uitgenodigd om de uitnodiging opnieuw te sturen.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"kSoYmo\":[\"Als je je bij een bestaande organisatie wilt aansluiten, maak dan geen nieuwe aan. Je kunt hier per ongeluk terechtkomen door:\"],\"X2yiuT\":[\"Beeldstijl\"],\"QYnqWe\":[\"Afbeeldingen mogen maximaal \",[\"MAX_FILE_MB\"],\"MB zijn\"],\"zyr//t\":[\"Verbeter mijn instellingen\"],\"dylF+L\":[\"Verbeteringen\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactief\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portallink opnemen\"],\"hTwp/C\":[\"Inbegrepen uren opgebruikt\"],\"LYjZNH\":[\"Inbegrepen uren deze maand opgebruikt\"],\"JEvKqp\":[\"Onjuist of verzonnen\"],\"8aA4We\":[\"overgenomen van organisatie\"],\"C6W6w6\":[\"Begin\"],\"fr30H3\":[\"Innovator of hoger\"],\"sQpkks\":[\"inzicht \",[\"0\"]],\"3hJypY\":[\"Inzichten\"],\"MSVCjk\":[\"Instructies voor het genereren van het verificatieresultaat\"],\"fN5mkr\":[\"Integraties en export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Nieuw: Popcorn\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"B2Tpo0\":[\"Ongeldige e-mail\"],\"R7p7+o\":[\"Ongeldige uitnodigingslink\"],\"KhBSE/\":[\"Uitnodiging\"],\"oFgGAT\":[\"Er staan uitnodigingen voor je klaar. Accepteer om aan de slag te gaan.\"],\"MFKlMB\":[\"Uitnodigen\"],\"UwSCxN\":[\"Uitnodiging afgewezen\"],\"D1TqRz\":[\"Nodig externe medewerkers en waarnemers uit met eigen toegangsrollen.\"],\"ynskdH\":[\"Nodig leden uit om samen te werken aan projecten en gesprekken in deze werkruimte.\"],\"3iGwJw\":[\"Alleen op uitnodiging\"],\"W6+yFb\":[\"Mensen uitnodigen\"],\"iLWFzs\":[\"Nodig mensen uit voor \",[\"orgName\"]],\"lOslCN\":[\"Uitnodiging opnieuw verstuurd\"],\"7Nlmb6\":[\"Uitnodiging ingetrokken\"],\"gfMuvV\":[\"Uitnodiging verstuurd\"],\"5LFLMg\":[\"Uitnodiging verstuurd naar \",[\"email\"],\". Het project wordt gedeeld zodra ze meedoen.\"],\"2AL6ct\":[\"Uitnodiging verstuurd.\"],\"rL7peH\":[\"Uitnodiging verstuurd. Het project wordt gedeeld zodra ze meedoen.\"],\"CTWPKj\":[\"Nodig uit voor een werkruimte, of alleen voor de organisatie.\"],\"RXHza3\":[\"Nodig uit voor deze werkruimte, of alleen voor de organisatie.\"],\"fxXOSv\":[\"Uitnodigen en delen\"],\"d+Y+rP\":[\"Nodig je team uit\"],\"GA5TFo\":[\"Werkruimte op uitnodiging\"],\"M4oozP\":[\"uitgenodigd door \",[\"0\"]],\"voFazH\":[\"Uitnodigingen verlopen na 7 dagen. Vraag \",[\"inviterName\"],\" om een nieuwe te versturen.\"],\"ec+Yhb\":[\"Factuurbedrag, EUR\"],\"Nv38Sl\":[\"Factuur geregistreerd als betaald.\"],\"DTZqjh\":[\"Offline gefactureerd, geen Mollie-machtiging.\"],\"F7nA5/\":[\"Facturen\"],\"L7OkFI\":[\"Facturatie\"],\"1xMiTU\":[\"IP-adres\"],\"7eZuvg\":[\"Is dit voor intern gebruik binnen je organisatie, of voor een externe organisatie?\"],\"6u5tk8\":[\"Is deze werkruimte voor intern gebruik binnen je organisatie, of voor een externe organisatie die eigenaar is van haar data?\"],\"eeAl1v\":[\"Factuur uitgeven\"],\"08FN6B\":[\"Betaallink uitgeven\"],\"Gglww2\":[\"Het heeft een eigen abonnement en eigen plaatsen, niet het gedeelde abonnement van \",[\"0\"],\". Wijzigingen hier gelden alleen voor deze werkruimte.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"5dxEAB\":[\"Het lijkt erop dat u nog geen rapport voor dit project heeft. Genereer er een om een overzicht van uw gesprekken te krijgen.\"],\"ZYXJus\":[\"Misschien is hij al gebruikt of verlopen. Als je e-mail geverifieerd is, log dan in om door te gaan.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italiaans (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"1BIvTp\":[\"Italiaans voor je belangrijkste workflows\"],\"KFXip/\":[\"Jan\"],\"r6wcTL\":[\"jan@voorbeeld.com\"],\"0wdd7X\":[\"Aansluiten\"],\"ADF305\":[\"Lid worden van \",[\"0\"],\" als <0>admin? Het verschijnt daarna meteen in je zijbalk.\"],\"C6DnOz\":[\"Word eerst zelf admin van \",[\"0\"],\" om anderen toe te voegen.\"],\"q1E+AA\":[\"Lid worden van \",[\"0\"],\"?\"],\"agqQk1\":[\"Word lid van \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Lid worden als admin\"],\"TCEFVm\":[\"Lid worden als admin?\"],\"j4IJHz\":[\"Eerst lid worden\"],\"eI7D2K\":[\"Aansluiten voor support\"],\"oopH2X\":[\"Aansluiten voor support (24 uur)\"],\"Q31z/2\":[\"Word lid van onze Slack-community\"],\"s/jfrO\":[\"Word lid van deze organisatie om werkruimtes te ontdekken en samen te werken met je team.\"],\"iVHzoM\":[\"Doe mee aan deze portalsessie\"],\"BICpzG\":[\"Sluit je als beheerder aan bij deze werkruimte om te helpen met support. De klant moet support-toegang voor medewerkers hebben aangezet. Je toegang stopt automatisch na 24 uur.\"],\"gePQ/O\":[\"Word lid van deze werkruimte om samen te werken aan gesprekken, inzichten te delen en samen rapporten te maken.\"],\"IKAMA9\":[\"Lid geworden van \",[\"subjectName\"]],\"Glgamf\":[\"Toegevoegd als admin\"],\"l4EwDk\":[\"Deelgenomen aan het gesprek\"],\"NiZZRh\":[\"Ga naar\"],\"vKhj0S\":[\"Ga op tablet en desktop naar het nieuwste chatbericht.\"],\"uocCon\":[\"Gewoon een momentje\"],\"xOTzt5\":[\"zojuist\"],\"TXB5vy\":[\"Eén.\"],\"mmEyCQ\":[\"Net een preview gemaakt. Even geduld.\"],\"Ulg4y+\":[\"Just read. Give it a moment.\"],\"VqAl2y\":[\"Net bijgewerkt. Even geduld.\"],\"UQYK3R\":[\"Net begonnen\"],\"U0T6D0\":[\"Praat of typ gewoon op een natuurlijke manier. Uw bijdrage gaat rechtstreeks naar ons productteam en helpt ons echt om dembrane te verbeteren. We lezen alles.\"],\"hK3t2g\":[\"Alleen jij, plus de beheerders van de werkruimte.\"],\"rnwfSX\":[\"Voorlopig alleen jij.\"],\"lgdsfK\":[\"Alleen jij. Deel met specifieke mensen →\"],\"OePlDL\":[[\"tier\"],\" houden tot een datum\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"4OjqAQ\":[\"Verder bewerken\"],\"RQElWR\":[\"Behouden\"],\"B3WAHx\":[\"Licentie houden\"],\"uHdpk+\":[\"Mijn abonnement behouden\"],\"Qzyw+2\":[\"In behandeling houden\"],\"1KXAJa\":[\"Houd opnames wakker\"],\"II//jO\":[\"Houd dit canvas up-to-date\"],\"KwiMrX\":[\"Werk door terwijl audio op de achtergrond wordt geüpload.\"],\"ff6h/m\":[\"Werk door terwijl audio uploadt, doorzoek je tags en bekijk de transcriptievoortgang. Verbeterde audioweergave en slimmere gespreksselectie maken analyse eenvoudiger.\"],\"0BWuwA\":[\"Houdt het niveau tot de datum hieronder en gaat daarna terug naar Free, tenzij ze een abonnement nemen.\"],\"4q0kY7\":[\"Kernbegrippen\"],\"dymfAn\":[\"Kernbegrippen vertellen de transcriptie hoe de namen en woorden die in dit project belangrijk zijn geschreven worden.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Taal\"],\"swJ0V2\":[\"Laatste audio\"],\"rTwgPH\":[\"Vorige maand\"],\"1ZaQUH\":[\"Achternaam\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"QEU41f\":[\"Laatst bijgewerkt \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Laatste\"],\"lchnsl\":[\"Nieuwste release\"],\"wv+L3B\":[\"Laatste rapport\"],\"zwWKhA\":[\"Meer informatie\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"wpBe20\":[\"Nu verlaten\"],\"qvRaz1\":[\"Werkruimte verlaten\"],\"J8VWes\":[\"Laat je e-mailadres achter, dan nemen we contact met je op.\"],\"UlKSMd\":[\"Vertrokken\"],\"Mx+KL8\":[\"Rechtsgrondslag\"],\"vRXsmZ\":[\"Rechtsgrondslag\"],\"CopiEV\":[\"Rechtsgrondslag opgeslagen\"],\"nc/jNe\":[\"Naam rechtspersoon\"],\"oK9656\":[\"Aan de slag!\"],\"8zGcQ2\":[\"Laten we je eerste gesprek horen.\"],\"qnAazR\":[\"Laten we het over het canvas \\\\\\\"\",[\"0\"],\"\\\\\\\" hebben.\"],\"OQ/Al+\":[\"Laten we het over dit canvas hebben.\"],\"VxapXh\":[\"bibliotheek\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"gkv8iG\":[\"Kenteken\"],\"u/z4+7\":[\"Licentie ingetrokken\"],\"snyG+w\":[\"Licenties\"],\"/NleHL\":[\"Licenties verleend\"],\"JbbFA4\":[\"Levenslange limiet\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link gekopieerd\"],\"H+AO1D\":[\"Link naar het privacybeleid dat deelnemers te zien krijgen\"],\"g4/qsV\":[\"Toon mijn gesprekken\"],\"k3d/oJ\":[\"Toon de gesprekken in dit project.\"],\"+L0OEa\":[\"Gesprekken op een rij zetten\"],\"gWVReV\":[\"Documentatiepagina's opzoeken\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live en recent\"],\"uH9GEL\":[\"Live agent uitvoermodus\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live deelnemersstroom\"],\"O0rtUS\":[\"Live deelnemerstrechter: aantallen voor gescand, instellen, op opnamepagina, live en voltooid\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"hQE9uK\":[\"Live opnames, voortgang van transcriptie en fouten verschijnen hier zodra deelnemers in de portal beginnen met opnemen.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live verbinding verbroken. We werken minder vaak bij tot de verbinding terug is.\"],\"PPSKvH\":[\"Live verbinding onderbroken. We halen updates nu periodiek op.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Meer laden\"],\"yQE2r9\":[\"Bezig met laden\"],\"participant.verify.instructions.loading\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"92/9LJ\":[\"Laadindicatoren en foutmeldingen geven duidelijkere feedback.\"],\"YyMToN\":[\"Leden laden\"],\"IG63hz\":[\"Methodologie laden\"],\"FUK4WT\":[\"Microfoons laden...\"],\"Xan9/v\":[\"Projecten laden...\"],\"GtQzAW\":[\"Deze chat laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"eRq8Ag\":[\"Werkruimtes laden…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"G2fuEb\":[\"Vergrendeld\"],\"pefb7Y\":[\"Gesprek vergrendeld, upgrade om te bekijken\"],\"z32CuS\":[\"Vergrendeld om bij de uitnodiging te passen. Wil je een ander adres gebruiken? Vraag de admin om dat e-mailadres opnieuw uit te nodigen.\"],\"sQia9P\":[\"Inloggen\"],\"L3Q5Lc\":[\"Log in bij \",[\"resolvedWorkspaceName\"],\" om verder te gaan.\"],\"KC88rc\":[\"Uitloggen en het uitgenodigde e-mailadres gebruiken\"],\"7Zt++i\":[\"Dit doorgeven aan het dembrane-team\"],\"z0t9bb\":[\"Inloggen\"],\"LM/dWU\":[\"Inloggen | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo verwijderd\"],\"MjfaMh\":[\"Logo bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"FTbR8B\":[\"Langste eerst\"],\"jWXlkr\":[\"Langste eerst\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Batterij bijna leeg\"],\"tX9/Xs\":[\"een werkruimte privé te maken\"],\"QqxHAZ\":[\"Maak het privé om alleen met specifieke mensen te delen. Privéprojecten vereisen het innovator-abonnement of hoger.\"],\"icpEdc\":[\"Privé maken\"],\"pCYZVV\":[\"Zichtbaar maken voor de hele werkruimte\"],\"wckWOP\":[\"Beheren\"],\"lXmPSL\":[\"Aanwezigen beheren\"],\"z0ndiD\":[\"Beheer facturatieaccounts, betalingen en upgradeverzoeken voor werkruimtes.\"],\"hB02vO\":[\"Leden beheren\"],\"WLAeKT\":[\"Facturatie van organisatie beheren\"],\"mrenWs\":[\"Templates beheren\"],\"2VeSf/\":[\"Training beheren\"],\"C0hP/3\":[\"Beheer het eigenaarschap van werkruimtes, inclusief interne en externe data-eigenaren.\"],\"waFx9W\":[\"Beheerd\"],\"DlYfyz\":[\"Beheerde accounts betalen op factuur, niet met een kaart. Een account beheerd maken houdt alle functies aan en zet automatisch incasseren, aanmaningen en verlopen uit. Wijs een dembrane-accountmanager toe zodat de klant weet bij wie hij terechtkan.\"],\"bxxIPf\":[\"Beheerde facturatie\"],\"usR1Ju\":[\"Beheerd door dembrane\"],\"/FWPUc\":[\"Beheert leden, werkruimtes en organisatie-instellingen.\"],\"onllUU\":[\"Alles markeren als gelezen\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"E8m+Rc\":[\"Markeer als aanwezig\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"5GPcf9\":[\"Markeren als ongelezen\"],\"TyonBx\":[\"Markeer als voltooid\"],\"MCipZC\":[\"Factuur markeren als betaald\"],\"AHBWqd\":[\"Training als voltooid markeren\"],\"Ofm5QB\":[\"Markeert \",[\"orgName\"],\" als partner. De werkruimtes geven bij het aanmaken zelf aan of ze voor intern of extern klantgebruik zijn.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Met MCP-verbindingen kan je agent projecten vinden, gesprekken doorzoeken, transcripties lezen en documentatie raadplegen, met organisatie-instellingen en expliciete toestemming.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Vergadernotities\"],\"NwiNTb\":[\"lid\"],\"OvoEq7\":[\"Lid\"],\"deUR+U\":[\"Lid verwijderd\"],\"GnG6Oy\":[\"leden\"],\"wlQNTg\":[\"Leden\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Geheugen\"],\"u418B7\":[\"Herinnering verwijderd\"],\"ltnOth\":[\"Bericht van het dembrane team\"],\"YcaR2g\":[\"Bericht is te lang (maximaal 32.000 tekens). Voeg gesprekken toe of maak je bericht korter.\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologieën\"],\"m8tKkP\":[\"Methodologie\"],\"hml7oE\":[\"Methodologie aangemaakt\"],\"l1/lbT\":[\"Methodologie opgeslagen\"],\"e6I7Ej\":[\"Methodologie bijgewerkt\"],\"ADm81a\":[\"Microfoon geblokkeerd\"],\"+WoTL8\":[\"Microfoon getest\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"azjxk1\":[\"Antwoordt niet op de vraag\"],\"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\"],\"f8jrkd\":[\"meer\"],\"2FYpfJ\":[\"Meer\"],\"JcD7qf\":[\"Meer acties\"],\"rAPyBz\":[\"Betrouwbaarder anonimiseren en opnemen\"],\"MmhZK+\":[\"Betrouwbaardere gesprekssamenvattingen\"],\"YJLckp\":[\"Meer dan 1000.\"],\"MDHqSE\":[\"Meer dan 40.\"],\"UdGNo8\":[\"Nuttigere chatcontext\"],\"QWdKwH\":[\"Verplaatsen\"],\"3qp1VW\":[\"\\\"\",[\"0\"],\"\\\" verplaatsen naar \",[\"targetWorkspaceName\"],\"? Leden van de huidige werkruimte verliezen hun toegang.\"],\"ZU6coV\":[[\"0\"],\" van \",[\"1\"],\" naar \",[\"tier\"],\" verplaatsen?\"],\"8Pgx5L\":[\"Haal \",[\"name\"],\" van facturatie door dembrane. Kies wat er met hun plan gebeurt.\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"vSmX52\":[\"Verplaats meerdere gesprekken tussen projecten en projecten tussen werkruimtes.\"],\"cK3qrq\":[\"Verplaatsingsgeschiedenis\"],\"nthowT\":[\"Project verplaatsen\"],\"WnyjBv\":[\"Projecten verplaatsen\"],\"7TYQRA\":[\"Dit project naar de geselecteerde werkruimte verplaatsen?\"],\"fwyWPz\":[\"Verplaats dit project, met de gesprekken en rapporten, naar een werkruimte die je beheert. Je moet admin of eigenaar van de doelwerkruimte zijn.\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"zCpAZ1\":[\"Naar een andere werkruimte verplaatsen\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"5MzfrX\":[\"Analyse in meerdere stappen.\"],\"MK3wTj\":[\"Meertalige transcriptie en langere gespreksantwoorden zijn verbeterd.\"],\"uzUz9i\":[\"Meerdere talen\"],\"j7HfhZ\":[\"Moet minstens 10 minuten in de toekomst zijn\"],\"5hOInR\":[\"Mijn toegang\"],\"en+4fS\":[\"Mijn sjablonen\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"aFFbp6\":[\"Noem het naar de klant, opdracht of het doel.\"],\"KxAfaR\":[\"Noem het naar het onderwerp, de opdracht of de vraag die je verkent.\"],\"ztAdhw\":[\"Naam bijgewerkt\"],\"vfJR5V\":[\"Geef je organisatie een naam om te beginnen. Je kunt daarna meteen leden uitnodigen, of later via instellingen lid worden van andere organisaties.\"],\"5cahWP\":[\"Geef je organisatie een naam. Je kunt daarna mensen uitnodigen, of dat later via instellingen doen.\"],\"pfbjQ0\":[\"Geef je werkruimte een naam.\"],\"c5Xt89\":[\"Naam Z-A\"],\"WcgzjF\":[\"naam@voorbeeld.com\"],\"CLjxnx\":[\"naam@voorbeeld.com, naam2@voorbeeld.com\"],\"AQjK0x\":[\"Werkwijzen met een naam die je team opnieuw kan gebruiken.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"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\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"Nieuw\"],\"mdHOWX\":[\"Nieuwe chat over dit canvas\"],\"00MiO6\":[\"Nieuwe chatmodi en vraagsuggesties ondersteunen de analyse.\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"u2uElg\":[\"Nieuwe gesprekken toegevoegd sinds dit rapport\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"/yIxDf\":[\"Nieuwe functies\"],\"QnAEjj\":[\"Nieuwe functies, verbeteringen en oplossingen in dembrane.\"],\"CSz4y/\":[\"Nieuwe look, nieuwe functies\"],\"UPRdvV\":[\"Nieuwe methodologie\"],\"MVaH2c\":[\"Nieuwe organisatie\"],\"/nT6AE\":[\"Nieuw wachtwoord\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"gKi+a/\":[\"Nieuw project\"],\"wzIR5D\":[\"Nieuw project | dembrane\"],\"C5tnUD\":[\"Nieuwe projecten voegen dembrane niet meer als standaard transcriptieterm toe.\"],\"z6wcHz\":[\"Nieuw rapport\"],\"ZfVx+G\":[\"Nieuw niveau\"],\"curoK5\":[\"Nieuwe werkruimte\"],\"cTUByn\":[\"Nieuwste eerst\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.next\":[\"Volgende\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"1vEADD\":[\"Volgende factuur\"],\"ljNSDv\":[\"Volgende: kies een tijd\"],\"1UzENP\":[\"Nee\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"oPoLg+\":[\"Geen toegang\"],\"VHfLAW\":[\"Geen accounts\"],\"riwuXX\":[\"Geen acties gevonden\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"Xmk0PY\":[\"Nog geen factureringsaccount. Mail naar <0>support@dembrane.com en we stellen er een in.\"],\"PVAfDk\":[\"Geen factureringsaccounts voldoen aan de huidige filters.\"],\"xz3y0A\":[\"Nog geen canvassen\"],\"d2Jf1f\":[\"Geen wijziging\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"9nWRSv\":[\"Geen chats gevonden voor je zoekopdracht.\"],\"r3iaI0\":[\"Nog geen chats.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"PNz5nE\":[\"Geen gesprekken voldoen aan deze filters.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"YnWe3z\":[\"Nog geen gesprekken.\"],\"GKpO3x\":[\"Nog geen gesprekken. Je kunt nu een rapport plannen en gesprekken worden opgenomen zodra ze zijn toegevoegd.\"],\"oaDwXD\":[\"Geen standaard ingesteld (door client beheerd geldt)\"],\"dl4q4O\":[\"geen vervaldatum\"],\"7Ad0TM\":[\"Geen expliciete delingen. Werkruimtebeheerders hebben nog steeds toegang.\"],\"Fb9N7E\":[\"Nog geen extern geleide organisaties.\"],\"cZ8DR9\":[\"Nog geen feedback.\"],\"cqoc0B\":[\"Geen verdere kosten\"],\"bl3Q4e\":[\"Nog geen doel. Stel er hier een in, of laat de assistent je erover interviewen in de chat.\"],\"wuFH13\":[\"Er zijn geen uitnodigingen verstuurd. Bekijk de lijst hieronder.\"],\"rwtE4m\":[\"Geen logo ingesteld. De standaard van dembrane wordt gebruikt.\"],\"4TVVsS\":[\"Geen resultaten\"],\"IntpVZ\":[\"Geen resultaten gevonden\"],\"JuBV6F\":[\"Nog geen leden.\"],\"A4D9sY\":[\"Nog geen methodologieën.\"],\"gr5hJS\":[\"Er was geen microfoon beschikbaar. Controleer of er een is aangesloten en niet ergens anders in gebruik is.\"],\"UfnqDf\":[\"Geen naam\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"XOpCfj\":[\"Geen nieuwe uitnodigingen nodig. Bekijk de lijst hieronder.\"],\"nZsRCa\":[\"Nog niemand toegevoegd\"],\"VylT70\":[\"Nog niemand anders in deze organisatie\"],\"xp1ZnX\":[\"Nog niemand hier.\"],\"wca+1p\":[\"Niemand wordt automatisch geblokkeerd bij niet-betalen. Houd mislukte betalingen hier in de gaten en volg ze op.\"],\"6iedjR\":[\"Niemand voldoet aan dat filter.\"],\"RJSUJO\":[\"Nog niemand in de organisatie.\"],\"ZwZtAi\":[\"Nog niemand in deze organisatie.\"],\"/+Nxaa\":[\"Nog niemand gedeeld\"],\"sAu4UE\":[\"Nog niemand in de werkruimte.\"],\"/ksKg9\":[\"Geen organisatierol. Toegang via werkruimte-uitnodigingen.\"],\"laeweW\":[\"Geen betalingen voldoen aan het filter.\"],\"iV2Or0\":[\"Nog geen betalingen.\"],\"cqfchi\":[\"Geen pdf beschikbaar voor deze factuur.\"],\"qPbs1l\":[\"Geen openstaande uitnodigingen\"],\"X0DUuO\":[\"Geen projectactiviteit deze periode.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"YzI8q2\":[\"Geen projecten gevonden.\"],\"m0I2ba\":[\"Geen recente activiteit\"],\"9Y/ZE7\":[\"Nog geen verwijsafspraken.\"],\"Cu/Lih\":[\"Er zijn nog geen release notes.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"1iQvuD\":[\"Nog geen rapporten\"],\"Ev2r9A\":[\"Geen resultaten\"],\"pm345e\":[\"Geen selecteerbare gesprekken\"],\"deovLP\":[\"Nog geen samenvatting\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"KE6RCJ\":[\"Geen templates gevonden voor {searchQuery}\"],\"ndv8BV\":[\"Geen trainingen gevonden met deze filters.\"],\"JmSs4s\":[\"Nog geen trainingen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"Nog geen verbruik deze cyclus.\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"Z9sn1g\":[\"Nog geen versie\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"AtHA/x\":[\"Nog geen werkruimtetoegang\"],\"nnCUYC\":[\"Geen werkruimte gekozen. Ze worden toegevoegd aan \",[\"orgName\"],\" en kunnen zelf werkruimtetoegang aanvragen.\"],\"wn5bQU\":[\"Geen wijziging van werkruimterol. Voeg deze persoon toe aan de organisatie en nodig ze daarna opnieuw uit vanuit de werkruimte.\"],\"tPEiUj\":[\"Er worden op dit moment geen werkruimtes uit deze organisatie met je gedeeld.\"],\"pxmfsY\":[\"Geen werkruimtes komen overeen met \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"Niets gepland\"],\"PjeFWm\":[\"Geen geldig e-mailadres.\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Niet nu\"],\"Ua2NxX\":[\"Geen beheerde facturatie. Zet op beheerd om dit account op het \",[\"tier\"],\"-niveau te factureren, zonder automatische afschrijvingen via Mollie.\"],\"07Vguj\":[\"Wordt niet verlengd\"],\"vaVAp0\":[\"Niet ingepland\"],\"MTqQMG\":[\"Niet ingesteld\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Weet ik nog niet.\"],\"kBpuXT\":[\"Deze niet\"],\"vbpAZQ\":[\"Niet getraind\"],\"/hpEcX\":[\"notitie\"],\"1DBGsz\":[\"Notities\"],\"RYtZxa\":[\"Notities voor ons team\"],\"budBGD\":[\"Notities die de assistent bijhoudt over hoe je graag werkt, opgeslagen tijdens je chats. Alleen jij ziet ze. Verwijder alles wat je niet wilt bewaren.\"],\"NdAad3\":[\"Notities die de assistent vanuit chats over dit project heeft opgeslagen. Iedereen die in dit project chat deelt ze.\"],\"WAy8m5\":[\"Notities die de assistent vanuit chats over deze werkruimte heeft opgeslagen. Iedereen in de werkruimte deelt ze.\"],\"DZMptz\":[\"Op dit moment niets van dembrane.\"],\"DN72IZ\":[\"Hier is nog niets voor je.\"],\"yFnB+H\":[\"hier nog niets\"],\"0IdomT\":[\"Er wordt niets verstuurd totdat je het verstuurt. Pas hieronder eerst aan wat je wilt.\"],\"we3tJT\":[\"Niets komt overeen met het filter.\"],\"610qM/\":[\"Nog niets opgeslagen. De assistent voegt hier notities toe terwijl er wordt gechat.\"],\"6rAlvZ\":[\"Nog niets opgeslagen. De assistent voegt hier notities toe terwijl je chat.\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"hGA9Wy\":[\"Waarnemer\"],\"phUtHZ\":[\"Waarnemers (gratis)\"],\"k9cwCQ\":[\"Waarnemers zijn gratis en alleen-lezen, en alleen voor werkruimtes van externe klanten. Ze kunnen de werkruimte bekijken, maar niet chatten, rapporten genereren of bewerken. Wijzig hun rol naar Extern om ze meer te laten doen.\"],\"RfY3gN\":[\"Observers zijn gratis gasten die alleen kunnen meelezen. Wil je ze laten bewerken? Verwijder ze en nodig ze opnieuw uit als lid.\"],\"JIE4kF\":[\"Waarnemers zijn alleen beschikbaar in werkruimtes voor een externe klant. Kies alleen werkruimtes van externe klanten, of kies een andere rol.\"],\"Bdtwnw\":[\"uit\"],\"az8lvo\":[\"Uit\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oudste eerst\"],\"9+6THi\":[\"Oudste eerst\"],\"Fdp03t\":[\"aan\"],\"Z5HWHd\":[\"Aan\"],\"Hktelz\":[\"Facturatie wordt beheerd door dembrane. Overschakelen naar self-serve behoudt het niveau en toont de klant de checkout om kaartbetaling in te stellen.\"],\"er1mH/\":[\"Op opnamepagina\"],\"participant.verify.instructions.revise.artefact\":[\"Heb je het besproken? Klik op \\\"Herzien\\\" om \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"participant.verify.instructions.read.aloud\":[\"Lees \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"lKCG/O\":[\"Één groot evenement aan het eind van het jaar\"],\"O3G8il\":[\"Één dag in oktober\"],\"qvLmaf\":[\"Eén kleine letter\"],\"+P5Okg\":[\"Eén cijfer\"],\"m5rZjl\":[\"Eén symbool\"],\"MKUgK1\":[\"Eén hoofdletter\"],\"qitPxp\":[\"Eenmalig\"],\"J6n7sl\":[\"Actief\"],\"conversation.ongoing\":[\"Actief\"],\"yAVA7C\":[\"Lopende gesprekken\"],\"a//PzZ\":[\"Verander deze instelling alleen in overleg met de verantwoordelijke persoon(nen) voor de bescherming van gegevens binnen uw organisatie.\"],\"z7dMhl\":[\"Je kunt alleen afbeeldingen toevoegen\"],\"uaB4AS\":[\"Alleen organisatiebeheerders en eigenaren kunnen werkruimtes aanmaken. Vraag een beheerder van je organisatie om er een aan te maken, of om je eerst te promoveren.\"],\"0WLwiw\":[\"Alleen mensen die al in deze werkruimte zitten, kunnen worden toegevoegd. Nodig ze eerst uit voor de werkruimte als ze hier nog niet zijn.\"],\"xbDpkO\":[\"Alleen de mensen die je toevoegt of uitnodigt, kunnen het zien.\"],\"K/CPkL\":[\"Alleen bij het vastleggen van een factuur die al buiten het systeem is betaald.\"],\"fKQbMI\":[\"Alleen werkruimtebeheerders en de mensen die je uitnodigt, kunnen dit project openen.\"],\"BKONOC\":[\"Alleen werkruimtebeheerders kunnen de rechtsgrondslag wijzigen.\"],\"C/Sx14\":[\"Alleen werkruimtebeheerders kunnen deze instellingen wijzigen. Vraag een beheerder als er iets bijgewerkt moet worden.\"],\"4UuIbT\":[\"Alleen jij kunt deze werkruimte zien.\"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Accountacties openen\"],\"tcgf5/\":[\"Alles openen\"],\"yCDcIF\":[\"Open chatdocumentatie\"],\"uIKeEf\":[\"Gesprek openen\"],\"3iEiGI\":[\"Open gesprekken via directe links.\"],\"EUQ7ko\":[\"Open documentatie\"],\"aRGGej\":[\"Open voor deelname\"],\"CD3rbs\":[\"Hostgids openen\"],\"f04uGY\":[\"Openen in Bibliotheek\"],\"c9rlQI\":[\"Mollie-dashboard openen\"],\"iZD9CK\":[\"Organisatie openen\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Opname bekijken\"],\"urJv1o\":[\"Open tabbladen herstellen na een nieuwe versie in plaats van op een oude pagina vast te lopen.\"],\"FBPD+d\":[\"Open \",[\"0\"],\" vanaf hier.\"],\"OG3wju\":[\"Open de chat\"],\"828iLy\":[\"Open de oorspronkelijke uitnodigings-e-mail en klik daar op de link, of vraag de uitnodiger om een nieuwe uitnodiging te sturen.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open de probleemoplossingsgids\"],\"m9eUZO\":[\"Open voor de werkruimte\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"f/LR+l\":[\"Open Wat is nieuw vanuit de zijbalk en bekijk de rondleiding over organisaties, werkruimtes en projecten.\"],\"Gc/l1s\":[\"Werkruimte openen\"],\"F7e1nt\":[\"Werkruimteacties openen\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"rPRgw+\":[\"Zet experimentele functies aan en help dembrane vormgeven. Deze functies kunnen op elk moment veranderen of verdwijnen.\"],\"LLAa/9\":[\"Optioneel\"],\"ZFIvWo\":[\"Optioneel (valt terug naar Engels)\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"xam4uE\":[\"Optionele vraag \",[\"0\"],\" van \",[\"1\"]],\"0OspM/\":[\"Optioneel. Waar deze werkruimte voor is.\"],\"0zpgxV\":[\"Opties\"],\"BzEFor\":[\"of\"],\"0EffTH\":[\"Of kies een tijd\"],\"7r2pfW\":[\"Of liever direct chatten?\"],\"1h45Hu\":[\"Of schrijf uw eigen\"],\"v2MBz4\":[\"Alleen organisatie\"],\"LB3Kje\":[\"Organisatie\"],\"sezvMj\":[\"Organisatie | dembrane\"],\"9L7xZr\":[\"Organisatieaccount\"],\"rlfKu+\":[\"Organisatiebeheerders kunnen via de ledenpagina lid worden van privéwerkruimtes.\"],\"93UwXg\":[\"Organisatiebeheerders kunnen via de ledenpagina lid worden van privéworkspaces. Toegangsopties leggen nu uit wanneer je eerst lid van een workspace moet worden.\"],\"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.\"],\"OMujDz\":[\"Organisatieleden laden sneller.\"],\"m9HLnV\":[\"Organisatienaam\"],\"IvGxhL\":[\"Organisatie niet gevonden\"],\"B38pCE\":[\"Alleen organisatie\"],\"kzWAph\":[\"Organisatiegebruik\"],\"GoZkew\":[\"Organisaties\"],\"usabod\":[\"Organisaties | dembrane\"],\"qdq0Jp\":[\"Organisaties aangemaakt door mensen die externe samenwerkers van een partner zijn. Een signaal dat ze mogelijk hun eigen abonnement willen.\"],\"Y3LC1c\":[\"Organisaties, workspaces en projecten\"],\"+4woA3\":[\"Orden projecten in werkruimtes binnen je organisatie.\"],\"pEAPjl\":[\"Organiseer werk in workspaces, nodig externe samenwerkers en waarnemers uit en beheer toegang vanuit de nieuwe zijbalk. Verplaats gesprekken tussen projecten en projecten tussen workspaces.\"],\"+g4lbW\":[\"Organiseer je werk in organisaties, workspaces en projecten, met meer controle over wie toegang heeft.\"],\"ucgZ0o\":[\"Organisatie\"],\"/IX/7x\":[\"Anders\"],\"x0FjQV\":[\"Onze eerste grote release\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"NTkmOk\":[\"Facturering voor overschrijding van toepassing\"],\"6KkwPT\":[\"Overschreven voor dit project\"],\"AR/qbs\":[\"Overschrijven voor dit project\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"oDAEQq\":[\"Eigendom\"],\"OwPQJt\":[\"Eigendom is vergrendeld. Neem contact op met support om over te dragen.\"],\"HSAzUy\":[\"Eigenaar-organisatie\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v4nCHK\":[\"Betaald\"],\"uneeEC\":[\"deels afgerond\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"hRcUJQ\":[\"Naam deelnemer\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"Nqs/bT\":[\"Introductiekaarten voor deelnemers hebben duidelijkere teksten en gecorrigeerde vertalingen.\"],\"CmOBUh\":[\"Deelnemers abonneren op updates\"],\"DbvvEo\":[\"Verificatie van deelnemers\"],\"MZHPuB\":[\"Deelnemers\"],\"fVlUox\":[\"Deelnemers kunnen tijdens een opname om een antwoord vragen.\"],\"Ya1KaH\":[\"Deelnemers kunnen tijdens het opnemen een antwoord vragen en het lezen terwijl het verschijnt. Hosts kunnen antwoorden inschakelen en de prompt aanpassen in portaalinstellingen.\"],\"HxF3Iz\":[\"Deelnemers kunnen uitkomsten verifiëren en antwoorden verfijnen.\"],\"ezpFHx\":[\"Deelnemers kunnen uitkomsten verifiëren en antwoorden verfijnen. Nieuwe chatmodi en suggesties ondersteunen analyse, en tweefactorauthenticatie voegt een extra inlogoptie toe.\"],\"JT0fPF\":[\"Deelnemers krijgen een herinnering om te verifiëren voordat ze een gesprek beëindigen.\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partnerorganisatie\"],\"LkuJMH\":[\"Partnerwerkruimte, apart gefactureerd en geen onderdeel van het plan van de organisatie.\"],\"qC5k4V\":[\"Partnerwerkruimte, apart gefactureerd van de organisatie.\"],\"8ZsakT\":[\"Wachtwoord\"],\"zJx6Vx\":[\"Wachtwoord gewijzigd\"],\"PxRsoo\":[\"Wachtwoord voldoet niet aan de vereisten.\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"KXsZLF\":[\"Updates pauzeren\"],\"URAE3q\":[\"Gepauzeerd\"],\"XaA5fF\":[\"Gepauzeerd.\"],\"6Dmao4\":[\"Gepauzeerd. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Nu betalen\"],\"VwkrOQ\":[\"Betalende omzet\"],\"VESsDr\":[\"Betalende omzet deze maand\"],\"pJxzaT\":[\"Betaling mislukt\"],\"/CNehZ\":[\"Bedrag betaallink, EUR\"],\"GfJaff\":[\"Betaallink uitgegeven.\"],\"ENEPLY\":[\"Betaalmethode\"],\"sni5ir\":[\"Betalingskenmerk\"],\"Kd2B1D\":[\"De betaling is gelukt. Je plan is up-to-date.\"],\"S48xcO\":[\"in behandeling\"],\"UbRKMZ\":[\"In afwachting\"],\"EaYDGF\":[\"Openstaande toegangsverzoeken\"],\"V1wW5o\":[\"Actie vereist\"],\"sU2oO4\":[\"Openstaande uitnodigingen\"],\"GC714A\":[\"Openstaande uitnodigingen | dembrane\"],\"gPRsPw\":[\"personen\"],\"1wdjme\":[\"Personen\"],\"t9qtWL\":[\"Personen met toegang\"],\"Uoqcz2\":[\"Resultaten per ontvanger:\"],\"hkffer\":[\"Toegang per werkruimte\"],\"SrVzRe\":[\"Procent\"],\"NtQvjo\":[\"Periode\"],\"D0meML\":[\"persoon\"],\"t4wIPl\":[\"Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"zmwvG2\":[\"Telefoon\"],\"B8mlc2\":[\"Kies een datum\"],\"8hUAfY\":[\"Kies een tijd\"],\"rwgOir\":[\"Kies nu een moment\"],\"635Oq4\":[\"Kies een tijd met \",[\"host\"],\".\"],\"PYDbNJ\":[\"Kies een account\"],\"hZjgId\":[\"Kies minstens één werkruimte om de uitnodiging te versturen.\"],\"NCubup\":[\"Kies iemand uit je organisatie of typ een e-mailadres om uit te nodigen.\"],\"m+EMny\":[\"Kies er een\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"U1Tudq\":[\"Pilotlimiet bereikt\"],\"qVkGWK\":[\"Vastpinnen\"],\"u8qC4w\":[\"Project vastpinnen\"],\"S+WiJ3\":[\"Pin sjablonen hier vast voor snelle toegang.\"],\"YIuMHE\":[\"Pin maximaal drie projecten bovenaan je projectlijst.\"],\"w1aJIz\":[\"Pin je meestgebruikte templates direct in chat.\"],\"kNiQp6\":[\"Vastgezet\"],\"LdWQ+0\":[\"Vastgepind is vol (max 5)\"],\"EC6BHi\":[\"Vastgezette projecten\"],\"RimR35\":[\"Vastgepinde sjablonen\"],\"afV5A2\":[\"Plan eindigt\"],\"Iqh0Uv\":[\"Gepland\"],\"lWy5a1\":[\"Plannen\"],\"PI95wJ\":[\"Plant, verzamelt en controleert het eigen werk over veel gesprekken.\"],\"PKrSWk\":[\"Accepteer de voorwaarden om door te gaan.\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"ZhyvmA\":[\"Log in om door te gaan.\"],\"MXEkrp\":[\"Neem je reactie op door op de knop \\\"Record\\\" hieronder te klikken. Je kunt ook in tekst reageren door op het teksticoon te klikken.\\n**Houd dit scherm verlicht**\\n(zwart scherm = niet aan het opnemen)\"],\"Lu1j4b\":[\"Neem je reactie op door op de knop \\\"Record\\\" hieronder te klikken. Je kunt ook in tekst reageren door op het teksticoon te klikken.\\n**Houd dit scherm verlicht**\\n(zwart scherm = niet aan het opnemen).\\nJe transcriptie wordt geanonimiseerd en je host kan niet naar je opname luisteren.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"6MncU0\":[\"plus werkruimtebeheerders\"],\"rhEYMw\":[\"PNG, JPEG of WebP. Wordt bijgesneden tot een cirkel.\"],\"jjdudv\":[\"Slecht antwoord\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Populair\"],\"uRFMMc\":[\"Portal inhoud\"],\"ivjxif\":[\"Portalbeschrijving\"],\"oNb5Ox\":[\"portal-editor\"],\"694+8E\":[\"Portaalbewerker\"],\"qVypVJ\":[\"Portaal-editor\"],\"OZYxCC\":[\"Afsluitbericht portal\"],\"FNuwSz\":[\"Portaltaal\"],\"gKSdKz\":[\"Portal open voor nieuwe gesprekken\"],\"XfoCxn\":[\"Portaaloverzicht\"],\"fSWnrh\":[\"Portaalvoorbeelden en ondersteunende afbeeldingen worden correct weergegeven.\"],\"qLWG8R\":[\"Portaltitel\"],\"D5roJB\":[\"Portaltutorial\"],\"U4aiMW\":[\"Postcode\"],\"cWkKWE\":[\"compliment\"],\"E7dbXD\":[\"Praat je liever? Druk op opnemen en vertel het gewoon.\"],\"m/aSQ0\":[\"Bereid sessies voor met een bewerkbare hostgids naast de QR-code.\"],\"HVcm1v\":[\"Bereid sessies voor met een bewerkbare hostgids, verzamel e-mailadressen en anonimiseer transcripten. Deze update introduceert ook eigen logo’s en automatische gesprekstitels.\"],\"kBa6hc\":[\"Een navigatiesnelkoppeling voorbereiden\"],\"9vB8nN\":[\"Eerste update wordt voorbereid.\"],\"xVEtui\":[\"Dit canvas wordt voorbereid\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"rdUucN\":[\"Voorbeeld\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"DHhJ7s\":[\"Vorige\"],\"a7u1N9\":[\"Prijs\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"S8ugMC\":[\"Rapport afdrukken\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL van het privacybeleid\"],\"zwBp5t\":[\"Privé\"],\"Q7R6ZJ\":[\"Privé · alleen genodigden kunnen dit zien\"],\"i4YTOL\":[\"Privéproject\"],\"1vsuTU\":[\"Privéwerkruimte\"],\"FdLMTd\":[\"Privéwerkruimtes zijn beschikbaar met een betaald abonnement.\"],\"1ihBUA\":[\"Privé. Voeg mensen toe om het te delen.\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"byJgGz\":[\"Hulp bij inkoop\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Projectacties\"],\"loCMRJ\":[\"Zoeken in projecten en gesprekken, met QR-codes in eigen huisstijl.\"],\"Ybdz4C\":[\"Projectkaarten tonen de taal van het project.\"],\"eBFgFZ\":[\"projectchats\"],\"2LxK9d\":[\"Projectcontext\"],\"RYrbVH\":[\"Project aangemaakt\"],\"Hie0VV\":[\"Project aangemaakt\"],\"zjTrs1\":[\"Projectstandaard: ingeschakeld. Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"aVOwd+\":[\"Project verwijderd\"],\"7TYa2T\":[\"Projectdoel\"],\"qW7NU2\":[\"Het project is nu zichtbaar voor iedereen in \",[\"workspaceName\"]],\"wNXqAE\":[\"Het project is nu zichtbaar voor de werkruimte\"],\"QFx9kj\":[\"Inzichtenbibliotheek | dembrane\"],\"ZA0drz\":[\"Projectlijsten tonen correcte gesprekstotalen.\"],\"QDjWwu\":[\"Project Meta Samenvatting\"],\"lltun+\":[\"Project verplaatst\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"uMobxw\":[\"projectoverzicht\"],\"q0+yfq\":[\"Project Overzicht | dembrane\"],\"3YND3K\":[\"projectinstellingen\"],\"Wsk5pi\":[\"Project Instellingen\"],\"7NmoFz\":[\"Verwacht maandtotaal\"],\"gitVS9\":[\"Verwacht jaartotaal\"],\"M9H+/G\":[\"projecten\"],\"+0B+ue\":[\"Projecten\"],\"DK5DV3\":[\"Projecten | dembrane\"],\"B1WDxD\":[\"Projecten binnen organisatie · \",[\"0\"]],\"uNGCZL\":[\"Projecten verplaatst\"],\"2ugVVF\":[\"Projecten verschijnen hier zodra iemand in de organisatie er een met je deelt.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Voorgesteld\"],\"pAY+Io\":[\"Voorgestelde wijzigingen\"],\"Aka3jE\":[\"Naar rato voor de rest van deze factureringsperiode.\"],\"vA3+jQ\":[\"Beveilig inloggen met tweestapsverificatie.\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publiceren\"],\"vsX8VJ\":[\"Publiceer dit rapport eerst om de portallink te tonen\"],\"IHzoSN\":[\"Publiceer dit rapport om een deellink te krijgen\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"NHHXdL\":[[\"name\"],\" op facturatie beheerd door dembrane zetten, op het \",[\"tier\"],\"-niveau? Geen automatische afschrijvingen via Mollie en niets dat automatisch verloopt.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Vraag\"],\"4PTJUv\":[\"Vragen over hoe dembrane werkt, niet alleen over je data.\"],\"XhrBin\":[[\"0\"],\" stappen tegelijk uitgevoerd\"],\"iZuzSU\":[\"Snelheidslimiet bereikt\"],\"z1U/Fh\":[\"Beoordeling\"],\"wr9IYa\":[\"Voer het nieuwe wachtwoord opnieuw in\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"Z5Tlsx\":[\"Neem contact met me op\"],\"D2yGaZ\":[\"Heractiveren\"],\"Pkpg2N\":[\"Plan heractiveren\"],\"wZxwNu\":[\"Lees hardop voor\"],\"hWUdE5\":[\"Lees antwoorden van de assistent terwijl ze binnenkomen.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Minder lezen\"],\"8fZueG\":[\"Meer lezen →\"],\"ZGjKp1\":[\"Lees productaankondigingen in het dashboard.\"],\"ITpS63\":[\"Lees antwoorden terwijl ze binnenkomen.\"],\"wOfACA\":[\"Lees de gids voor problemen met transcripties en samenvattingen\"],\"6pSHJ5\":[\"Alleen-lezen\"],\"WU7BCa\":[\"Samenvatting van \",[\"0\"],\" lezen\"],\"tFk6c8\":[\"Transcript van \",[\"0\"],\" lezen\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Een gesprekssamenvatting lezen\"],\"LpWlYq\":[\"Een skill lezen\"],\"9UTzRO\":[\"Een transcript lezen\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Projectcontext lezen\"],\"ug1A83\":[\"Projectinstellingen lezen\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"De documentatie lezen\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"VJScHU\":[\"Reden\"],\"Xc0UKh\":[\"reden: \",[\"0\"]],\"0f3uxy\":[\"Recente betalingen over alle accounts\"],\"mzcrRN\":[\"onlangs\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.s3check.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"BakXLg\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"462bGY\":[\"Spraakbericht opnemen\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"XmKjfh\":[\"Opname\"],\"677McA\":[\"Opnemen en apparaten wakker houden werken betrouwbaarder.\"],\"1b/b8T\":[\"Opnemen controleert de verbinding voor het uploaden van audio.\"],\"3gnwKb\":[\"Conferentiesessies opnemen.\"],\"HCC0Bp\":[\"Gesprekken opnemen waar je zelf bij bent, zoals straatinterviews.\"],\"yRmJ54\":[\"Opnameapparaten blijven betrouwbaarder wakker.\"],\"YR6uHM\":[\"Opnameapparaten blijven betrouwbaarder wakker. De introductie voor deelnemers, het verfijnen van antwoorden en gespreksselectie in Specific Details-chat zijn verbeterd.\"],\"DKaN8g\":[\"De opnameduur blijft correct na pauzeren en hervatten.\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"yjom5N\":[\"Opnemen blijft werken, dus je deelnemers ondervinden er niets van.\"],\"+pHAyZ\":[\"Opnamelinks kunnen een titel, tags en deelnemersnaam vooraf invullen.\"],\"4IbgAX\":[\"Opnamepagina\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"/l7qFE\":[\"Opname gestart\"],\"POxNnV\":[\"De opname is gestopt bij de limiet van vijf minuten. Je opname wordt omgezet naar tekst.\"],\"kHphsJ\":[\"Opnemen wacht tot audio is geüpload voordat het afsluit, om ontbrekende transcripties in getroffen browsers te voorkomen.\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"zKZCRh\":[\"Referentie \",[\"reference\"]],\"9aloPG\":[\"Referenties\"],\"P1xi25\":[\"Verfijnen toont het juiste label en kan niet starten terwijl een ander antwoord wordt gegenereerd.\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"rOwugh\":[\"Nu verversen\"],\"1STMKj\":[\"Lopende gesprekken vernieuwen\"],\"eEud7e\":[\"Verversen gestart\"],\"WqYAGe\":[\"Verversen werkt zodra de canvasservice klaar is.\"],\"zVuxvN\":[\"Vernieuwen…\"],\"6exX+8\":[\"Opnieuw genereren\"],\"PpFJd2\":[\"Samenvatting opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"HPitDS\":[\"Registreer | dembrane\"],\"/PACVa\":[\"Release notes\"],\"Gm7/K+\":[\"Release notes | dembrane\"],\"UcLJ6I\":[\"Releasevideo\"],\"GHub6e\":[\"Releasevideo: \",[\"0\"]],\"tF5Smn\":[\"Pagina opnieuw laden\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"Lbcvrt\":[\"Denk eraan dat je altijd de Feedback-knop kunt gebruiken voor suggesties. We waarderen je steun, en bedankt dat je dembrane gebruikt.\"],\"vqD7S+\":[\"Gebruikers herinneren om te verifiëren voordat ze klaar zijn\"],\"tmHC17\":[\"Herinnering verstuurd: supporttoegang staat nog aan\"],\"t/YqKh\":[\"Verwijderen\"],\"w61W3L\":[[\"0\"],\" verwijderen\"],\"G0aZvo\":[[\"0\"],\" verwijderen uit deze werkruimte? Ze verliezen toegang tot alle projecten erin.\"],\"VoKjPv\":[\"Avatar verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"tOkPHm\":[\"Uit chat verwijderen\"],\"1G/+Gj\":[\"Uit organisatie verwijderen\"],\"18PmZk\":[\"Uit organisatie verwijderen?\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"O90CN2\":[\"Logo verwijderen\"],\"99VIgC\":[\"Lid verwijderen\"],\"c8Kx/b\":[\"Overschrijving verwijderen\"],\"Gr8pvR\":[\"Het aangepaste logo verwijderen? In plaats daarvan wordt het standaardlogo van dembrane gebruikt.\"],\"itsN5H\":[\"Deze herinnering verwijderen?\"],\"eps54V\":[\"Verwijderd\"],\"nVEhnc\":[\"Verwijderd uit organisatie\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"6PsaMr\":[\"Chat hernoemen\"],\"TBZOgu\":[\"Verlenging\"],\"M7SqjM\":[\"Heropenen\"],\"m290vd\":[\"Opname\"],\"rnkWZt\":[\"Antwoorden aan deelnemers\"],\"XfEPZ0\":[\"Antwoordknoppen, chattemplates en de Library hebben gecorrigeerde vertalingen.\"],\"1jBoqr\":[\"Richtlijnen voor antwoorden\"],\"X9GEGX\":[\"Antwoordmodus\"],\"XyN13i\":[\"Reactie prompt\"],\"w1tLX2\":[\"rapport\"],\"gjpdaf\":[\"Rapport\"],\"e/MQa5\":[\"Rapport wordt al gegenereerd\"],\"Q3LOVJ\":[\"Probleem melden\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"hh/mvZ\":[\"Rapportgeneratie geannuleerd\"],\"LpkbUS\":[\"Rapporten worden op de achtergrond gegenereerd met een zichtbare status.\"],\"sSy8vA\":[\"Rapport wordt gegenereerd...\"],\"v7O77U\":[\"Rapportgeneratie is geannuleerd. Je kunt hieronder een nieuw rapport starten.\"],\"RyW1HO\":[\"Rapportgeneratie, opnieuw transcriberen, projecten kopiëren en chatgeschiedenis zijn betrouwbaarder gemaakt.\"],\"5LikE4\":[\"Meld problemen vanuit het dashboard met afbeeldingen en spraakopnamen.\"],\"IoQrps\":[\"Meld problemen met afbeeldingen of spraak, beoordeel chatantwoorden en vraag een passend plan aan. Stel een standaard rechtsgrond in voor je workspace.\"],\"fIBsri\":[\"Rapportlimiet bereikt\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"M9snPp\":[\"Rapport gepland\"],\"6g+4DA\":[\"Melding verzonden. Bedankt\"],\"RVrIOm\":[\"Rapportabonnementen, Library-generatie en live-indicatoren zijn hersteld.\"],\"u9r3Di\":[\"Report templates staan op onze roadmap.\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"t9yxlZ\":[\"Rapporten\"],\"E1vQT6\":[[\"0\"],\"-training aanvragen\"],\"w//ise\":[\"Vraag een abonnement aan via het behoeftenformulier en plan een vervolggesprek.\"],\"qbXLnJ\":[\"Een training aanvragen\"],\"WdCAhr\":[\"Toegang aanvragen\"],\"library.request.access\":[\"Toegang aanvragen\"],\"cH8Bhd\":[\"Aanvraag goedgekeurd\"],\"ViqcVt\":[\"Aanvraag afgewezen\"],\"jI02E7\":[\"Verzoek geweigerd.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"8H5nRH\":[\"Wachtwoord reset aanvragen | dembrane\"],\"1RVBJe\":[\"Aanvraag verzonden\"],\"OQsKlA\":[\"Verzoek verstuurd. De beheerders van de werkruimte hebben bericht gekregen.\"],\"b44axA\":[\"Verzoek verstuurd. Wachten op de beheerders van de werkruimte.\"],\"7rVjfL\":[\"Supporttoegang aanvragen\"],\"XmXfrX\":[\"Verzoek ingetrokken.\"],\"Yx0Ud8\":[\"Aangevraagd\"],\"VRpBev\":[\"Aangevraagde en geplande trainingen. Markeer een training als voltooid om elke deelnemer een licentie van een jaar te geven.\"],\"PXQc8Y\":[\"Aanvrager\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"TMLAx2\":[\"Verplicht\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Herplannen\"],\"6eIR/n\":[\"Opnieuw plannen naar\"],\"ZSTojU\":[\"Uitnodiging opnieuw versturen\"],\"8WtTog\":[\"Uitnodiging opnieuw versturen\"],\"OfhWJH\":[\"Resetten\"],\"I9EnzM\":[\"Filters resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"9uplIY\":[\"Wachtwoord resetten | dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"kX8Fjz\":[\"Feedback op antwoord\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"1K1kvB\":[\"Abonnement hervatten\"],\"85Qjyx\":[\"Updates hervatten\"],\"ioYnu6\":[\"ingetrokken\"],\"fM1Ldq\":[\"ingetrokken voor het dembrane-team\"],\"AWy1Kd\":[\"Een notitie voor het dembrane-team intrekken\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"+gmVxi\":[\"Hertranscriptie niet beschikbaar voor anonieme gesprekken\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"zHJTti\":[\"Nu opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"2fCpt5\":[\"Terug naar home\"],\"5k0NLb\":[\"Controleren\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"ECoHYI\":[\"Opnieuw bekijken\"],\"dSCHZP\":[\"Bekijk en bewerk hieronder. Dit voegt een controle toe die bij elk gesprek draait. Verificatie moet aan staan om de controle uit te voeren. Er verandert niets tot je hem toevoegt.\"],\"Tqa1v9\":[\"Controleer voordat je aanmaakt.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"OybZ3y\":[\"Bekijk mijn projectinstellingen en stel verbeteringen voor.\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"JuDdMd\":[\"Bekijk, bewerk en open elk gesprek in dit project.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Versiegeschiedenis\"],\"GXsAby\":[\"Intrekken\"],\"jjsSSc\":[\"Uitnodiging intrekken\"],\"HZn3qT\":[\"Licentie intrekken\"],\"TUcQqn\":[\"De uitnodiging aan \",[\"0\"],\" intrekken? Je kunt deze persoon later opnieuw uitnodigen.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"GDvlUT\":[\"Rol\"],\"QjMlvE\":[\"Rol gewijzigd\"],\"jQ6I8X\":[\"Rol bijgewerkt\"],\"wbV5uX\":[\"Ruwe schatting om de achterstand aan transcripties weg te werken\"],\"/9oiI7\":[\"Ongeveer hoeveel?\"],\"xxCtZv\":[\"Rijen per pagina\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Voer de transcriptie opnieuw uit voor een bestaand gesprek.\"],\"SztYsc\":[\"Voer transcriptie opnieuw uit voor een bestaand gesprek. Ook de Nederlandse documentatie is bijgewerkt.\"],\"RiQMUh\":[\"Bezig\"],\"i39IXZ\":[\"Verkoopfactuur uitgegeven.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Opslaan\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"GsV2va\":[\"Toegang opslaan\"],\"BnmEvM\":[\"Opslaan als template\"],\"gjqGP0\":[\"Factuurgegevens opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"qjHQoH\":[\"Korting opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"5dVjYt\":[\"Template opslaan\"],\"idD8Ev\":[\"Opgeslagen\"],\"nwfMv/\":[\"Opgeslagen weergave-instellingen worden direct bij het laden toegepast.\"],\"8AhhHy\":[\"Opgeslagen als doel van dit project.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Opslaan...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan of klik op de QR-code om het feedbackportaal te openen\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"SGnha7\":[\"Scan om deel te nemen aan dit project\"],\"4ldzRd\":[\"Scan om een nieuwe portalsessie te starten\"],\"NAe+hu\":[\"Gescand\"],\"epl7MR\":[[\"0\"],\" keer gescand\"],\"iQbBJn\":[\"QR gescand\"],\"gmB6oO\":[\"Plannen\"],\"wCGy0o\":[\"Rapport inplannen\"],\"uUP8ek\":[\"Plan rapporten (bèta) met alle gesprekken die vóór het gekozen tijdstip zijn opgenomen.\"],\"qtjOKf\":[\"Training inplannen\"],\"4ba0NE\":[\"Ingepland\"],\"f1aPlK\":[\"Geplande rapporten en eigen templates\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll naar beneden\"],\"A1taO8\":[\"Zoeken\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"FyLaDj\":[\"Zoek op account, status, beschrijving\"],\"Uu9l/P\":[\"Zoek op account, werkruimte, organisatie, e-mail, tier\"],\"EJ1adC\":[\"Zoek en selecteer de gesprekken voor deze chat.\"],\"V0wu2W\":[\"Zoeken op organisatie\"],\"a4xYoA\":[\"Zoek chats\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"FIKhFb\":[\"Zoeken vindt je woorden in elke volgorde.\"],\"QU2qoc\":[\"Zoek op naam of e-mail\"],\"6/qy61\":[\"Zoek op partner, klant, werkruimte\"],\"l9vi1F\":[\"Zoek mensen\"],\"S1LvJy\":[\"Zoek mensen of typ een e-mailadres\"],\"hjqK3H\":[\"Zoek project of werkruimte\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"Ix2UwQ\":[\"Zoek projecten, organisaties, werkruimtes, instellingen…\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"5WYZKZ\":[\"Zoekresultaten\"],\"lnWve4\":[\"Zoek tags\"],\"a6xC54\":[\"Doorzoek tags en wis gespreksfilters met één klik.\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"S2BNQs\":[\"Zoek werkruimtes\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"mHOLEz\":[\"Gesprekken doorzoeken\"],\"rI5Wda\":[\"Gesprekken doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"De documentatie doorzoeken\"],\"hoK9sq\":[\"Transcripten doorzoeken\"],\"/DtZhN\":[\"Transcripten doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Zoeken…\"],\"MpFIca\":[\"plekken\"],\"grt0Pu\":[\"Plekken\"],\"R4Xlsa\":[\"Plekken vol\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"6/OSWK\":[\"Bekijk audiokwaliteitsindicatoren voor ruis, stilte en overlappende spraak.\"],\"tAfXHu\":[\"transcripten te bekijken\"],\"ic1SaJ\":[\"Bekijk upgrade-opties\"],\"QXYt4Y\":[\"Zie wanneer transcriptie bezig is.\"],\"0sQPzI\":[\"Tot snel\"],\"XZRu52\":[\"Ziet gebruik en facturen. Geen toegang tot projecten of content.\"],\"rG3WVm\":[\"Selecteren\"],\"02ePaq\":[[\"0\"],\" selecteren\"],\"F7wP7I\":[\"Selecteer een gesprek om verder te gaan\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"NM2hyD\":[\"Selecteer een werkruimte\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Selecteer alle gesprekken, of alleen gefilterde gesprekken, voor chat.\"],\"uZSxKc\":[\"Alles selecteren is beschikbaar in Ask en nieuwe chats met Specifieke details.\"],\"Al2i3F\":[\"Selecteer alle of gefilterde gesprekken voor chat en filter door op een tag te klikken. Opname-uploads zijn betrouwbaarder, met duidelijkere berichten bij grote drukte.\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"XSLOfq\":[\"Selecteer alle zichtbare (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"d3O/ZP\":[\"Selecteer ten minste één ander onderwerp voordat u dit verwijdert\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"OOZBXR\":[\"Gesprek selecteren\"],\"5z/6Uk\":[\"Gesprekken selecteren\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"qtJxoV\":[\"Meerdere gesprekken selecteren\"],\"1kovRK\":[\"Project selecteren\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"Dh99yE\":[\"Selecteer maximaal 2 focusgebieden voor je rapport\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \\\"Verifiëren\\\".\"],\"GnNO41\":[\"Selecteer wie erbij was. Iedereen krijgt een licentie van een jaar om dembrane te gebruiken in situaties met een hoog risico.\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Verzenden\"],\"iJyjJ8\":[[\"0\"],\" uitnodigingen versturen\"],\"Hvnq/n\":[\"Uitnodiging versturen\"],\"FCfEtD\":[\"Uitnodigingen versturen\"],\"6M/wwR\":[\"Notitie versturen\"],\"O9oQJS\":[\"Melding versturen\"],\"4k2VbT\":[\"Verzoek versturen\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"j73b/6\":[\"Naar dembrane sturen\"],\"h69WC6\":[\"Verstuurd\"],\"EhSyaK\":[[\"sentCount\"],\" van \",[\"0\"],\" verstuurd. Bekijk de lijst hieronder.\"],\"oSzbte\":[\"verstuurd naar het dembrane-team\"],\"XyiDbI\":[\"Apart (klant)\"],\"OnmeuT\":[\"Scheid met komma's, spaties of nieuwe regels.\"],\"NprC8U\":[\"Sessienaam\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Stel de standaardrechtsgrondslag van een werkruimte in en pas die per project aan.\"],\"SpfrD/\":[\"ingesteld door \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Doel instellen\"],\"eo7QNa\":[\"Instellen als beheerd\"],\"WAdU35\":[\"Zet op beheerd\"],\"c0oPm+\":[\"Zet op beheerde facturatie\"],\"FpHYiz\":[\"Na het aanmaken instellen met de assistent\"],\"JfvZ6H\":[\"Werkruimte instellen\"],\"J4TuIW\":[\"Stel je eerste organisatie in\"],\"aBwEIZ\":[\"Stel je organisatie in\"],\"OALBTr\":[\"Stel je werkruimte in | dembrane\"],\"2zDY/H\":[\"Bepaal wie het kan zien en kan deelnemen.\"],\"A6EhcS\":[\"We zetten alles voor je klaar\"],\"XYlJJT\":[\"Instellen\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"BVRW7i\":[\"Instellingen | dembrane\"],\"ENOWl3\":[\"Instellingen zijn gegroepeerd in Account en beveiliging, Weergave en Projectstandaarden.\"],\"RPF/8g\":[\"Instellingen bijgewerkt\"],\"RDjuBN\":[\"Instellen\"],\"WFl+oC\":[\"Bepaal hoe deelnemers uitkomsten verifiëren\"],\"Z8lGw6\":[\"Delen\"],\"VSwbWX\":[\"Deel uitnodigingslinks als alternatief voor uitnodigingen per e-mail.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Portal delen\"],\"OuFYHU\":[\"Rapport delen\"],\"nzT4VD\":[\"Deel het project, volg live activiteit en spring vanaf één plek naar de belangrijkste tools.\"],\"AjYeE7\":[\"Delen met \",[\"0\"],\" mensen\"],\"8styFN\":[\"Deel met iemand\"],\"W4nkGB\":[\"Delen met hele werkruimte\"],\"bM7Rp3\":[\"Deel met werkruimte\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"nnWGzO\":[\"Deel uw ideeën met ons team\"],\"4o0klJ\":[\"Deel je stem door de QR-code te scannen\"],\"jqnSi6\":[\"Gedeeld met\"],\"YJJJo3\":[\"Gedeeld met \",[\"0\"]],\"zIgU4M\":[\"Gedeeld met \",[\"0\"],\" en \",[\"overflow\"],\" anderen\"],\"Ut2Txh\":[\"Als je een privéproject deelt met iemand die nog geen lid is, kun je diegene nu uitnodigen in plaats van een foutmelding te krijgen. De toegang wordt verleend zodra diegene lid wordt van de werkruimte.\"],\"Sdetlc\":[\"Kortste eerst\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Toon \",[\"hidden\"],\" meer\"],\"fp7sBF\":[\"Nog \",[\"overflow\"],\" tonen\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"9Resvw\":[\"Toon details\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"Wh1pao\":[\"Meer versies tonen\"],\"34iCWY\":[\"Alleen wijzigingen tonen\"],\"ersE21\":[\"Toon projecten\"],\"s2xGKA\":[\"Toon QR-code\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"qB9H4B\":[\"Stappen tonen\"],\"EgEjZz\":[\"Volledige tekst tonen\"],\"hV6KNf\":[\"Toon de uitnodiging\"],\"GjCBss\":[\"Toon je eigen logo aan deelnemers, beschikbaar op aanvraag.\"],\"RpOvMh\":[[\"0\"],\" van \",[\"1\"],\" weergegeven\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" van \",[\"total\"]],\"qVf+dV\":[\"De eerste \",[\"0\"],\" van \",[\"shownCount\"],\" resultaten worden getoond. Verfijn je zoekopdracht om de rest te zien.\"],\"8Lpud3\":[\"Uw meest recente voltooide rapport wordt getoond.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Wordt getoond in de organisatiekop en in onderwerpregels van e-mails.\"],\"8ImxHp\":[\"Inloglinks controleren je toegang voordat ze een organisatie of project openen.\"],\"DVBfkn\":[\"Zes weekenden verspreid over zeven maanden\"],\"6Uau97\":[\"Overslaan\"],\"participant.button.verify_prompt.skip\":[\"Overslaan\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"TTKYZB\":[\"Microfooncheck overgeslagen\"],\"3Czdpd\":[\"Slack-community\"],\"dE/7ox\":[\"Soepeler opnemen en sneller vragen stellen\"],\"QCIy1f\":[\"Een deel van de audio in dit gesprek kon niet worden getranscribeerd. Open het gesprek om te zien welke delen misgingen.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"Pe0Fnh\":[\"Een deel van de recente audio kon niet worden getranscribeerd. De opname is opgeslagen.\"],\"C6+ZRl\":[\"Iemand\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Iets anders.\"],\"participant.modal.s3check.message\":[\"Iets blokkeert je verbinding. Je audio wordt niet opgeslagen tenzij dit wordt opgelost.\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"mwpVVD\":[\"Er is iets misgegaan bij het genereren van uw laatste rapport.\"],\"2WNFmv\":[\"Er is iets misgegaan bij het genereren van uw rapport.\"],\"aT53wg\":[\"Er ging iets mis aan mijn kant. Stuur je bericht opnieuw, dan probeer ik het nog een keer.\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"VXAsiD\":[\"Er ging iets mis tijdens het transcriberen. Probeer het opnieuw.\"],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"7PyY8A\":[\"Er ging iets mis. Open de link uit je e-mail opnieuw, of <0>begin opnieuw.\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"sBJ5MF\":[\"Bronnen\"],\"JkONR3\":[\"Bronnen en verwijzingen blijven niet meer leeg in de getroffen gevallen.\"],\"65A04M\":[\"Spaans\"],\"wuxqZ1\":[\"Spreek een vraag in en controleer de tekst voordat je die verstuurt.\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"9Vb51U\":[\"Chat met Specifieke details respecteert handmatige gespreksselectie.\"],\"uXsB4R\":[\"Personeel\"],\"eicGWU\":[\"Alleen personeel\"],\"vtV8C/\":[\"Door dembrane aangemaakt\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standaardtoegang. Werkt samen in de werkruimtes waaraan ze zijn toegevoegd.\"],\"vv5o+Y\":[\"Vaste richtlijnen die de assistent meekrijgt in elke projectchat in deze werkruimte. Wordt automatisch opgeslagen.\"],\"ruoKG4\":[\"Start een chat\"],\"vPF04k\":[\"Start een nieuwe chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"nYTTLF\":[\"Starten in de assistentchat\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"nFxnZX\":[\"Begin met opnemen zonder een extra bevestigingsstap.\"],\"jBYlO5\":[\"Start opnames zonder dubbele gesprekken, bekijk de echte starttijd en gebruik opgeslagen vraagsjablonen vanuit Ask. Updates in de zijbalk tonen nu het aantal ongelezen berichten.\"],\"slY7aQ\":[\"Opname gestart\"],\"W1KkjZ\":[\"Begint\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Blijft live gedurende\"],\"DpvswE\":[\"Blijft actueel\"],\"M66Dtk\":[\"Blijft actueel tot \",[\"0\"]],\"oWpwLu\":[\"Blijft actueel tot morgen \",[\"0\"]],\"RibpL5\":[\"Stap \",[\"0\"],\" van \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Kom je er nog niet uit? Mail <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Opname stoppen en omzetten naar tekst\"],\"pozyoW\":[\"Gestopt op \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Gestopt op \",[\"stoppedAt\"],\". Bijgewerkt \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Gestopt.\"],\"YAtsqu\":[\"Gestopt. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stoppen tijdens de microfoontoestemming geeft de microfoon vrij, zodat je opnieuw kunt proberen.\"],\"kimwwT\":[\"Strategische Planning\"],\"BVSaId\":[\"Sterk wachtwoord\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"eN0TsI\":[\"Abonneer je op rapportmeldingen.\"],\"zzDlyQ\":[\"Succes\"],\"aG+cH9\":[\"Dynamische suggesties voorstellen op basis van uw gesprek.\"],\"6xSPmn\":[\"Voorgesteld projectdoel\"],\"SLIAI6\":[\"Voorgestelde tagwijzigingen voor je project\"],\"kBrP+r\":[\"Voorgestelde verificatievraag\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"TQTiuh\":[\"Canvas voorstellen\"],\"VOjaCv\":[\"Projectdoel voorstellen\"],\"jt3eXx\":[\"Verificatievraag voorstellen\"],\"5+Cysq\":[\"Projectwijzigingen voorstellen\"],\"BN3mxb\":[\"Tagwijzigingen voorstellen\"],\"k1mxf5\":[\"Samenvattingen passen zich aan de complexiteit van het gesprek aan.\"],\"F1nkJm\":[\"Samenvatten\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"zdF7Nh\":[\"Samenvatting gegenereerd.\"],\"hlaWg4\":[\"Samenvatting opnieuw gegenereerd.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"/lNOlB\":[\"Supporttoegang beëindigd.\"],\"iD58Ik\":[\"Supporttoegang met 24 uur verlengd.\"],\"1iB0Qb\":[\"Supporttoegang verleend. Deze stopt automatisch na 24 uur.\"],\"H9ee/+\":[\"Supporttoegang uitgezet\"],\"Qm32kv\":[\"Supporttoegang uitgezet nadat de sessie eindigde\"],\"jtzW2z\":[\"Supporttoegang aangezet\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Ondersteunende citaten worden correct weergegeven.\"],\"bp+Bkh\":[\"Prima\"],\"ijp2ag\":[\"Overzetten naar self-serve\"],\"h1qzuU\":[\"Overzetten naar self-serve facturering\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"5dzzI6\":[\"Uitzetten kan met een betaald plan.\"],\"D+NlUC\":[\"Systeem\"],\"woaefe\":[\"Systeemstandaard\"],\"InGQz2\":[\"Systeemstatus\"],\"N3D6GN\":[\"Tag verwijderd\"],\"OYHzN1\":[\"Trefwoorden\"],\"gGG+ax\":[\"Tags zijn de woorden waaruit deelnemers in de portal kunnen kiezen. Er verandert niets tot je ze toepast.\"],\"JbfIuH\":[\"Tags worden correct bijgewerkt voor lopende gesprekken.\"],\"kNzjto\":[\"Tags bijgewerkt. Je kunt ze altijd bijstellen in de portaleditor.\"],\"tFhVJf\":[\"Breng me naar \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig.\"],\"participant.refine.make.concrete.description\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig.\"],\"WyoP4e\":[\"Twee keer op Opnemen tikken maakt geen dubbele gesprekken meer aan.\"],\"Jzcupi\":[\"Vertel de beheerders van de werkruimte waarvoor je toegang nodig hebt. Deze notitie is optioneel.\"],\"ijEuC1\":[\"Vertel ons wat je nodig hebt\"],\"QCchuT\":[\"Template toegepast\"],\"JcCDm9\":[\"Sjabloon aangemaakt\"],\"ZTgE3k\":[\"Sjabloon verwijderd\"],\"5OwALL\":[\"Template naam\"],\"PQb/If\":[\"Sjabloon bijgewerkt\"],\"iTylMl\":[\"Sjablonen\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Voorwaarden\"],\"CyWdHw\":[\"Test en selecteer je microfoon voordat je opneemt.\"],\"qYLZL2\":[\"testmodus\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"mFQRXn\":[\"Tekstbijdragen en vervolgformulieren.\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"w0rnwH\":[\"Bedankt! We nemen zo snel mogelijk contact met je op. Je kunt ons ook mailen via info@dembrane.com.\"],\"yP6ia6\":[\"Bedankt voor het invullen. Kijk in je mail voor de bevestiging van de afspraak. Heb je vragen voor ons, dan kun je ons altijd bereiken op info@dembrane.com\"],\"ZNyTs9\":[\"Bedankt, we nemen binnen een dag contact op.\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"PuGTvO\":[\"Dat is niet verstuurd. Je antwoorden staan er nog, dus probeer het opnieuw.\"],\"TqOQmZ\":[\"Dat is niet gelukt. We hebben je opname opgeslagen.\"],\"zXqpmy\":[\"Dat ziet er niet uit als een e-mailadres.\"],\"FT6q8r\":[\"Die opname is te lang om te versturen. Neem een kortere notitie op.\"],\"qoYkjn\":[\"Daarvoor heb je een betaald abonnement nodig. We stellen je nog 5 korte vragen. Daarna kies je een tijd met het dembrane-team. Voor het gesprek lezen we je antwoorden, zodat we een voorstel meenemen dat bij je past.\"],\"a/CreD\":[\"Dat was te kort om te transcriberen. Houd de opname iets langer vast.\"],\"t/t3Pd\":[\"Dat was het, bedankt\"],\"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.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"De assistent vergeet dit in elke toekomstige chat.\"],\"jvdqI1\":[\"De assistent stelt voor om \",[\"headlineFields\"],\" bij te werken. Wacht op jou.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"NPynOC\":[\"De verbinding is weggevallen. We proberen automatisch opnieuw.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"pNC1r6\":[\"De gesprekslijst toont duidelijkere totalen.\"],\"rEUvpC\":[\"het dembrane-team\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"x3rJF8\":[\"Het feedbackformulier kan je e-mailadres vooraf invullen.\"],\"pHzQV8\":[\"Het feedbackportaal legt uit hoe je beveiligingsproblemen meldt.\"],\"HNaSQm\":[\"De eerste grote release brengt het project onder de Business Source License 1.1.\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"iQVN2u\":[\"Het gratis plan dekt één werkruimte.\"],\"4ofqC4\":[\"Het gratis plan bevat één chat met drie vragen.\"],\"lIEwn+\":[\"Het gratis plan bevat één rapport.\"],\"IUkPfk\":[\"Het doel stuurt de rapporten, canvassen en suggesties van de assistent in dit project.\"],\"IwNUoA\":[\"De hostgids is wat begeleiders lezen voordat ze een sessie draaien.\"],\"C5CHds\":[\"De uitnodiging staat in je inbox. We lezen je antwoorden vooraf en nemen een conceptvoorstel mee. Heb je intussen vragen? Neem dan contact op met\"],\"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.\"],\"Wb4/Ex\":[\"De Library krijgt duidelijkere weergaven van terugkerende thema's, beschikbaar op aanvraag.\"],\"6ZUAzo\":[\"De Library krijgt duidelijkere weergaven van terugkerende thema’s. Chatsjablonen blijven binnen bereik, gesprekken hebben directe links en uploadstatus is eenvoudiger te volgen.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"De ledenpagina toont een laadstatus in plaats van kort te zeggen dat er geen leden zijn.\"],\"jnNEHx\":[\"De methodologie is de manier waarop dit project is opgezet en wordt begeleid.\"],\"2zCZsi\":[\"De microfoon is geblokkeerd in je browser, dus opnemen staat uit. Typen werkt wel.\"],\"WO8jr5\":[\"De microfoon is nog steeds geblokkeerd. Pas het aan in je browserinstellingen en controleer het daarna opnieuw.\"],\"EKXp9y\":[\"De nieuwe zijbalk brengt organisaties, werkruimtes, leden en instellingen samen.\"],\"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.\"],\"uesSdO\":[\"De deelnemersflow heeft duidelijkere microfooncontroles.\"],\"6WE2tf\":[\"De portalen blijven werken! Je deelnemers kunnen altijd doorgaan en niets wat ze zeggen gaat verloren. Zodra je een betaald abonnement hebt, wordt alles wat al is opgenomen alsnog getranscribeerd.\"],\"Khtiqr\":[\"De vorige versies zijn hieronder nog beschikbaar.\"],\"8+mJDO\":[\"Het project gaat over op de Business Source License 1.1.\"],\"D4If9P\":[\"De projectcontext wordt gelezen door transcriptie, chatantwoorden en canvasgeneratie, dus een wijziging hier raakt meer dan een scherm.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"Het rapport kan tot 5 minuten na de gekozen tijd starten.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"De zijbalk past beter op mobiele schermen en heeft verbeterde Franse navigatieteksten.\"],\"Z8JQHh\":[\"De zijbalk scrolt op lage schermen terwijl de kop en voettekst beschikbaar blijven.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"9DPC4t\":[\"De bedankpagina eindigt met een kaart die deelnemers uitnodigt om zelf een event met dembrane te organiseren.\"],\"otcrOk\":[\"Het transcript kwam niet terug. Controleer je verbinding en probeer het opnieuw.\"],\"sQgHJn\":[\"De transcriptie is niet afgerond. Probeer het opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"Ws5p1J\":[\"De werkruimte waarvoor deze uitnodiging was, is verwijderd. Er is niets om aan deel te nemen.\"],\"mbsBu1\":[\"Hun vertegenwoordiger die eigenaar is van deze data. Diegene wordt toegevoegd als gratis waarnemer en wordt het overdrachtscontact.\"],\"k59/22\":[\"Hun vertegenwoordiger die eigenaar is van deze data. Diegene wordt toegevoegd als gratis waarnemer, krijgt per e-mail bericht dat hij de data-eigenaar is en wordt het overdrachtscontact.\"],\"p9LlT0\":[\"Het scherm is vergrendeld of het tabblad is niet actief. De opname pauzeert tot ze terugkomen.\"],\"FEr96N\":[\"Thema\"],\"tn4pEQ\":[\"daar\"],\"fm15Og\":[\"Er zijn geen andere werkruimtes waarnaar je deze projecten kunt verplaatsen.\"],\"PmKiRy\":[\"Er zijn geen andere werkruimtes waarnaar je dit project kunt verplaatsen.\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"4MElLm\":[\"Er zat geen spraak in die opname.\"],\"D8iLCl\":[\"Deze wijzigingen zijn toegepast op je project.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"7Ye3FL\":[\"Deze tagwijzigingen zijn toegepast op je project.\"],\"81wkbM\":[\"Deze werkruimtes worden apart gefactureerd. Elke persoon die je toevoegt neemt een plek in \",[\"billingContextCount\"],\" factureringscontexten in, die elk afzonderlijk worden gefactureerd.\"],\"0ZaC+v\":[\"Deze werkruimtes hebben hun eigen abonnement, beheerd vanuit elke werkruimte. Ze maken geen deel uit van het abonnement van deze organisatie.\"],\"8AOwf0\":[\"Ze worden toegevoegd als leden. Je kunt er later meer toevoegen.\"],\"MOF98U\":[\"Denk aan: een gesprek met je DPO of CISO, een beveiligingsbeoordeling of een DPIA op maat.\"],\"Ed99mE\":[\"Denken...\"],\"WLBoIc\":[\"Dit account heeft een lopend Mollie-abonnement. Zeg dat eerst op.\"],\"3YoDz8\":[\"Dit account heeft een actief abonnement. Vraag de klant om het op te zeggen via de factureringspagina voordat je het niveau aanpast.\"],\"kUtEeG\":[\"Dit gedeelte is voor dembrane-personeel. Denk je dat je toegang zou moeten hebben? Mail dan support@dembrane.com.\"],\"7eQeNC\":[\"Deze browser kan geen audio opnemen. Chrome, Edge en Safari wel.\"],\"participant.modal.s3check.suggestions\":[\"Dit kan gebeuren wanneer een VPN of firewall de verbinding blokkeert. Probeer je VPN uit te schakelen, over te schakelen naar een ander netwerk (bijv. mobiele hotspot) of neem contact op met je IT-afdeling voor hulp.\"],\"XR7DRS\":[\"Dit canvas kon niet worden bijgewerkt.\"],\"fztlir\":[\"Dit verandert hoe transcripten vanaf nu worden opgeslagen. Gesprekken die al zijn opgenomen behouden de vorm waarin ze zijn bewaard.\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"XVmrFS\":[\"Dit veld bevat al de voorgestelde waarde.\"],\"lja/om\":[\"Deze informatie is anoniem\"],\"VqK4uu\":[\"Dit inzicht is verwijderd\"],\"1p9Zmk\":[\"Deze uitnodiging is al gebruikt\"],\"BGIpSK\":[\"Deze uitnodiging is verlopen\"],\"tU7tLa\":[\"Deze uitnodiging is niet meer geldig\"],\"u3BWAB\":[\"Deze uitnodiging is niet voor dit account\"],\"fcMrKf\":[\"Deze uitnodigingslink is niet geldig\"],\"ZPOM9u\":[\"Deze uitnodigingslink is niet geldig voor dit account\"],\"kdZCIM\":[\"Deze uitnodiging beslaat \",[\"0\"],\" factureringscontexten, die elk apart worden gefactureerd:\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"bSbU2m\":[\"Dit is een overzicht van elke organisatie en werkruimte waarvan je lid bent.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"AypXpi\":[\"Dit is nog niet opgeslagen.\"],\"DsBmZV\":[\"Dit staat op verwerking op basis van toestemming zonder link naar het privacybeleid. Voeg er een toe om deze instelling geldig te houden: deelnemers moeten het privacybeleid kunnen lezen.\"],\"kt9FX3\":[\"Dit is dringend\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"BLwPhM\":[\"Dit is niet beschikbaar voor jou\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"2033EA\":[\"Deze link is al gebruikt. Je bent ingelogd en kunt aan de slag.\"],\"MR5ygV\":[\"Deze link is niet meer geldig\"],\"Aznd4+\":[\"Hiermee zet je de training op geannuleerd. Je kunt hem later via hetzelfde menu weer openen.\"],\"oW3yYY\":[\"Deze maand\"],\"YN8nMm\":[\"Hiermee krijgt de werkruimte een eigen facturerings- en datacontext. De projecten verplaatsen niet meer vrij mee met de rest van je organisatie.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"Deze organisatie heeft nog geen leden om te trainen.\"],\"DHgelW\":[\"Deze organisatie bestaat niet meer\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Deze portal accepteert nu geen nieuwe sessies.\"],\"CWAQCC\":[\"Dit project was niet bereikbaar.\"],\"bon4/x\":[\"Dit project hoort niet bij een werkruimte.\"],\"ocBOyA\":[\"Dit project is zichtbaar voor iedereen in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"Dit project is zichtbaar voor iedereen in de werkruimte.\"],\"xbLJ58\":[\"Dit project volgt dan de overgenomen instelling: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"3dSMKs\":[\"Hiermee zet je het account op facturering die dembrane beheert: geen automatische Mollie-afschrijvingen en geen automatisch verlopen.\"],\"xfqtI+\":[\"Deze korte rondleiding laat onze nieuwe indeling in drie niveaus zien: organisaties, workspaces en projecten. Bekijk de video en leer hoe je toegang beheert, je werk organiseert en onze nieuwe analysetools gebruikt.\"],\"64Ko7C\":[\"Dit record heeft geen factureringsaccount.\"],\"SQuwgX\":[\"Hiermee verwijder je het gesprek uit het project. Dit kun je niet terugdraaien.\"],\"9zTDpd\":[\"Hiermee verwijder je de licentie van één jaar voor \",[\"0\"],\". Ze tellen dan niet meer als getraind en verliezen toegang tot instellingen met hoog risico. Doe dit alleen als de licentie per ongeluk is toegekend.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"Dit verzoek duurde te lang, dus ik heb het gestopt. Stuur het opnieuw, dan probeer ik het nog een keer.\"],\"bKWJ+t\":[\"Hiermee gaat het account terug naar standaard gratis facturering.\"],\"XK9N+e\":[\"Hiermee komt de werkruimte terug bij de gedeelde facturering van je organisatie en wordt de externe data-eigenaar verwijderd.\"],\"cjRyq5\":[\"Dit bepaalt de taal die deelnemers in het portaal zien, inclusief de vragen die ze krijgen.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"ABJz8Q\":[\"Deze verificatievraag is toegevoegd aan je project.\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"mSuhYn\":[\"deze werkruimte\"],\"8b9oJD\":[\"Deze werkruimte heeft de opnamelimiet bereikt. Upgrade om meer audio te uploaden.\"],\"1pzlg0\":[\"Deze werkruimte heeft zijn opname-uren gebruikt. Upgrade om spraak te blijven gebruiken.\"],\"teN+SJ\":[\"Deze werkruimte wordt apart gefactureerd\"],\"/HZ7l/\":[\"Deze werkruimte wordt gefactureerd via \",[\"orgName\"],\". Abonnementen en betaling worden in één keer voor de hele organisatie beheerd, en elke werkruimte deelt dit.\"],\"Khe1Xt\":[\"Deze werkruimte zit op een niveau dat geen extra plekken toelaat. Upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"vvEr5j\":[\"Deze werkruimte bestaat niet meer\"],\"+FiXAn\":[\"Deze werkruimte deelt de facturering van de organisatie. Pas het niveau aan op het organisatieaccount, daar geldt hij voor elke interne werkruimte in de organisatie.\"],\"QnWmgF\":[\"Deze werkruimte is op \",[\"sinceDate\"],\" teruggezet naar \",[\"tier\"],\". Sommige functies zijn beperkt.\"],\"DGZ0dc\":[\"Drie snelle stappen en je bent binnen.\"],\"VDoFSJ\":[\"Duim omlaag\"],\"Nuw8ty\":[\"Duim omhoog\"],\"67ZxuT\":[\"Vink alles aan wat van toepassing is.\"],\"s/y/Z+\":[\"Vink alles aan wat past.\"],\"nNGGkA\":[\"Niveau\"],\"qPIf5y\":[\"Niveau gewijzigd\"],\"LhMjLm\":[\"Tijd\"],\"cklVjM\":[\"Tijdlijn\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"Zb3ANR\":[\"Tip: U kunt ook een sjabloon maken van elk chatbericht dat u verstuurt, of een bestaand sjabloon dupliceren.\"],\"MHrjPM\":[\"Titel\"],\"1xkgU6\":[\"Titel automatisch gegenereerd\"],\"ouSxtJ\":[\"Titel gegenereerd uit het gesprek\"],\"uqnBvS\":[\"Titelrichtlijn\"],\"Mozc0C\":[\"Titel of deelnemer\"],\"dMtLDE\":[\"naar\"],\"xLXwHL\":[\"Om een nieuwe tag toe te wijzen, maak je deze eerst aan in de portalinstellingen.\"],\"qDfpLj\":[\"Om ons te helpen actie te ondernemen, probeer aan te geven waar het gebeurde en wat u probeerde te doen. Bij bugs, vertel ons wat er mis ging. Bij ideeën, vertel ons welke behoefte het voor u zou oplossen.\"],\"UEleqp\":[\"Om iemand te promoveren tot lid van de werkruimte, voeg je deze persoon eerst toe aan de organisatie en nodig je daarna opnieuw uit vanuit de werkruimte.\"],\"CCDe0r\":[\"Wil je bespreken wat je nodig hebt, mail dan <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"qgwLj6\":[\"Te lang of onduidelijk\"],\"lcsUaI\":[\"Te veel meldingen. Wacht een paar minuten en probeer het opnieuw\"],\"li4gmn\":[\"Te veel om hier te tonen. De assistent leest ze in delen door.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Onderwerp succesvol aangemaakt\"],\"Sawj4V\":[\"Onderwerp verwijderd\"],\"xcp3ny\":[\"Onderwerp label\"],\"vQoAht\":[\"Onderwerp bijgewerkt\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"72c5Qo\":[\"Totaal\"],\"kFzhfN\":[\"Nu te betalen totaal\"],\"McSz22\":[\"Getraind\"],\"kMf0pe\":[\"Getraind tot \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training aangemaakt\"],\"p9JlS7\":[\"Trainingsdatum\"],\"1gL8o6\":[\"Training aangevraagd. We nemen contact op om het in te plannen.\"],\"KxpIJA\":[\"Training vereist voor gebruik met hoog risico\"],\"VGao62\":[\"Training bijgewerkt\"],\"miJqd2\":[\"Trainingsverificatie is hier niet beschikbaar.\"],\"cP0LwD\":[\"Trainingen\"],\"NteDtU\":[\"Een gesprek opnieuw transcriberen\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcriptie\"],\"5jqJzi\":[\"Transcriptanonimisering en instellingen voor opnieuw transcriberen werken consistenter. De opnameduur blijft correct na pauzeren en hervatten.\"],\"if/S2n\":[\"Transcriptie-anonimisering en opnieuw transcriberen gebruiken dezelfde privacy-instellingen.\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"K3Fxr/\":[\"transcriptfragment\"],\"mW5T8N\":[\"Het ophalen van transcripties en gesprekssamenvattingen wordt afgerond voordat afhankelijke stappen doorgaan.\"],\"MzWrba\":[\"Transcriptiefout\"],\"TyO5K+\":[\"Transcripten zijn beschikbaar met een betaald abonnement.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"lhkaAC\":[\"Proef\"],\"hDv2MY\":[\"Proef- en gratis accounts, niet meegerekend in het betalende totaal.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Problemen met inloggen? Neem contact op via support@dembrane.com.\"],\"KDw4GX\":[\"Opnieuw proberen\"],\"u62wQ4\":[\"Probeer het zo meteen opnieuw.\"],\"7dRUDh\":[\"Probeer Agentic\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"sZgR8D\":[\"Probeer het\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"q1ok4Y\":[\"Wil je je aansluiten bij een bestaande organisatie?\"],\"REPBIk\":[\"Zet gesprekken om in live slides. Start een live sessie of een analyse op aanvraag, presenteer aan de groep en bekijk de bronnen achter inzichten.\"],\"portal.anonymization.disable.confirm\":[\"Uitschakelen\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Anonimisering uitschakelen?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Zet de gesprekken in je project om in live slides voor de zaal.\\n\\n- Volg opkomende thema’s terwijl mensen praten.\\n- Presenteer inzichten en bekijk de gesprekken erachter.\\n- Start een live sessie of laat gesprekken analyseren wanneer je dat wilt.\\n\\nOok nieuw: chatsjablonen, agentverbindingen en verbeteringen voor mobiel.\"],\"portal.anonymization.disable.warning\":[\"Het uitschakelen van anonimisering terwijl opnames gaande zijn kan onbedoelde gevolgen hebben. Actieve gesprekken worden ook beïnvloed tijdens de opname. Gebruik dit met voorzichtigheid.\"],\"JPF8BN\":[\"Je spraaknotitie wordt omgezet naar tekst\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Typ <0>\",[\"0\"],\" om te bevestigen.\"],\"hHFgGr\":[\"Typ een bericht of druk / voor templates...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"KfLidz\":[\"Typt\"],\"dubg//\":[\"Oekraïens (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"lLwEjI\":[\"Minder dan 50.\"],\"8ryDoK\":[\"Onder je organisatie\"],\"HYUJF4\":[\"Onze nieuwe structuur uitgelegd\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"wF2wqQ\":[\"Onbekende datum\"],\"rIOkYf\":[\"Onbekend lid\"],\"1MTTTw\":[\"Onbekende reden\"],\"nWMRxa\":[\"Losmaken\"],\"vSdeRU\":[\"Maak eerst een project los (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Maak eerst een project los (max 3)\"],\"dx+iaL\":[\"Project losmaken\"],\"KuVpz+\":[\"Ongelezen\"],\"Eb6wiX\":[\"Onleesbare audio en ongeldige transcriptieresultaten leiden niet meer tot herhaalde verwerkingspogingen.\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"nOxIVE\":[\"Zonder tag\"],\"VFYmmV\":[\"Vink een veld uit om het precies te laten zoals het is.\"],\"1hTGn4\":[\"tot \",[\"0\"]],\"wja8aL\":[\"Naamloos\"],\"CoInOF\":[\"Naamloos canvas\"],\"LOM/+N\":[\"Naamloos gesprek\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"ZjKqrC\":[\"Naamloze methodologie\"],\"PZKdTd\":[\"Naamloos rapport\"],\"+TYrZZ\":[\"Tot \",[\"0\"],\" deelnemers\"],\"RHUiSf\":[\"Tot \",[\"0\"],\" deelnemers zijn inbegrepen.\"],\"0wHyhk\":[\"Maximaal \",[\"MAX_FILES\"],\" afbeeldingen\"],\"lLehih\":[\"Maximaal \",[\"MAX_MESSAGE_CHARS\"],\" tekens\"],\"ia8YsC\":[\"Binnenkort\"],\"EkH9pt\":[\"Bijwerken\"],\"H/FUVb\":[\"Updateritme\"],\"x4Xp3c\":[\"bijgewerkt\"],\"Ef5vag\":[\"Bijgewerkt \",[\"0\"],\" · \"],\"+vId6X\":[\"Bijgewerkt \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Vernieuwde kleuren, lettertypen, pictogrammen en logo geven dembrane een frisse uitstraling.\"],\"B44Dtg\":[\"Bijgewerkt.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates verschijnen in de zijbalk met een aantal ongelezen berichten.\"],\"1efbWn\":[\"Werkt elke \",[\"cadenceMinutes\"],\" minuten bij tot \",[\"0\"],\".\"],\"luwc/s\":[\"Werkt elke \",[\"cadenceMinutes\"],\" minuten bij.\"],\"V7w3WZ\":[\"Notitie voor het dembrane-team bijwerken\"],\"IUC5Nz\":[\"Opgeslagen geheugen bijwerken\"],\"26+vhb\":[\"Projecttags bijwerken\"],\"Gw18pn\":[\"Upgrade om dit aan de chat toe te voegen\"],\"0s5x5X\":[\"Upgrade om verder te gaan\"],\"3I+le5\":[\"Upgrade om een titel voor dit gesprek te genereren\"],\"GFLM5d\":[\"Upgrade om samenvattingen voor dit gesprek te genereren\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Avatar uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"4Z7WLN\":[\"Uploadlimiet bereikt\"],\"6XdQf/\":[\"Uploadlimiet bereikt. Upgrade je werkruimte.\"],\"QfiWpJ\":[\"Logo uploaden\"],\"ZeGAhv\":[\"opnames te uploaden\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"P2sJqQ\":[\"Opnames uploaden is beschikbaar met een betaald abonnement.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"7FaY4u\":[\"Gebruik\"],\"6YK+1q\":[\"Gebruik · \",[\"0\"]],\"9TZVmX\":[\"Gebruik en facturering\"],\"589hpo\":[\"Gebruik en facturering, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Gebruik en facturering, betalingen, partnergrootboek. Elke Directus-beheerder heeft toegang.\"],\"9rNv3P\":[\"Gebruik wordt bijgehouden voor je organisatie. Bekijk het in de organisatie-instellingen.\"],\"RuzOGi\":[\"Gebruik deze cyclus\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Gebruik dembrane in het Tsjechisch.\"],\"8otRhI\":[\"Gebruik verbeterde vraagtemplates en vernieuwde transcriptieopties.\"],\"CBeRq6\":[\"Overgenomen standaard gebruiken\"],\"83yh4y\":[\"Gebruik Italiaans voor chat, rapporten, transcriptie en introductiekaarten voor deelnemers.\"],\"Rp3hXT\":[\"Gebruik Italiaans voor chat, rapporten, transcriptie en introductiekaarten voor deelnemers. Volledige vertaling van de interface was niet inbegrepen in deze release.\"],\"UqMA5L\":[\"Gebruik vastgepinde en opgeslagen vraagtemplates, inclusief de /-sneltoets, vanuit Ask.\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"daEZ1b\":[\"Gebruik Oekraïens voor chat en antwoorden aan deelnemers.\"],\"w+4I2h\":[\"webhooks te gebruiken\"],\"QB0CBI\":[\"je stem in de chat te gebruiken\"],\"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\"],\"08yTaL\":[\"Gebruikt fixture-data.\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"Btw-nummer\"],\"/n0QEP\":[\"Btw-regio\"],\"NBpTc8\":[\"Verificatie op het eindscherm\"],\"Eatezj\":[\"Verificatie-uitkomsten gebruiken de taal van het project.\"],\"Qbt5wq\":[\"Verificatieprompts mogen 10.000 tekens bevatten en geverifieerde uitkomsten hebben een kopieerknop.\"],\"participant.modal.verify_prompt.title\":[\"Herinnering om te verifiëren\"],\"participant.banner.verification_required\":[\"Verificatie vereist\"],\"OKGlwv\":[\"Verificatieonderwerpen\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"QDEWii\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"bepwgB\":[\"Geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"uSMfoN\":[\"Verifiëren\"],\"participant.button.verify_prompt.verify\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code controleren\"],\"MBOY4U\":[\"E-mail verifiëren\"],\"FYGV+K\":[\"Verifieer uitkomsten en verfijn antwoorden\"],\"w6Mgbs\":[\"Onderwerpen verifiëren\"],\"bl9677\":[\"Verifieert\"],\"iOnm3W\":[\"Je e-mailadres wordt geverifieerd.\"],\"eE0JZ4\":[\"Versie\"],\"IYNSdp\":[\"Versies\"],\"YFvfo/\":[\"Erg stil op dit moment. Check of de microfoon niet uitstaat.\"],\"jpctdh\":[\"Weergave\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"j45ntU\":[\"Uitnodiging bekijken\"],\"399GLg\":[\"Bekijk release notes\"],\"D4e7re\":[\"Bekijk je reacties\"],\"rUp0hp\":[\"Je bekijkt \",[\"0\"]],\"P0bGkp\":[\"Zichtbare kolommen\"],\"S3T9oe\":[\"Zichtbaar voor iedereen in \",[\"workspaceName\"]],\"fedNgo\":[\"Zichtbaar voor iedereen in deze werkruimte\"],\"754W/v\":[\"Zichtbaar voor iedereen in deze werkruimte. Laat uit om het persoonlijk te houden.\"],\"RdG06l\":[\"Bezoekersgegevens\"],\"KAXSwC\":[\"Spraak\"],\"lEx4m3\":[\"Spraakinvoer houdt rekening met de opnamelimiet van het gratis abonnement.\"],\"Ln6Gy/\":[\"Wachten tot gesprekken zijn afgerond voordat een rapport wordt gegenereerd.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Loopt de installatie met je door en stelt volgende stappen voor.\"],\"oKfSzq\":[\"Dit ook op jouw event?\"],\"q7LnaV\":[\"Zelf een event organiseren met dembrane?\"],\"La34Yq\":[\"dembrane gebruiken op jouw volgende event?\"],\"0/aCt7\":[\"Volg live opnames, transcriptievoortgang en fouten in dit project terwijl ze gebeuren.\"],\"OtLbE1\":[\"Bekijk de video voor een introductie tot organisaties, workspaces en projecten.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"kSJ1rO\":[\"We konden je betaalmethode niet belasten\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"mW8QSA\":[\"We konden de pagina die je zocht niet vinden. Misschien is hij verplaatst.\"],\"UStbqQ\":[\"We konden deze organisatie niet laden. Probeer het zo meteen opnieuw.\"],\"viuoK1\":[\"We konden het gebruik van deze organisatie niet laden.\"],\"huDAZ9\":[\"We konden de werkruimtes van deze organisatie niet laden. Sommige opties ontbreken mogelijk. Probeer te vernieuwen.\"],\"Ay7FNv\":[\"We konden dit project niet laden. Controleer je verbinding en probeer het opnieuw.\"],\"Z2y7ap\":[\"We konden deze werkruimte niet laden. Probeer het zo meteen opnieuw.\"],\"zPjLTr\":[\"We konden het gebruik van deze werkruimte niet laden.\"],\"y5BiQM\":[\"We konden je organisaties niet laden. Controleer je verbinding en probeer het opnieuw.\"],\"+jHAFm\":[\"We konden je openstaande uitnodigingen niet laden. Probeer het zo meteen opnieuw.\"],\"gNHeDV\":[\"We konden je betaalmethode niet bijwerken. Je oude methode is nog actief. Probeer het opnieuw.\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"GC6z0d\":[\"We hebben een verificatielink naar <0>\",[\"email\"],\" gestuurd. Klik erop om het instellen van je account af te ronden.\"],\"9i8m90\":[\"We hebben je een verificatielink gestuurd. Klik erop om het instellen van je account af te ronden.\"],\"81dqga\":[\"We zetten samen het project op, draaien op de dag zelf met je mee en helpen je daarna het rapport te schrijven.\"],\"S+HYhm\":[\"We konden je methode nog steeds niet belasten. Werk deze bij en probeer het opnieuw.\"],\"L9hUjh\":[\"We nemen binnen een dag contact op. Liever zelf een moment kiezen?\"],\"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.\"],\"FXjsEJ\":[\"We horen graag van je. Of je nu een idee hebt voor iets nieuws, een vertaling zag die niet klopt, of gewoon wilt delen hoe het gaat. Bug gevonden? Gebruik <0>Probleem melden om die met schermafbeeldingen te sturen.\"],\"XolQc4\":[\"We horen graag van je. Of je nu een idee hebt voor iets nieuws, een vertaling zag die niet klopt, of gewoon wilt delen hoe het gaat. Bug gevonden? Gebruik Probleem melden in de zijbalk om die met schermafbeeldingen te sturen.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"PH7tM1\":[\"We hebben organisaties toegevoegd zodat je projecten kunt ordenen en delen met collega's. Alles wat je eerder had, is er nog. We hebben alleen een naam voor je organisatie nodig.\"],\"Yc3tsw\":[\"We hebben een verificatielink naar <0>\",[\"0\"],\" gestuurd. Open de e-mail en klik op de link om verder te gaan.\"],\"fylXkT\":[\"Zwak netwerk\"],\"7cUq8g\":[\"Zwak wachtwoord\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"3rkRxG\":[\"Webhooks zijn niet ingeschakeld voor deze omgeving.\"],\"EAioZ5\":[\"Webhooks zijn beschikbaar met een betaald abonnement.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"ZVR4oQ\":[\"Welkom terug, \",[\"displayName\"]],\"OM+lH0\":[\"Welkom bij dembrane\"],\"P3EAlh\":[\"Welkom bij dembrane chat. Selecteer de gesprekken die je wilt analyseren en vraag dan naar details, citaten en samenvattingen.\"],\"Fx+f0A\":[\"Welkom bij dembrane!\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"J2FSRx\":[\"Welkom, \",[\"displayName\"]],\"klH6ct\":[\"Welkom!\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"nCQNTt\":[\"Wat wil je te weten komen?\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"WSxXHT\":[\"Waarvoor wil je dembrane gebruiken?\"],\"3jWdsE\":[\"Waarvoor wil je dembrane gebruiken?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"B5v8nx\":[\"Wat er verstuurd wordt\"],\"JJjzZE\":[\"Wat is er gebeurd? Plak hier een screenshot om hem toe te voegen\"],\"WqnI4l\":[\"Wat is het?\"],\"T91psD\":[\"Wat zou hieraan anders moeten zijn?\"],\"pVIWuw\":[\"Wat moet ECHO analyseren of genereren uit de gesprekken?\"],\"yWXuOc\":[\"Welke thema's kwamen naar voren in de gesprekken in dit project?\"],\"LfRBcL\":[\"Welke thema's kwamen naar voren?\"],\"pd3Yt/\":[\"Wat dit project deze cyclus verbruikt.\"],\"tq89gP\":[\"Wat ging er mis?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"3ePd3I\":[\"Wat is er nieuw\"],\"k7eeqO\":[\"Wat is de belangrijkste reden?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"Wanneer heb je dembrane nodig?\"],\"KmUKwU\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Anonieme gesprekken deactiveren ook audio-afspelen, audio-download en hertranscriptie om de privacy van deelnemers te beschermen. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"MEmr1I\":[\"Wanneer je het gesprek afmaakt, worden deelnemers die nog niet hebben geverifieerd gevraagd om te verifiëren of over te slaan\"],\"BaiSBQ\":[\"Staat dit aan, dan kan het supportteam van dembrane deze werkruimte in om je te helpen. Hun toegang stopt automatisch na 24 uur.\"],\"SgIrVC\":[\"Zodra deelnemers de QR-code scannen, verschijnen ze hier en bewegen ze live door de fases.\"],\"/dAMl1\":[\"Wanneer moet het rapport gegenereerd worden?\"],\"MyMufZ\":[\"Als iemand de QR-code scant, is dat één gesprek. Als 50 mensen hem tegelijk scannen, zijn dat 50 gesprekken tegelijk.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"JwZibo\":[\"Waar wil je naartoe?\"],\"msYPX5\":[\"Waar wil je beginnen?\"],\"kqHiF1\":[\"Bij welke organisatie hoort deze werkruimte?\"],\"lwFEDE\":[\"Welke organisatie is eigenaar van de data van deze werkruimte? Dit bepaalt de data- en compliancecontext.\"],\"wZht80\":[\"Wie dit project kan zien en eraan kan samenwerken.\"],\"P9WL8r\":[\"Wie kan dit project zien?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Wie in je team een actuele trainingslicentie heeft. Boek een training via de Training-weergave van je organisatie.\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"EpZ9+F\":[\"wens\"],\"QdkkH5\":[\"Met externe klanten\"],\"KWhZCH\":[\"Binnen mijn organisatie\"],\"ErlMoy\":[\"Werk met de nieuwe gespreksassistent, volg sessies in de live monitor en gebruik de vernieuwde transcriptieverwerking.\"],\"T5IBvE\":[\"Werk met de nieuwe gespreksassistent.\"],\"qJ0J+6\":[[\"0\"],\" stappen doorlopen\"],\"B6dzt1\":[\"Bezig met je antwoord...\"],\"NwM/eB\":[\"werkruimte\"],\"pmUArF\":[\"Werkruimte\"],\"IG4YLy\":[\"Workspace / project\"],\"SO/3gk\":[\"Toegangsopties voor werkruimtes leggen uit welke instellingen een betaald abonnement vereisen.\"],\"VmdouC\":[\"Werkruimte-account\"],\"Zqthj7\":[\"Werkruimte-acties\"],\"ZBKhLV\":[\"Werkruimte aangemaakt.\"],\"xM1hP9\":[\"Werkruimtestandaard\"],\"UlhdTP\":[\"Werkruimte verwijderd\"],\"Ep8k4i\":[\"Werkruimte is vol\"],\"Y0Fj4S\":[\"Werkruimtelogo\"],\"CozWO1\":[\"Naam van de werkruimte\"],\"dg0Efy\":[\"Naam van de werkruimte. Wordt automatisch opgeslagen.\"],\"QGaOM/\":[\"Werkruimterechten, ledentellingen en het laden van accountgegevens zijn gecorrigeerd.\"],\"wHWiPE\":[\"Werkruimte hernoemd\"],\"Knd6gz\":[\"Werkruimte-instellingen\"],\"XAW6X5\":[\"Werkruimte-instellingen | dembrane\"],\"wowvFW\":[\"Gast met alleen toegang tot de werkruimte. Niet toegevoegd aan de organisatie.\"],\"JKU2hI\":[\"werkruimtes\"],\"pmt7u4\":[\"Werkruimtes\"],\"YRelrK\":[\"Werkruimtes apart gefactureerd\"],\"vMCu+n\":[\"Werkruimtes in dit account\"],\"XLYmK5\":[\"Werkruimtes in deze organisatie waar je nog geen lid van bent. Als admin kun je jezelf toevoegen om ze te beheren.\"],\"lBVr4U\":[\"Werkruimtes die met je zijn gedeeld\"],\"++IGvT\":[\"Werkruimtes waar je lid van kunt worden\"],\"JEHySj\":[\"Werkruimtes waarvoor je bent uitgenodigd. Accepteer om te gaan samenwerken.\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"0OzGcI\":[\"Schrijf eigen hostprompts voor verificatie door deelnemers.\"],\"HLUYL3\":[\"Schrijf eigen verificatievragen, genereer uitkomsten in je projecttaal en herinner deelnemers eraan te verifiëren voor ze afronden. Configureer instellingen per rechtsgrond.\"],\"Exc/LI\":[\"Verkeerd adres? E-mail wijzigen\"],\"bmC+Ww\":[\"Verkeerde taal of toon\"],\"MNTYHt\":[\"Verkeerde bronnen\"],\"l75CjT\":[\"Ja\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"av/PD9\":[\"jou\"],\"kWJmRL\":[\"Jij\"],\"VHG+Js\":[\"Je hebt al toegang tot deze werkruimte.\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"Je zit op het gratis plan.\"],\"Arw/sv\":[\"Je zit op het gratis plan. Er is nog niets te betalen.\"],\"rKP2WF\":[\"Jij bent de data-eigenaar\"],\"EDIsb+\":[\"Je kunt dit altijd aanpassen in de instellingen.\"],\"fzU5ll\":[\"Je kunt dit later aanpassen in de projectinstellingen.\"],\"dWZJqc\":[\"Je kunt dit later aanpassen in de werkruimte-instellingen nadat je factuurgegevens hebt toegevoegd.\"],\"uGP87g\":[\"Je kunt dit later aanpassen in de werkruimte-instellingen.\"],\"WS92Fk\":[\"Je kunt wegnavigeren en later terugkomen. Je rapport wordt op de achtergrond verder gegenereerd.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"+IqtlU\":[\"Je kunt ze later opnieuw uitnodigen vanuit elke werkruimte.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"U kunt het hieronder opnieuw proberen.\"],\"96ERwL\":[\"Je kunt nog geen werkruimte aanmaken\"],\"bHCu+u\":[\"Je kunt jezelf niet uitnodigen.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"Je hebt geen toestemming om te transcriberen in dit project.\"],\"UjkUrJ\":[\"Je hebt geen toegang tot deze werkruimte.\"],\"3x5+PU\":[\"Je hebt geen rechten om werkruimtes aan te maken in die organisatie. We vallen terug op je primaire organisatie.\"],\"fkXBUO\":[\"Je hebt geen rechten om uit te nodigen voor een werkruimte in deze organisatie.\"],\"QYdixc\":[\"Je hebt een openstaande uitnodiging\"],\"ombH/9\":[\"Je hebt een openstaande uitnodiging voor \",[\"0\"],\". Open deze om lid te worden van de organisatie.\"],\"8v7ix0\":[\"Je hebt een openstaande uitnodiging voor \",[\"0\"],\". De beheerder moet een plek vrijmaken voordat je lid kunt worden.\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"fopZ8o\":[\"Je hebt supporttoegang tot deze werkruimte. Deze stopt automatisch op \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"Je bent nog geen lid van een werkruimte in deze organisatie.\"],\"participant.modal.verify_prompt.description\":[\"Je hebt nog geen resultaten geverifieerd. Wil je verifiëren voordat je afsluit?\"],\"PjAkjf\":[\"Je hebt de werkruimte verlaten\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"t6Ti2e\":[\"Je hebt een uitnodiging van een collega nodig\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"MLw3ff\":[\"Je hebt deze run gestopt.\"],\"zlqA7w\":[\"Je probeerde \",[\"action\"],\".\"],\"N/N2Av\":[\"Je wordt als admin toegevoegd aan \",[\"0\"],\" privéwerkruimtes. Ze verschijnen daarna meteen in je zijbalk.\"],\"cehffY\":[\"Je wordt als admin toegevoegd aan \",[\"singleName\"],\". Die verschijnt daarna meteen in je zijbalk.\"],\"OR5x71\":[\"Al je projecten staan voor je klaar.\"],\"hu3KYo\":[\"Je komt in een chat waar dembrane je helpt het project vorm te geven, voordat je gesprekken verzamelt.\"],\"OQI3hm\":[\"Je verliest toegang tot deze werkruimte.\"],\"bX2FeG\":[\"Je verliest toegang tot deze werkruimte. Projecten die je hebt gemaakt blijven; je rol hier wordt verwijderd.\"],\"participant.verify.instructions.receive.artefact\":[\"Je ontvangt zo meteen \",[\"objectLabel\"],\" om te verifiëren.\"],\"gDdsRc\":[\"Je bevestigt je nieuwe betaalmethode op het volgende scherm. Er wordt niets in rekening gebracht, het bevestigt alleen de nieuwe kaart.\"],\"vkNkB8\":[\"Je staat op het punt je eigen rol te wijzigen naar <0>\",[\"0\"],\". Je verliest direct toegang tot de instellingen van de werkruimte, uitnodigingen en ledenbeheer.\"],\"KS7iJH\":[\"Je bent helemaal bij.\"],\"ADMWt4\":[\"Je bent al lid van \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"Je zit al in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"Je bent een externe medewerker in deze organisatie. Open hieronder een van de werkruimtes die met je zijn gedeeld.\"],\"bbvEPE\":[\"Je zit erin\"],\"LfpEZ9\":[\"Je logt in met het verkeerde e-mailadres\"],\"PVUJ6+\":[\"Je zit nog in geen enkele organisatie. Maak een werkruimte om een organisatie te starten, of vraag een lid om een uitnodiging.\"],\"Y3LcET\":[\"Je maakt op dit moment deel uit van geen enkele organisatie.\"],\"FQdXKc\":[\"Je hergebruikt plekken waarvoor je deze periode al hebt betaald (iemand is vertrokken), dus daar wordt nu niets voor in rekening gebracht. De verlenging houdt er rekening mee.\"],\"HnqO9D\":[\"Je bent de enige beheerder. Maak iemand anders beheerder voordat je je rol wijzigt.\"],\"AcL9Ou\":[\"Je bent uitgenodigd om samen te werken met \",[\"0\"],\" organisaties. We nemen je mee zodra je doorgaat.\"],\"cZ4+ZH\":[\"Je bent uitgenodigd om samen te werken met <0>\",[\"0\"],\". We brengen je er zo naartoe.\"],\"ePJQ19\":[\"Je bent uitgenodigd voor \",[\"0\"],\" organisaties. We nemen je mee zodra je doorgaat.\"],\"RTgVkc\":[\"Je bent uitgenodigd voor <0>\",[\"0\"],\". We brengen je er zo naartoe.\"],\"189Q0c\":[\"Je hebt de limiet van het gratis plan voor deze chat bereikt. Upgrade om verder te chatten.\"],\"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.\"],\"snxpiF\":[\"jij@voorbeeld.nl\"],\"M5ub3j\":[\"Jouw toegang\"],\"WIv0oz\":[\"Jouw toegang tot \",[\"0\"],\" eindigde op \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Jouw goedkeuring helpt ons begrijpen wat je echt denkt!\"],\"wmkjMv\":[\"Je browser blokkeert de microfoon. Geef toegang en probeer het opnieuw.\"],\"NzCkyb\":[\"Je afspraak is geboekt: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Je afspraak is geboekt.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Jouw gegevens\"],\"lRpeom\":[\"Je concept wordt niet opgeslagen.\"],\"z8F4/3\":[\"Jouw e-mailadres\"],\"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.\"],\"vaTeZ3\":[\"Je feedback en dit antwoord gaan naar het dembrane-team.\"],\"DM8bIO\":[\"Je gratis plan bevat één rapport. Upgrade om er meer te maken.\"],\"+Tx3/U\":[\"Je gratis uur voor transcriptie is opgebruikt.\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"Yo3xGL\":[\"Je uitnodiging staat nog open. Probeer het opnieuw zodra de beheerder een plek vrijmaakt of de werkruimte upgradet.\"],\"aCpo/d\":[\"Je uitnodiging is al geaccepteerd, maar je bent geen lid meer van \",[\"resolvedWorkspaceName\"],\". Vraag de beheerder om je opnieuw uit te nodigen.\"],\"/Mqhsc\":[\"Je laatste betaling is niet gelukt. Je abonnement blijft actief. Werk je betaalmethode bij of probeer de betaling opnieuw om het recht te zetten.\"],\"1Uvqtx\":[\"De generatie van je laatste rapport is geannuleerd. Je meest recente voltooide rapport wordt getoond.\"],\"JgZh6f\":[\"Je logo is nog actief, maar kan op dit niveau niet worden gewijzigd.\"],\"q8yluz\":[\"Uw naam\"],\"VSneAo\":[\"Je naam, e-mailadres en huidige pagina worden meegestuurd zodat we contact kunnen opnemen.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Je eigen logo is beschikbaar met een betaald abonnement.\"],\"YEPYkg\":[\"Je eigen ledenkaart blijft bovenaan de lijst staan.\"],\"ArN1eD\":[\"Je betaalde periode is afgelopen, dus we kunnen dit abonnement hier niet meer aanzetten. Mail support@dembrane.com, dan lossen we het samen met je op.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Je abonnement is geregeld met dembrane, dus hier valt niets te betalen. Alles wat in je abonnement zit blijft beschikbaar.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Je abonnement wordt niet verlengd. Je houdt toegang tot het einde van de periode.\"],\"pYnFb6\":[\"Je opname, \",[\"0\"]],\"MBrtod\":[\"Je aanvraag is binnen.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"DrJCbp\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten. Je kunt ook nog een gesprek opnemen of de QR-code delen zodat anderen kunnen bijdragen.\"],\"7i36j4\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten. Je kunt ook de QR-code delen zodat anderen kunnen bijdragen, of nog een gesprek opnemen.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lWeANa\":[\"Je werkruimte staat klaar. Klik op doorgaan om samen te werken.\"],\"crrqaX\":[\"jr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"Je bent niet ingelogd\"],\"You don't have permission to access this.\":[\"Je hebt geen toegang tot deze pagina.\"],\"Resource not found\":[\"Resource niet gevonden\"],\"Server error\":[\"Serverfout\"],\"Something went wrong\":[\"Er is iets fout gegaan\"],\"We're preparing your workspace.\":[\"We bereiden je werkruimte voor.\"],\"Preparing your dashboard\":[\"Dashboard klaarmaken\"],\"Welcome back\":[\"Welkom terug\"],\"participant.button.back.microphone\":[\"Terug naar microfoon\"],\"participant.mic.check.button.skip\":[\"Overslaan\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\"Het genereren van een bibliotheek kan tot een uur duren\"],\"uDvV8j\":[\" Verzenden\"],\"aMNEbK\":[\" Afmelden voor meldingen\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" binnenkort beschikbaar\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Verkennen\\\" binnenkort beschikbaar\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verifiëren\\\" binnenkort beschikbaar\"],\"XGun3K\":[\"(directe toegang tot werkruimte)\"],\"ls1N1w\":[\"(ontbreekt)\"],\"B/gRsg\":[\"(geen)\"],\"NzluOx\":[\"(optioneel)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(onbekend)\"],\"dDUgzP\":[\"(Jij)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" werkruimte)\"],\"other\":[\"(\",\"#\",\" werkruimtes)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" overeenkomst\"],\"other\":[\"#\",\" overeenkomsten\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio gestopt\"],\"other\":[\"#\",\" audio gestopt\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek kon niet aan deze chat worden toegevoegd.\"],\"other\":[\"#\",\" gesprekken konden niet aan deze chat worden toegevoegd.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek wordt hiermee ook verborgen.\"],\"other\":[\"#\",\" gesprekken worden hiermee ook verborgen.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" lid\"],\"other\":[\"#\",\" leden\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" betaling\"],\"other\":[\"#\",\" betalingen\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projecten\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" geselecteerd\"],\"other\":[\"#\",\" geselecteerd\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" in transcriptie\"],\"other\":[\"#\",\" in transcriptie\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" met fouten\"],\"other\":[\"#\",\" met fouten\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" woord toegevoegd\"],\"other\":[\"#\",\" woorden toegevoegd\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" woord verwijderd\"],\"other\":[\"#\",\" woorden verwijderd\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focus op \",\"#\",\" gesprek:\"],\"other\":[\"Focus op \",\"#\",\" gesprekken:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Bericht van dembrane\"],\"other\":[\"Berichten van dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Verplaats \",\"#\",\" project naar een andere werkruimte.\"],\"other\":[\"Verplaats \",\"#\",\" projecten naar een andere werkruimte.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Laat zien wat er verandert (\",\"#\",\" veld)\"],\"other\":[\"Laat zien wat er verandert (\",\"#\",\" velden)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"#\",\" gesprek in gebruik:\"],\"other\":[\"#\",\" gesprekken in gebruik:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (standaard)\"],\"r/Wlfo\":[[\"0\"],\" / plek / maand × \",[\"1\"],\", jaarlijks gefactureerd. Exclusief btw.\"],\"bBa8T+\":[[\"0\"],\" / plek × \",[\"1\"],\". Exclusief btw.\"],\"eysOsc\":[[\"0\"],\" / plek × \",[\"1\"],\". Wordt na deze periode niet meer in rekening gebracht.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" werkruimtes, \",[\"2\"],\" actief\"],\"xfMOtJ\":[[\"0\"],\" over alles\"],\"RKutZY\":[[\"0\"],\" actief\"],\"select.all.modal.added.count\":[[\"0\"],\" toegevoegd\"],\"q87k+2\":[[\"0\"],\" toegevoegd vanuit je organisatie\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Gesprekken • Bewerkt \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" verwijderd\"],\"6Re9LE\":[[\"0\"],\" van dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" zit nog niet in deze werkruimte.\"],\"RZUJFH\":[[\"0\"],\" zit nog niet in deze werkruimte. Vraag een werkruimtebeheerder om deze persoon uit te nodigen.\"],\"iOmAhc\":[[\"0\"],\" zit nog niet in deze werkruimte. Stuur een uitnodiging en deel dit project zodra ze meedoen.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" niet toegevoegd\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" van \",[\"1\"],\" leden zijn getraind.\"],\"uQcaBv\":[[\"0\"],\" van \",[\"1\"],\" getraind\"],\"lOn63U\":[[\"0\"],\" mensen zitten nog niet in deze werkruimte.\"],\"E6f0Mh\":[[\"0\"],\" mensen zitten nog niet in deze werkruimte. Vraag een werkruimtebeheerder om ze uit te nodigen.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" totaal stijgt naar \",[\"1\"],\" zodra \",[\"pendingInvites\"],\" openstaande \",[\"2\"],\" geaccepteerd\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" weergaven\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" werkruimtes · \",[\"1\"],\" betaalde plekken · \",[\"2\"],\" gratis waarnemers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" werkruimtes, \",[\"1\"],\" plekken gedeeld\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", werkruimte-id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" persoon\"],\"other\":[\"#\",\" personen\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" persoon\"],\"other\":[\"#\",\" personen\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" mensen waren al uitgenodigd. Het project wordt gedeeld zodra ze meedoen.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" gratis\"],\"other\":[\"#\",\" gratis\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" gesprekken • Bewerkt \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" geselecteerd\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" items in geschiedenis\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% korting toegepast\"],\"0jXKsc\":[[\"email\"],\" heeft al een openstaande uitnodiging voor een ander project. Deel dit project zodra ze meedoen.\"],\"zB7Coe\":[[\"email\"],\" staat op de lijst met openstaande uitnodigingen, maar de e-mail kon niet worden verstuurd. Stuur hem opnieuw vanuit Leden.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" gesprek heeft nog geen transcript, dus het is weggelaten.\"],\"other\":[\"#\",\" gesprekken hebben nog geen transcript, dus ze zijn weggelaten.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Momenteel is \",\"#\",\" gesprek klaar om te worden geanalyseerd.\"],\"other\":[\"Momenteel zijn \",\"#\",\" gesprekken klaar om te worden geanalyseerd.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[\"Voor het gesprek leest \",[\"host\"],\" je antwoorden en neemt een conceptvoorstel mee.\"],\"XrsLMx\":[[\"invalidCount\"],\" adressen hebben aandacht nodig\"],\"GxhS2s\":[[\"inviterName\"],\" heeft je uitgenodigd voor \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Verwijder het \",\"#\",\" project in deze werkruimte voordat je de werkruimte zelf verwijdert.\"],\"other\":[\"Verwijder de \",\"#\",\" projecten in deze werkruimte voordat je de werkruimte zelf verwijdert.\"]}]],\"YtOXS1\":[\"Gesprek van \",[\"name\"]],\"lJ6xri\":[\"Transcriptfragment van \",[\"name\"]],\"P9UcSP\":[[\"names\"],\" en nog \",[\"extra\"]],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" personen meer\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" gesprek paste niet in deze chat. Start een nieuwe chat voor de rest.\"],\"other\":[\"#\",\" gesprekken pasten niet in deze chat. Start een nieuwe chat voor de rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" uitnodiging(en) in afwachting. Telt mee zodra geaccepteerd.\"],\"lEeV+7\":[[\"person\"],\" verliest toegang tot elke werkruimte in deze organisatie. Directe uitnodigingen voor werkruimtes blijven intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Gericht op \",\"#\",\" gesprek\"],\"other\":[\"Gericht op \",\"#\",\" gesprekken\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"#\",\" gesprek in gebruik\"],\"other\":[\"#\",\" gesprekken in gebruik\"]}]],\"TVD5At\":[[\"readingNow\"],\" leest nu\"],\"/+py6Q\":[[\"seats\"],\" plekken\"],\"ArGmEy\":[[\"selectedCount\"],\" van \",[\"totalCount\"],\" velden geselecteerd. Accepteren geldt alleen voor de aangevinkte velden.\"],\"odzwX/\":[[\"sent\"],\" uitnodigingen verstuurd\"],\"l8fzDs\":[[\"sent\"],\" uitnodigingen verstuurd. Het project wordt gedeeld zodra ze meedoen.\"],\"dmKaRr\":[[\"sentCount\"],\" uitnodigingen verstuurd.\"],\"qzj8O/\":[[\"tag\"],\" (vooraf gekozen)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" actief\"],\"other\":[\"#\",\" actief\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisatie\"],\"other\":[\"#\",\" organisaties\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" werkruimte\"],\"other\":[\"#\",\" werkruimtes\"]}]],\"library.conversations.still.processing\":[[\"0\"],\" worden nog verwerkt.\"],\"ZpJ0wx\":[\"*Een moment a.u.b.*\"],\"lDyo+I\":[\"/zetel/mnd · jaarlijks gefactureerd\"],\"u5M/5B\":[\"/zetel/mnd · maandelijks gefactureerd\"],\"RuXuwk\":[\"+\",[\"0\"],\" meer\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" gesprekken\"],\"VAhv7y\":[\"€\",[\"0\"],\" per stuk, boven de inbegrepen \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra deelnemer\"],\"+Tssgi\":[\"€150 / zetel / maand\"],\"NPPhXn\":[\"€20 / zetel / maand\"],\"XlCmuS\":[\"€75 / zetel / maand\"],\"LeFXS1\":[\"0 Aspecten\"],\"r3PXp+\":[\"1 adres vraagt om aandacht\"],\"N0QWsI\":[\"1 u opname\"],\"2BWxOx\":[\"1 item in geschiedenis\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 weergave\"],\"AeSuqs\":[\"1. Je geeft een URL op waar je meldingen wilt ontvangen\"],\"9u4NIb\":[\"16 tot 40.\"],\"WehR9U\":[\"2 maanden geleden\"],\"gGr93M\":[\"2 tot 5.\"],\"L9boOH\":[\"2. Wanneer een gesprek of rapport plaatsvindt, sturen we de data automatisch naar je URL\"],\"VaA9mu\":[\"24 uur\"],\"RkmegJ\":[\"250 tot 1000.\"],\"7ZrpGs\":[\"3 dagen\"],\"lxBOZP\":[\"3 maanden geleden\"],\"WiUXLq\":[\"3. Uw systeem ontvangt de gegevens en kan erop reageren (bijvoorbeeld opslaan in een database, e-mail verzenden, spreadsheet bijwerken)\"],\"c5EE1L\":[\"50 tot 250.\"],\"rV+scO\":[\"6 tot 15.\"],\"34Qhax\":[\"8 uur\"],\"aFDk6y\":[\"Een paar korte vragen en je bent binnen.\"],\"Ddr+Kq\":[\"Een app_user-id van dembrane-personeel. De server controleert het @dembrane.com-adres.\"],\"iqgpeQ\":[\"Bij een downgrade gelden de downgrade-effecten uit de matrix en krijgen de admins van de werkruimte bericht. Bij een betaald tier gaat het account over op facturatie via dembrane.\"],\"thilZ0\":[\"Een downgrade beperkt functies direct.\"],\"wsTrfq\":[\"Zodra de eerste versie klaar is, verschijnt die hier.\"],\"D+aQ7R\":[\"Een vriendelijke naam om dit webhook te identificeren\"],\"GrwZLh\":[\"Een link Help ons vertalen nodigt uit om mee te vertalen. Een volledige Italiaanse interfacevertaling is niet inbegrepen.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Betrouwbaarder audio uploaden\"],\"XPY0OE\":[\"Een nieuwe assistent en een live monitor\"],\"z9VxrW\":[\"Er wordt automatisch een nieuw rapport gegenereerd en gepubliceerd op het geplande tijdstip.\"],\"sy1BvY\":[\"Een deelnemersportaal om gesprekken op te nemen.\"],\"zm7GU7\":[\"Een link naar het privacybeleid is verplicht voor verwerking op basis van toestemming. De link moet beginnen met http:// of https:// en mag maximaal 255 tekens bevatten.\"],\"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.\"],\"lN8IO2\":[\"Een schatting of \\\"weet ik nog niet\\\". Met allebei kunnen we verder.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"Een zetel is één lid. Voeg leden toe of verwijder ze in het tabblad Mensen van elke werkruimte; je volgende afschrijving past zich automatisch aan.\"],\"hyYKSp\":[\"Een zetel is één lid. Zetels blijven beschikbaar tot het abonnement eindigt; wijzigingen worden niet in rekening gebracht.\"],\"SpaKQm\":[\"Een aparte context voor data-eigendom en facturering. Je kunt deze later overdragen aan die organisatie zonder data te verplaatsen.\"],\"GhjsDN\":[\"Een korte tekst die op het organisatieoverzicht wordt getoond.\"],\"F9QjSt\":[\"Een korte notitie over waar dit project over gaat. Je kunt dit later aanpassen.\"],\"dNbbpo\":[\"Een soepelere plek voor je gesprekken\"],\"j2mO8+\":[\"een werkruimte\"],\"kO7Ugp\":[\"Over de voorgestelde projectupdate: \",[\"hostNote\"]],\"2rz0sA\":[\"Over jou\"],\"g3UF2V\":[\"Accepteren\"],\"Q74FZp\":[\"Accepteren en deelnemen\"],\"JAvG0l\":[\"Voorwaarden geaccepteerd\"],\"LuXP9q\":[\"Toegang\"],\"rOvy9I\":[\"Toegangsinstellingen leggen uit wanneer je eerst lid moet worden van een werkruimte.\"],\"qLcf0w\":[\"Toegang stopt op\"],\"5RckdQ\":[\"Access expires after\"],\"18D/K9\":[\"Toegang verleend voor 24 uur.\"],\"HlgFV1\":[\"Toegangsgeschiedenis\"],\"6NLtuJ\":[\"Toegangsverzoek goedgekeurd\"],\"RpdQvB\":[\"Toegangsverzoek geweigerd\"],\"FmhC27\":[\"Toegangsverzoek verlopen\"],\"pyPxxw\":[\"Toegangsverzoek ingetrokken\"],\"ekMaJX\":[\"Toegangsverzoeken\"],\"AeXO77\":[\"Account\"],\"vZEmNi\":[\"Account en beveiliging\"],\"K3wUdw\":[\"Accountstandaard\"],\"g9NChz\":[\"Accountmanager\"],\"/8wINa\":[\"Accountmanager toegewezen.\"],\"Q+M1Ej\":[\"Account overgezet naar self-service facturatie.\"],\"DX/Wkz\":[\"Accountwachtwoord\"],\"Euv0O8\":[\"Account overgezet naar facturatie via dembrane.\"],\"A7C5YV\":[\"Account op beheerd gezet.\"],\"0qqrUz\":[\"Gefactureerde accounts\"],\"L5gswt\":[\"Actie door\"],\"7U5F+i\":[\"Actie nodig\"],\"UQXw0W\":[\"Actie op\"],\"7L01XJ\":[\"Acties\"],\"F6pfE9\":[\"Actief\"],\"3976bh\":[\"Actief · \",[\"0\"]],\"select.all.modal.loading.filters\":[\"Actieve filters\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Toevoegen\"],\"4USg1N\":[[\"0\"],\" toevoegen aan \",[\"1\"],\" als <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Voeg een gesprek direct toe aan de chatcontext.\"],\"uyE3Y1\":[\"Voeg een lid toe en kies de toegang.\"],\"o1Svup\":[\"Voeg een naam en een prompt toe voordat je dit toepast.\"],\"kKuKkg\":[\"Voeg een naam, beschrijving en framing toe.\"],\"5xxrhm\":[\"Notitie toevoegen\"],\"Cf2umO\":[\"Voeg een projectdoel toe voordat je opslaat.\"],\"pVTvYj\":[\"een werkruimte toe te voegen\"],\"1m+3Z3\":[\"Voeg extra context toe (Optioneel)\"],\"Se1KZw\":[\"Vink aan wat van toepassing is\"],\"L1uMzn\":[\"Nog een toevoegen\"],\"LvDRbs\":[\"Toevoegen via e-mail\"],\"FXfXPD\":[\"Voeg gesprekstags toe vanuit het dashboard.\"],\"XXmtxs\":[\"Voeg gesprekken toe aan chatcontext, gebruik verbeterde vraagsjablonen en werk met vernieuwde transcriptieopties. Ondersteunende citaten en vertalingen zijn verbeterd.\"],\"select.all.modal.title.add\":[\"Gesprekken toevoegen aan context\"],\"8T7YRB\":[\"Voeg eerst gesprekken toe aan je project\"],\"LL1rvo\":[\"Aangepast onderwerp toevoegen\"],\"0qHnFM\":[\"Voeg doeltekst toe voordat je dit toepast.\"],\"5phU36\":[\"Afbeeldingen toevoegen\"],\"1xDwr8\":[\"Voeg belangrijke woorden of namen toe om de kwaliteit en nauwkeurigheid van het transcript te verbeteren.\"],\"ndpRPm\":[\"Voeg nieuwe opnames toe aan dit project. Bestanden die u hier uploadt worden verwerkt en verschijnen in gesprekken.\"],\"uqLJli\":[\"Voeg mensen toe via e-mail. Wie nog niet in de werkruimte zit, krijgt een uitnodiging en toegang tot dit project zodra ze meedoen.\"],\"1G8+6T\":[\"Voeg mensen toe via e-mail. Wie nog niet in deze werkruimte zit, krijgt een uitnodiging en het project wordt gedeeld zodra ze meedoen.\"],\"ymW+mN\":[\"Voeg mensen uit je organisatie toe\"],\"Ralayn\":[\"Trefwoord toevoegen\"],\"add.tag.filter.modal.title\":[\"Tag toevoegen aan filters\"],\"IKoyMv\":[\"Trefwoorden toevoegen\"],\"b6Sm+u\":[\"Toevoegen aan \",[\"0\"],\"?\"],\"jo1zkp\":[\"Toevoegen aan Chat\"],\"add.tag.filter.modal.add\":[\"Toevoegen aan filters\"],\"NffMsn\":[\"Voeg toe aan dit gesprek\"],\"P4Egjx\":[\"Toevoegen aan werkruimtes\"],\"6Xm4X2\":[\"Onderwerp toevoegen\"],\"AHaRrL\":[\"Vertalingen toevoegen\"],\"yFRVHT\":[\"Verificatieprompt toevoegen\"],\"QN2F+7\":[\"Webhook toevoegen\"],\"UZ07em\":[\"Voeg uw eerste webhook toe\"],\"x2dB2O\":[\"je logo toe te voegen\"],\"hp8OtS\":[\"Toegevoegd\"],\"select.all.modal.added\":[\"Toegevoegd\"],\"QKlADn\":[[\"0\"],\" mensen toegevoegd\"],\"z9TWoF\":[[\"granted\"],\" mensen toegevoegd\"],\"q+wngh\":[\"Toegevoegd en gedeeld\"],\"Na90E+\":[\"Toegevoegde e-mails\"],\"uVX6Vk\":[\"Toegevoegd aan werkruimte\"],\"yg5kon\":[\"Je bent toegevoegd aan \",[\"okCount\"],\" werkruimtes\"],\"ZncK2m\":[\"Je bent toegevoegd aan \",[\"okCount\"],\". \",[\"0\"],\" konden niet worden toegevoegd, probeer opnieuw.\"],\"lQmOCQ\":[\"Je bent toegevoegd aan 1 werkruimte\"],\"54QrMC\":[\"Als je er \",[\"pendingCount\"],\" toevoegt, gaat deze werkruimte over de zetellimiet. Extra zetels worden gefactureerd tegen het tarief van de werkruimte.\"],\"select.all.modal.add.without.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen aan de chat\"],\"select.all.modal.add.with.filters\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.add.without.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen\"],\"select.all.modal.add.with.filters.more\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" extra gesprek\"],\"other\":[\"#\",\" extra gesprekken\"]}],\" toevoegen met de volgende filters:\"],\"select.all.modal.loading.title\":[\"Gesprekken toevoegen\"],\"Du6bPw\":[\"Adres\"],\"NY/x1b\":[\"Adresregel 1\"],\"cormHa\":[\"Adresregel 2\"],\"CA/Ul9\":[\"Pas de basislettergrootte voor de interface aan\"],\"U3pytU\":[\"Beheerder\"],\"84oArf\":[\"Beheerdersdashboard\"],\"HJ47wa\":[\"Hier beheerder via organisatierol\"],\"uYQEe4\":[\"Beheerder, dembrane\"],\"eC58+P\":[\"Beheerders\"],\"CLlKPV\":[\"Beheerders hebben toegang tot elke werkruimte in deze organisatie. Leden en externen zien alleen de werkruimtes waartoe ze toegang hebben gekregen.\"],\"sxkWRg\":[\"Geavanceerd\"],\"OaKXud\":[\"Geavanceerd (Tips en best practices)\"],\"JiIKww\":[\"Geavanceerde instellingen\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent-run mislukt\"],\"6iJVJD\":[\"Agentisch\"],\"vaeE5W\":[\"Agentisch - Tool-gestuurd uitvoering\"],\"I1JKlv\":[\"Agentische chat\"],\"N40H+G\":[\"Alles\"],\"cF7bEt\":[\"Alle acties\"],\"O1367B\":[\"Alle collecties\"],\"gvykaX\":[\"Alle gesprekken\"],\"u/fl/S\":[\"Alle bestanden zijn succesvol geüpload.\"],\"zG6Ooi\":[\"Alle projecten\"],\"ynXPFB\":[\"Alles gelezen\"],\"52imBJ\":[\"Alle releases op GitHub\"],\"W/4/mV\":[\"Alle plekken in dit niveau zijn bezet. Verwijder een lid of externe, of upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"XQ7aEI\":[\"Alle plekken zijn bezet. Maak een plek vrij of upgrade om meer mensen uit te nodigen.\"],\"X3FPsl\":[\"Alle plekken bezet\"],\"NGO2th\":[\"Alle sjablonen\"],\"IOEBQh\":[\"Alle niveaus\"],\"dYoI9C\":[\"Alle zichtbare gesprekken geselecteerd\"],\"AWdiC+\":[\"Alle werkruimtes\"],\"wm3Zlr\":[\"Alle jaren\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Geef dembrane-medewerkers toegang tot deze werkruimte voor support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Al uitgenodigd. Het project wordt gedeeld zodra ze meedoen.\"],\"3lBGEC\":[\"Al gebruikt in deze chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Altijd aan, het staat op onze website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"Een burgerberaad.\"],\"jIoHDG\":[\"Een e-mail melding wordt naar \",[\"0\"],\" deelnemer\",[\"1\"],\" verstuurd. Wilt u doorgaan?\"],\"8q/YVi\":[\"Er is een fout opgetreden bij het laden van de Portal. Neem contact op met de ondersteuningsteam.\"],\"XyOToQ\":[\"Er is een fout opgetreden.\"],\"iRgQMM\":[\"Een evenement of workshop.\"],\"zqhMd0\":[\"Er ging iets onverwachts mis. Opnieuw laden of teruggaan naar home helpt meestal.\"],\"F4cOH1\":[\"Analyse taal\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyseer deze elementen met diepte en nuance. Neem de volgende punten in acht:\\n\\nFocus op verrassende verbindingen en contrasten\\nGa verder dan duidelijke oppervlakte-niveau vergelijkingen\\nIdentificeer verborgen patronen die de meeste analyses missen\\nBlijf analytisch exact terwijl je aantrekkelijk bent\\n\\nOpmerking: Als de vergelijkingen te superficieel zijn, laat het me weten dat we meer complex materiaal nodig hebben om te analyseren.\"],\"Dzr23X\":[\"Meldingen\"],\"w6zk79\":[\"Aankondigingen veroorzaken geen herhaalde meldingspop-ups meer.\"],\"n9aGa5\":[\"Aankondigingen zonder vervaldatum zijn weer zichtbaar.\"],\"AWZZ+1\":[\"Anonimiseer persoonsgegevens in transcripties. Bij geanonimiseerde gesprekken zijn audio afspelen en downloaden uitgeschakeld.\"],\"J8yrvq\":[\"Transcripten anonimiseren\"],\"QgPWYr\":[\"Geanonimiseerde transcripties hebben duidelijkere labels.\"],\"M8cgTa\":[\"Transcript anonimiseren\"],\"gd1W+U\":[\"Transcripten anoniem maken\"],\"YdiKaK\":[\"anoniem gesprek\"],\"iPiP6k\":[\"Anoniem gesprek\"],\"D9CFV5\":[\"Anoniem\"],\"Pg5/xn\":[\"Anonieme deelnemer\"],\"SEllfL\":[\"Anonieme bezoeker\"],\"t2jB92\":[\"Een andere admin of eigenaar moet je herstellen.\"],\"6GojWN\":[\"Elke tag\"],\"FnbCx1\":[\"Iedereen in je organisatie kan deze werkruimte vinden. Admins kunnen meteen meedoen, leden kunnen toegang aanvragen.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Nog iets anders nodig?\"],\"isAHo8\":[\"Wil je nog iets anders delen\"],\"kR5k2j\":[\"Nog iets?\"],\"N1Wkmw\":[\"Is er iets dat we beter hadden kunnen doen?\"],\"sMMWxH\":[\"Wil je nog iets toevoegen\"],\"aAIQg2\":[\"Weergave\"],\"9+QMn9\":[\"Toegepast. Het canvas toont nu dit ontwerp en houdt het actueel.\"],\"HMzKuc\":[\"Past deze formulering en het verversgedrag toe op het bestaande canvas.\"],\"DB8zMK\":[\"Toepassen\"],\"4TwsNi\":[\"Sjabloon toepassen\"],\"AhHy/i\":[\"Na het toepassen van een template verschijnt een bevestiging met Ongedaan maken.\"],\"5swDY2\":[\"Bijna een limiet bereikt deze maand\"],\"z0ccuc\":[\"Bijna aan de limiet: \",[\"0\"],\" / 32.000 tekens\"],\"Z7ZXbT\":[\"Goedkeuren\"],\"participant.concrete.action.button.approve\":[\"Goedkeuren\"],\"m14CS3\":[\"Goedkeuren voor 24 uur\"],\"1kA9Tv\":[\"Supporttoegang goedkeuren\"],\"conversation.verified.approved\":[\"Goedgekeurd\"],\"tq+4rb\":[\"Weet je zeker dat je de webhook \\\"\",[\"0\"],\"\\\" wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"uqhbrg\":[\"Weet je zeker dat je deze chat wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.\"],\"Q5Z2wp\":[\"Weet je zeker dat je dit gesprek wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"yrk3z3\":[\"Weet je zeker dat je dit aangepaste onderwerp wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"YF1Re1\":[\"Weet je zeker dat je dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"ELQ+fw\":[\"Weet je zeker dat je dit rapport wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"aUsm4A\":[\"Weet je zeker dat je dit trefwoord wilt verwijderen? Dit zal het trefwoord verwijderen uit bestaande gesprekken die het bevatten.\"],\"e3BGhi\":[\"Weet u zeker dat u dit sjabloon wilt verwijderen? Dit kan niet ongedaan worden gemaakt.\"],\"participant.modal.finish.message.text.mode\":[\"Weet je zeker dat je het wilt afmaken?\"],\"sOql0x\":[\"Weet je zeker dat je de bibliotheek wilt genereren? Dit kan een tijdje duren en overschrijft je huidige views en insights.\"],\"UXCOMn\":[\"Weet je zeker dat je het samenvatting wilt hergenereren? Je verliest de huidige samenvatting.\"],\"ZmeZPn\":[\"Weet je zeker dat je je avatar wilt verwijderen?\"],\"wQ5jM6\":[\"Weet je zeker dat je je aangepaste logo wilt verwijderen? Het standaard dembrane-logo wordt in plaats daarvan gebruikt.\"],\"Wh64Gd\":[\"Geregeld met dembrane\"],\"F+vBv0\":[\"Stel vraag\"],\"VttPAe\":[\"Vragen | dembrane\"],\"Djkxtl\":[\"Stel een vraag over de gesprekken in dit project, of vraag hulp bij het opzetten ervan. Elke wijziging wordt eerst ter beoordeling voorgesteld en er wordt niets opgeslagen totdat je het goedkeurt.\"],\"2QOQAV\":[\"Vraag een admin van de werkruimte om een uitnodiging, of kies een andere werkruimte uit je lijst.\"],\"Z6YTnr\":[\"Vraag een werkruimtebeheerder om deze persoon uit te nodigen.\"],\"jPTnVt\":[\"Stel vragen over de app.\"],\"7edAaq\":[\"Hierover vragen\"],\"9pDK3A\":[\"Vraag iets over je gesprekken...\"],\"lCenB6\":[\"Vraag om e-mail?\"],\"Rjlwvz\":[\"Vraag om naam?\"],\"+8Zvos\":[\"Vraag na afloop van een gesprek om e-mailadressen van deelnemers.\"],\"KmS8XG\":[\"Vraag het in de chat als je een live beeld van de gesprekken wilt. Het eerste canvas komt hier te staan.\"],\"ZwM3p2\":[\"meer vragen te stellen in de chat\"],\"6S+qQR\":[\"Vraag deelnemers om hun e-mailadres\"],\"I+vZ9W\":[\"Vraag deelnemers om hun naam\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspecten\"],\"kaEPzR\":[\"Toewijzen\"],\"d/bvvp\":[\"Assistent\"],\"MPY6SL\":[\"Assistent-context\"],\"aYfeOI\":[\"Assistent-geheugen\"],\"bU39dx\":[\"Minstens 8 tekens\"],\"iF1OFS\":[\"Er moet minstens één onderwerp zijn geselecteerd om Verifiëren aan te zetten\"],\"quMOkF\":[\"Aan het einde van deze periode\"],\"8Fp5MP\":[\"Hoeveel gesprekken zijn er op je drukste moment tegelijk bezig?\"],\"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\"],\"9+kvhX\":[\"Audio- en tekstuploads worden meegenomen in gespreksanalyse.\"],\"kHN5Zx\":[\"Audio-download niet beschikbaar voor anonieme gesprekken\"],\"N2tS3I\":[\"Audio komt binnen\"],\"SLvg/d\":[\"Audio-afspelen niet beschikbaar voor anonieme gesprekken\"],\"3z8PNB\":[\"Audio afspelen, transcriptie en automatische gespreksselectie zijn verbeterd.\"],\"7xo9jH\":[\"Audioverwerking en uploads zijn robuuster en de gesprekkenlijst toont duidelijkere totalen.\"],\"oyIxJL\":[\"Audioverwerking en uploads zijn robuuster.\"],\"IOBCIN\":[\"Audio-tip\"],\"HzJSSc\":[\"Audio-uploadknoppen en dialoogvensters reageren correct op klikken.\"],\"0ih2hV\":[\"Audio-uploads werken betrouwbaarder via VPN-verbindingen.\"],\"tQsOBQ\":[\"Na het uploaden van audio keer je terug naar de gesprekslijst.\"],\"OCG9c0\":[\"Er kwam audio binnen, maar dat is gestopt. De verbinding is misschien weggevallen of de telefoon is vergrendeld.\"],\"y2W2Hg\":[\"Auditlogboeken\"],\"aL1eBt\":[\"Auditlogboeken geëxporteerd naar CSV\"],\"mS51hl\":[\"Auditlogboeken geëxporteerd naar JSON\"],\"z8CQX2\":[\"Authenticator-code\"],\"R+PyK8\":[\"Automatisch titels genereren\"],\"voAvDv\":[\"Automatisch titels genereren\"],\"Wrpmw7\":[\"Automatisch gegenereerd of handmatig invoeren\"],\"OFsXNQ\":[\"Automatische gespreksselectie laat meer ruimte over voor chatantwoorden.\"],\"wcnfVG\":[\"Automatische gesprekstitels blijven zichtbaar wanneer een naam wordt verwijderd.\"],\"mA167s\":[\"Automatische samenvattingen, het samenvoegen van gesprekken en tijdsduren werken betrouwbaarder.\"],\"8kH9im\":[\"Automatische titels en concepttags\"],\"dY4Vk3\":[\"Automatisch een korte onderwerp-gebaseerde titel genereren voor elk gesprek na samenvatting. De titel beschrijft wat er werd besproken, niet wie deelnemde. De oorspronkelijke naam van de deelnemer wordt apart bewaard, als ze er een had.\"],\"F95AYw\":[\"Transcripten automatisch opslaan in je CRM of database\"],\"WI8FHU\":[\"Selecteer automatisch relevante gesprekken voor chat en volg bronverwijzingen. Abonneer je op rapportmeldingen en werk met verbeterde audio- en tekstuploads.\"],\"+OjHg0\":[\"Selecteer automatisch relevante gesprekken voor je vraag.\"],\"zUbSgC\":[\"Conversatiegegevens automatisch verzenden naar je andere tools en services wanneer gebeurtenissen plaatsvinden.\"],\"AUb80i\":[\"Beschikbaar met een betaald abonnement\"],\"KKfW2W\":[\"Avatar verwijderd\"],\"jSKImf\":[\"Avatar bijgewerkt\"],\"vhjbKr\":[\"Afwezig\"],\"iH8pgl\":[\"Terug\"],\"participant.button.back\":[\"Terug\"],\"BT2r2q\":[\"Terug naar dembrane\"],\"aBqveh\":[\"Terug naar live\"],\"7rgUr5\":[\"Terug naar mijn werkruimtes\"],\"/9nVLo\":[\"Terug naar selectie\"],\"9aZHfH\":[\"Back to settings\"],\"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\"],\"g7YpV4\":[\"Vóór deze releasegeschiedenis\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Bèta\"],\"dashboard.dembrane.concrete.beta\":[\"Bèta\"],\"dashboard.dembrane.verify.beta\":[\"Bèta\"],\"Zz7XBz\":[\"Betafuncties\"],\"omCN5G\":[\"Betere feedback, eenvoudiger opvolgen\"],\"5DnJa6\":[\"Betere opnames, meer manieren om te antwoorden\"],\"9GKCNF\":[\"Betere uploads, transcripten en zoeken\"],\"K9cTJe\":[\"Jaarlijks gefactureerd\"],\"aIkeAd\":[\"Maandelijks gefactureerd\"],\"rKaO4m\":[\"Wordt op een eigen abonnement gefactureerd, niet dat van je organisatie. Beheer dit via de facturering van deze werkruimte.\"],\"IHgGGv\":[\"Apart gefactureerd\"],\"4FkKL6\":[\"Apart gefactureerd, geen onderdeel van het abonnement van de organisatie.\"],\"jtq36d\":[\"Gefactureerd onder het abonnement van je organisatie, samen met je andere werkruimtes.\"],\"R+w/Va\":[\"Facturering\"],\"17Ox+q\":[\"Factuurgegevens\"],\"UQPSlS\":[\"Factuurgegevens opgeslagen.\"],\"ZQhgRe\":[\"Facturering wordt beheerd door je organisatie\"],\"/2TrP/\":[\"Facturatiemodus\"],\"MkvsWx\":[\"Een gesprek boeken\"],\"KKLfx1\":[\"Plan een gesprek met ons\"],\"kFl92P\":[\"Boek een gecertificeerde training om dembrane te blijven gebruiken in situaties met hoog risico.\"],\"YgG3yv\":[\"Brainstorm ideeën\"],\"xHijXF\":[\"Overzicht · \",[\"0\"],\" actief\"],\"EpQC5j\":[\"Overzicht per niveau\"],\"16exrD\":[\"Briefing\"],\"7Ic570\":[\"Gebruik je eigen LLM\"],\"t06RRh\":[\"Bugfixes\"],\"4eBtkM\":[\"Aangepaste dashboards bouwen met realtime conversatiegegevens\"],\"G46Sdr\":[\"door \",[\"by\"]],\"IqudIv\":[\"Door dit project te verwijderen, verwijder je alle bijbehorende gegevens. Deze actie kan niet ongedaan worden gemaakt. Weet je het absoluut zeker?\"],\"aeGLaK\":[\"Op status\"],\"0rwwOn\":[\"Op trefwoord\"],\"URPLGF\":[\"kan bewerken\"],\"6++86c\":[\"kan lezen\"],\"OoV4VL\":[\"Kun je ons meer vertellen?\"],\"dEgA5A\":[\"Annuleren\"],\"participant.mic.settings.modal.second.confirm.cancel\":[\"Annuleren\"],\"participant.concrete.action.button.cancel\":[\"Annuleren\"],\"participant.concrete.instructions.button.cancel\":[\"Annuleren\"],\"select.all.modal.cancel\":[\"Annuleren\"],\"add.tag.filter.modal.cancel\":[\"Annuleren\"],\"4MDqQJ\":[\"Annuleer wanneer je wilt. Je houdt toegang tot het einde van de periode.\"],\"KWnDn1\":[\"Huidige run stoppen\"],\"UKcgfh\":[\"Overschrijving annuleren\"],\"Bu+BBn\":[\"Abonnement opzeggen\"],\"HoYkSd\":[\"Verzoek intrekken\"],\"lrdoAi\":[\"Planning annuleren\"],\"iypQhn\":[\"Selectie annuleren\"],\"XzQibx\":[\"Training annuleren\"],\"D2vAZP\":[\"Je abonnement opzeggen\"],\"vv7kpg\":[\"Opgezegd\"],\"AreLja\":[\"Bij opzeggen wordt je abonnement niet verlengd. Je houdt \",[\"0\"],\" tot het einde van je huidige factureringsperiode en gaat daarna over naar Free.\"],\"RKD99R\":[\"Kan geen leeg gesprek toevoegen\"],\"SL9Qao\":[\"Kan niet opnieuw plannen binnen 10 minuten voor het geplande tijdstip\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Verversfrequentie van het canvas aangepast\"],\"RP1RaW\":[\"Canvasvoorbeeld\"],\"J5lsfs\":[\"Canvasinstellingen\"],\"vkf71G\":[\"ontbrekende mogelijkheid\"],\"kryGs+\":[\"Kaart\"],\"SHhA6n\":[\"inhalen \",[\"0\"]],\"wNBLz0\":[\"Gecertificeerde training voor teams die dembrane in risicovolle situaties gebruiken. Een apart product, per sessie gefactureerd.\"],\"o+XJ9D\":[\"Wijzigen\"],\"rlgQn8\":[\"De organisatierol van \",[\"person\"],\" wijzigen van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"De rol van \",[\"person\"],\" op \",[\"wsName\"],\" wijzigen van <0>\",[\"0\"],\" naar <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Toch wijzigen\"],\"U8sdJ+\":[\"Wijzigen in werkruimte-instellingen\"],\"+DEogc\":[\"Taal wijzigen\"],\"7KtLzo\":[\"Organisatierol wijzigen?\"],\"GptGxg\":[\"Wachtwoord wijzigen\"],\"Ts/A07\":[\"Betaalmethode wijzigen\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Rol wijzigen\"],\"qpV0fp\":[\"Niveau wijzigen\"],\"XbjzC/\":[\"Werkruimterol wijzigen?\"],\"mtseAM\":[\"Je eigen rol wijzigen?\"],\"X0m2J4\":[\"Wijzig je wachtwoord in de instellingen zonder contact met ondersteuning.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Wijzigingen toegepast. Je kunt ze altijd bijstellen in de projectinstellingen.\"],\"u0IJto\":[\"Wijzigingen worden automatisch opgeslagen\"],\"xF/jsW\":[\"Wijziging van de taal tijdens een actief gesprek kan onverwachte resultaten opleveren. Het wordt aanbevolen om een nieuw gesprek te starten na het wijzigen van de taal. Weet je zeker dat je wilt doorgaan?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"De chatcontext bevat gespreksdatums en tijdsduren.\"],\"KNCmqW\":[\"Chat aangemaakt\"],\"pB+sJr\":[\"Chat verwijderd\"],\"qlK5jV\":[\"Chat is niet beschikbaar op jouw toegangsniveau. Neem contact op met je werkruimtebeheerder om een upgrade aan te vragen.\"],\"qUVihD\":[\"Chatlimiet bereikt\"],\"tDlhkF\":[\"Chatnaam\"],\"qROGJJ\":[\"Chat verstuurt niet meer per ongeluk dubbele berichten.\"],\"VcmnNx\":[\"Chattemplates blijven zichtbaar terwijl je werkt.\"],\"nsBRp+\":[\"Chat waarschuwt voordat je een bericht boven de tekenlimiet verstuurt.\"],\"5YLyJ8\":[\"Chatten met individuele gesprekken.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Chats krijgen automatische titels en gesprekscontext bevat datums en duren. Ga naar het nieuwste bericht en gebruik een duidelijkere audio-uploadflow.\"],\"ZScceP\":[\"Chats krijgen automatische titels.\"],\"iFHfAI\":[\"Chats die op Tsjechisch staan, antwoorden in het Tsjechisch in plaats van Engels.\"],\"uKHYRK\":[\"Chats die op Tsjechisch staan, antwoorden nu in het Tsjechisch in plaats van het Engels.\"],\"gLvHXQ\":[\"Controleer en kies je microfoon voor de opname, bekijk audiokwaliteitsindicatoren en gebruik verbeterde meertalige transcriptie. Kies samenvattingen, brainstormen of eigen antwoordmodi.\"],\"+e4Yxz\":[\"Controleer microfoontoegang\"],\"participant.button.check.microphone.access\":[\"Controleer microfoontoegang\"],\"WQUm5N\":[\"Controleer de tekst en afbeeldingen en probeer het opnieuw\"],\"v4fiSg\":[\"Controleer je email\"],\"mGd0TP\":[\"Gecontroleerd \",[\"checkedAgo\"],\". De eerste update verschijnt zodra er genoeg te tonen is.\"],\"fhPONC\":[\"Gecontroleerd \",[\"checkedAgo\"],\". Niets nieuws sinds je laatste gesprek. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Live gesprekken controleren\"],\"pMF40U\":[\"Je sessie wordt gecontroleerd.\"],\"KFa1f3\":[\"Een logo-bestand kiezen\"],\"MgLGKD\":[\"Kies een methodologie\"],\"4Jd65a\":[\"Kies eerst een organisatie\"],\"0hjkQk\":[\"Kies vindbare, alleen op uitnodiging toegankelijke of privéwerkruimtes.\"],\"d5ey9z\":[\"Kies vindbare workspaces, workspaces op uitnodiging of privéworkspaces. Organisatieleden laden sneller, na uploads keer je terug naar je gesprekken en automatisch samenvatten en samenvoegen werken betrouwbaarder.\"],\"okLwd9\":[\"Kiezen uit je andere projecten\"],\"lrPU2/\":[\"Kies de antwoordmodus Samenvatten, Ideeën brainstormen of Aangepast.\"],\"Aoxltn\":[\"Kiezen wanneer je meldingen wilt ontvangen\"],\"mgiYV1\":[\"Kies je voorkeurstaal voor de interface\"],\"DakUDF\":[\"Kies je favoriete thema voor de interface\"],\"3wV73y\":[\"Plaats\"],\"xCJdfg\":[\"Wissen\"],\"yYxB17\":[\"Alles wissen\"],\"u8JHrO\":[\"Filters wissen\"],\"V8yTm6\":[\"Zoekopdracht wissen\"],\"eIdJyh\":[[\"cleared\"],\" van \",[\"total\"],\" gesprekken gewist\"],\"0ZbLOL\":[\"Duidelijkere bronnen in chat\"],\"xOlaOX\":[\"Duidelijkere workspacetoegang voor beheerders\"],\"B2pdef\":[\"Klik op \\\"Upload bestanden\\\" wanneer je klaar bent om de upload te starten.\"],\"TmA1Yd\":[\"Klik op een gesprekstag om die aan je filters toe te voegen.\"],\"cwMTjO\":[\"Klik om te bewerken\"],\"jcSz6S\":[\"Klik om alle \",[\"totalCount\"],\" gesprekken te zien\"],\"oL+Urh\":[\"Klik om te sorteren\"],\"VbcOhD\":[\"Klantkorting %\"],\"1vOl9f\":[\"Klantorganisatie\"],\"WXNW/R\":[\"Klantorganisaties van partners\"],\"bIj+VB\":[\"Door client beheerd\"],\"dcBdC4\":[\"Kopieerknoppen werken in Safari en je gekozen interfacetaal wordt onthouden.\"],\"+d+tJS\":[\"Klonen vanuit een ander project\"],\"nCnTY0\":[\"Klonen vanuit project\"],\"BPrdpc\":[\"Project klonen\"],\"9U86tL\":[\"Project klonen\"],\"yz7wBu\":[\"Sluiten\"],\"select.all.modal.close\":[\"Sluiten\"],\"RRo5cD\":[\"Sluiten en naar dembrane\"],\"bQfDiL\":[\"Cloud Act-veilig\"],\"sShXu3\":[\"Collega's die je uitnodigt kunnen gesprekken verkennen, inzichten delen en samen met jou rapporten maken.\"],\"Y+lkZA\":[\"Verhalen van mensen verzamelen zonder dat je erbij bent, zoals met een gesproken enquête.\"],\"q+hNag\":[\"Collectie\"],\"jEu4bB\":[\"Kolommen\"],\"AUYALh\":[\"Binnenkort beschikbaar\"],\"bJHBId\":[\"Algemene toepassingen:\"],\"xDz9mh\":[\"Compacte voetnoten houden gespreksbronnen binnen bereik.\"],\"Wqc3zS\":[\"Vergelijk\"],\"CfO59/\":[\"Vergelijk & Contrast Insights\"],\"2Jg8b0\":[\"Gratis proefperiode. €0 omzet.\"],\"bUEr/M\":[\"Gratis proefperiode. Verloopt op \",[\"0\"],\". €0 omzet.\"],\"bD8I7O\":[\"Voltooid\"],\"qqWcBV\":[\"Voltooid\"],\"XdO6hR\":[\"Voltooid op\"],\"YmlJMO\":[\"Configureer instellingen voor elke rechtsgrondslag.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Doorgaan\"],\"7VpPHA\":[\"Bevestigen\"],\"s/uNVb\":[\"Bevestigen en versturen\"],\"JRQitQ\":[\"Bevestig nieuw wachtwoord\"],\"yjkELF\":[\"Bevestig nieuw wachtwoord\"],\"xnWESi\":[\"Wachtwoord bevestigen\"],\"puQ8+/\":[\"Publiceren bevestigen\"],\"vz1fGK\":[\"Herplanning bevestigen\"],\"L0k594\":[\"Bevestig je wachtwoord om een nieuw geheim voor je authenticator-app te genereren.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Verbinding maken met rapportservices...\"],\"wX/BfX\":[\"Verbinding gezond\"],\"participant.modal.s3check.title\":[\"Verbindingsprobleem\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Verbinding ongezond\"],\"l9fkrm\":[\"Toestemming\"],\"EhtOYz\":[\"Verwerking op basis van toestemming is actief zonder link naar het privacybeleid. Voeg er een toe waar de rechtsgrondslag is ingesteld: deelnemers moeten het privacybeleid kunnen lezen.\"],\"mpby9d\":[\"Contact met support\"],\"E5Shm/\":[\"Neem contact op met de beheerder als dit onverwacht was.\"],\"4b3oEV\":[\"Inhoud\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context toegevoegd:\"],\"JX3KT4\":[\"Contextuele suggesties\"],\"xGVfLh\":[\"Doorgaan\"],\"participant.ready.to.begin.button.text\":[\"Doorgaan\"],\"participant.button.continue\":[\"Doorgaan\"],\"F1pfAy\":[\"gesprek\"],\"YyNOE7\":[\"Gesprek\"],\"EiHu8M\":[\"Gesprek toegevoegd aan chat\"],\"UL2RVZ\":[\"Gespreksverwijzingen staan samen onder één kop Bronnen.\"],\"yo+cs6\":[\"Gespreksverwijzingen staan nu samen onder één kop Bronnen. Het feedbackformulier kan je e-mailadres vooraf invullen.\"],\"HVt1q8\":[\"Gespreksdatums tonen wanneer de opname begon, niet wanneer de pagina werd geopend.\"],\"zoQtTL\":[\"Gespreksduren en het kopiëren van projecten zijn betrouwbaarder.\"],\"participant.conversation.ended\":[\"Gesprek beëindigd\"],\"E14kXV\":[\"Gespreksnamen verschijnen in de Library en het eindscherm van het portaal werkt correct.\"],\"oMLs8t\":[\"Gesprekspagina's en het laden van gegevens zijn vereenvoudigd.\"],\"bRjeED\":[\"Gesprekspagina’s en het laden van gegevens zijn vereenvoudigd. Automatische gespreksselectie laat meer ruimte voor antwoorden en aankondigingen veroorzaken minder herhaalde meldingen.\"],\"OtdHFE\":[\"Gesprek verwijderd uit chat\"],\"zTKMNm\":[\"Gespreksstatus\"],\"Rdt7Iv\":[\"Gespreksstatusdetails\"],\"77Vr/m\":[\"De gespreksstatus bevat de uploadvoortgang.\"],\"J2pUSq\":[\"Gesprekssamenvattingen lopen niet meer vast in de getroffen verwerkingsstappen. Gesprekken die door limieten van het gratis plan zijn gepauzeerd, worden na een upgrade opgepakt.\"],\"ym9Tli\":[\"Gesprekssamenvattingen blijven niet meer hangen in de getroffen verwerkingsgevallen.\"],\"7Ljafh\":[\"Gesprekslabels\"],\"zaWnya\":[\"Gesprekstags zijn beter leesbaar.\"],\"a7zH70\":[\"gesprekken\"],\"EnJuK0\":[\"Gesprekken\"],\"72XGHt\":[\"Gesprekken gewist\"],\"iQeG0i\":[\"Gesprekken die zijn gepauzeerd door gratis abonnementslimieten worden na een upgrade samengevat.\"],\"72TERk\":[\"Gesprekken gebruiken de vernieuwde Dembrane-26-07-transcriptieverwerking.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Uitnodigingslink kopiëren\"],\"y1eoq1\":[\"Kopieer link\"],\"H4brGj\":[\"Link naar klembord kopiëren\"],\"AjrNNs\":[\"Rapportinhoud kopiëren\"],\"vAkFou\":[\"Geheim kopiëren\"],\"v3StFl\":[\"Kopieer samenvatting\"],\"/4gGIX\":[\"Kopieer naar clipboard\"],\"RTxUjI\":[\"Kopieer naar klembord\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Kopieren...\"],\"/GF06U\":[\"Kon je gesprekken niet aan deze chat toevoegen\"],\"wcXkqW\":[\"Kon niet alle tagwijzigingen toepassen.\"],\"5XIW2B\":[\"Kon de wijzigingen niet toepassen. Er is niets opgeslagen.\"],\"1kNETE\":[\"Je selectie kon niet worden meegenomen. Kies hieronder opnieuw.\"],\"Exvn8R\":[\"Kon die actie niet voltooien.\"],\"leuP7L\":[\"Kon de betaling niet bevestigen. Vernieuw om opnieuw te proberen.\"],\"inHtAw\":[\"Kon niet naar het klembord kopiëren. Probeer het opnieuw.\"],\"X+pWr+\":[\"Sjabloon kon niet worden aangemaakt\"],\"qg6spM\":[\"De organisatie kon niet worden aangemaakt\"],\"D4A5VY\":[\"Kon dit canvas niet aanmaken\"],\"kzqg8O\":[\"Kon deze methodologie niet aanmaken\"],\"BiXtZw\":[\"Sjabloon kon niet worden verwijderd\"],\"qFM9uZ\":[\"Er kon geen samenvatting worden gegenereerd. Probeer het opnieuw.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Kon de methodologieën niet laden.\"],\"RYJyLk\":[\"Betalingen konden niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"3ewci6\":[\"Kon de bibliotheek niet laden.\"],\"S+kUD0\":[\"De rollup kon niet worden geladen. Controleer de authenticatie en de backend-logs.\"],\"mNTNj8\":[\"Kon het doel van dit project niet laden.\"],\"2gcFEX\":[\"De gesprekkenlijst kon niet worden geopend. Probeer het opnieuw.\"],\"WSxAYE\":[\"Kon nu geen voorbeeld van dit canvas laden.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Kon dit canvas niet verversen\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Kon niet opslaan\"],\"vFB5Q8\":[\"Feedback niet opgeslagen\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"BIQxIX\":[\"Kon tags niet opslaan\"],\"/C4Hgq\":[\"De hostgids kon niet worden opgeslagen\"],\"mb/wyK\":[\"Kon deze methodologie niet opslaan\"],\"g4QEze\":[\"Kon dit projectdoel niet opslaan\"],\"HQinjp\":[\"De uitnodigings-e-mail kon niet worden verstuurd. Controleer de e-mailconfiguratie.\"],\"BMDNcQ\":[\"Je melding kon niet worden verzonden. Probeer het opnieuw\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Sjabloon kon niet worden bijgewerkt\"],\"Ld3JrX\":[\"Kon dit canvas niet bijwerken\"],\"0Mj7CF\":[\"Kon de methodologie van dit project niet bijwerken\"],\"/P90WH\":[[\"failed\"],\" leden konden niet worden toegevoegd. Voeg ze toe via de instellingen van de werkruimte.\"],\"n5jG23\":[\"1 lid kon niet worden toegevoegd. Voeg het toe via de instellingen van de werkruimte.\"],\"KFEjpC\":[\"Persoon kon niet worden toegevoegd\"],\"RbXh2U\":[\"Zichtbaarheid kon niet worden gewijzigd\"],\"DjWv8n\":[\"De link kon niet worden gekopieerd.\"],\"QYq+2z\":[\"Deelnemen lukt nu niet\"],\"TOvPOV\":[\"Kon live activiteit niet laden\"],\"CLBne9\":[\"Kon herinneringen niet laden. Vernieuw om het opnieuw te proberen.\"],\"SnOYvu\":[\"Organisatie kon niet worden geladen (\",[\"0\"],\")\"],\"KYcw2y\":[\"Organisatieleden konden niet worden geladen. Probeer te vernieuwen, en neem contact op met support als het blijft mislukken.\"],\"Vw2vHe\":[\"Openstaande uitnodigingen konden niet worden geladen.\"],\"8a9fbX\":[\"Gebruik kon niet worden geladen (\",[\"0\"],\")\"],\"Fwc3py\":[\"Instellingen van de werkruimte konden niet worden geladen (\",[\"0\"],\")\"],\"edGmsx\":[\"Werkruimtes konden niet worden geladen. Sluit en open opnieuw om het nogmaals te proberen.\"],\"4ufrJH\":[\"Gebruik kon niet worden vernieuwd. Probeer het opnieuw.\"],\"PMx835\":[\"Kon deze herinnering niet verwijderen\"],\"b5ALMv\":[\"Training kon niet worden aangevraagd\"],\"SUJwLx\":[\"Uitnodiging kon niet worden ingetrokken\"],\"LPY4VY\":[\"Uitnodiging kon niet worden verstuurd\"],\"JNCzPW\":[\"Land\"],\"hYgDIe\":[\"Maak\"],\"VW1ecc\":[\"Een nieuwe webhook vanaf nul maken\"],\"oJfYM5\":[\"Een onderzoeksbrief maken van recente gesprekken\"],\"1hMWR6\":[\"Account aanmaken\"],\"3T8ziB\":[\"Maak een account aan\"],\"lJ+m2/\":[\"Maak een account aan om deel te nemen\"],\"5VjGj6\":[\"Maak en beheer meerdere rapporten binnen één project.\"],\"/EJK2h\":[\"nog een rapport te maken\"],\"NaGyxm\":[\"Maak eigen chattemplates (bèta), of kopieer en bewerk een ingebouwde template.\"],\"library.create\":[\"Maak bibliotheek aan\"],\"bUyyzw\":[\"Maak meerdere rapporten per project en stuur de inhoud met je eigen instructies. Geplande rapporten (bèta) bevatten alle gesprekken die vóór het geplande tijdstip zijn opgenomen. Maak, bewaar en pin eigen chattemplates (bèta). Deze release voegt ook het pinnen van projecten, profielinstellingen en Oekraïense chatondersteuning toe.\"],\"T7gFri\":[\"Nieuwe organisatie aanmaken\"],\"library.create.view.modal.title\":[\"Maak nieuwe view aan\"],\"55yNvT\":[\"Organisatie aanmaken\"],\"vPAex+\":[\"Wachtwoord aanmaken\"],\"Q7h9s/\":[\"Project aanmaken\"],\"bsfMt3\":[\"Maak rapport\"],\"A5hiCy\":[\"Template aanmaken\"],\"library.create.view\":[\"Maak view aan\"],\"3D0MXY\":[\"Maak view aan\"],\"dkAPxi\":[\"Webhook maken\"],\"FdtSNC\":[\"Werkruimte aanmaken\"],\"WqpzRx\":[\"Werkruimte aanmaken | dembrane\"],\"d+F6q9\":[\"Aangemaakt\"],\"NCIYDF\":[\"Aangemaakt door\"],\"45O6zJ\":[\"Gemaakt op\"],\"QxmQob\":[\"Aanmaken in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Avatar bijsnijden\"],\"udBqWc\":[\"Afbeelding bijsnijden\"],\"8LMgB6\":[\"Logo bijsnijden\"],\"6dfVdc\":[\"Logo bijsnijden\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Huidig\"],\"yOrQ4N\":[\"Huidige logo\"],\"Pn2B7/\":[\"Huidig wachtwoord\"],\"A+zoTy\":[\"Huidig abonnement\"],\"a+EVO+\":[\"Huidig tarief\"],\"8Tg/JR\":[\"Aangepast\"],\"puMv5a\":[\"Eigen chattemplates worden weer correct opgeslagen en gedeeld.\"],\"o1nIYK\":[\"Aangepaste bestandsnaam\"],\"GrXJvi\":[\"Aangepast logo\"],\"jthSbr\":[\"De instellingen voor eigen logo's leggen nu de aanbevolen verhouding van 3:1 uit.\"],\"iv5fAO\":[\"Aangepaste titelprompt\"],\"yGoz+a\":[\"Eigen logo van de werkruimte dat aan deelnemers wordt getoond.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Tsjechisch (alleen ECHO-functies, transcriptie en samenvattingen)\"],\"RRwgJO\":[\"Tsjechische gesprekken, Tsjechische antwoorden\"],\"TNZKpI\":[\"Gevaar\"],\"Zz6Cxn\":[\"Gevarenzone\"],\"wqCnxg\":[\"Dashboard URL (directe link naar gespreksoverzicht)\"],\"S3EU+A\":[\"E-mail van de data-eigenaar\"],\"+kPwoM\":[\"Data-eigendom\"],\"mYGY3B\":[\"Datum\"],\"ItMGda\":[\"Datumbereik\"],\"Zpu3D+\":[\"Data die passen, context, alles wat verder relevant is\"],\"jbq7j2\":[\"Weigeren\"],\"a1Rv+M\":[\"Uitnodiging weigeren\"],\"bdg17D\":[\"Verzoek weigeren\"],\"OhcpqZ\":[\"Verzoek weigeren?\"],\"BfuTZd\":[\"De uitnodiging voor \",[\"subjectName\"],\" weigeren? Je kunt vragen om hem later opnieuw te sturen.\"],\"vrNxDR\":[\"Dit toegangsverzoek weigeren? De aanvrager krijgt geen melding en zou opnieuw toegang moeten aanvragen.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Standaard\"],\"ucTqrC\":[\"Standaard - Geen tutorial (Alleen privacy verklaringen)\"],\"K/78Yl\":[\"Multistap analyse delegeren met live tool uitvoering\"],\"cnGeoo\":[\"Verwijder\"],\"project.sidebar.chat.delete\":[\"Chat verwijderen\"],\"Tf88pC\":[[\"0\"],\" verwijderen?\"],\"YFpLoV\":[\"Chat verwijderen\"],\"2GCE3m\":[\"Gesprek verwijderen\"],\"2DzmAq\":[\"Verwijder gesprek\"],\"j5pYC4\":[\"Aangepast onderwerp verwijderen\"],\"mp235G\":[\"Project verwijderen\"],\"++iDlT\":[\"Verwijder project\"],\"rUWrSE\":[\"Rapport verwijderen\"],\"qr0gpK\":[\"Tag verwijderen\"],\"DFjdv0\":[\"Template verwijderen\"],\"NUXYj2\":[\"Dit project in \",[\"0\"],\" verwijderen? Alle gesprekken en gegevens worden definitief verwijderd.\"],\"Ja/2b5\":[\"Deze werkruimte verwijderen\"],\"ooWc3n\":[\"Deze werkruimte verwijderen. Leden verliezen direct toegang en alle gesprekken en gegevens worden definitief verwijderd.\"],\"zdyslo\":[\"Webhook verwijderen\"],\"kYu0eF\":[\"Werkruimte verwijderen\"],\"Jb6/SB\":[\"Verwijderen…\"],\"L7H6O4\":[\"Verwijderd · \",[\"0\"]],\"17dnn7\":[\"Verwijderde projecten en gesprekken die door abonnementslimieten zijn gepauzeerd, veroorzaken geen herhaalde samenvattingspogingen meer.\"],\"+m7PfT\":[\"Verwijderd succesvol\"],\"InIP7b\":[\"Een organisatie verwijderen doen we samen met support. Mail <0>support@dembrane.com en we lopen het met je door. Alle werkruimtes moeten eerst leeg zijn en verwijderd.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane, de standaard\"],\"hEVZlB\":[\"Ook dembrane inzetten?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", alle rechten voorbehouden.\"],\"qFd3qy\":[\"dembrane kan fouten maken. Controleer antwoorden altijd even.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"dembrane event-uitnodiging\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"bK6CFO\":[\"toegang voor dembrane-medewerker automatisch gestopt\"],\"NBxEip\":[\"dembrane-medewerker heeft de sessie verlengd\"],\"7VMnIt\":[\"dembrane-medewerker is erbij gekomen voor support\"],\"g0sCc9\":[\"dembrane-medewerker is vertrokken\"],\"PDkZlx\":[\"dembrane-medewerker heeft toegang aangevraagd\"],\"zPKc5G\":[\"dembrane/pilot was ons eerdere project. Dank aan de hosts, deelnemers en bijdragers die het hebben helpen vormgeven.\"],\"cFCKYZ\":[\"Weigeren\"],\"HpYpx4\":[\"Beschrijf het probleem\"],\"Fs/0D5\":[\"Beschrijf wat de taalmodel moet extraheren of samenvatten uit het gesprek...\"],\"Nu4oKW\":[\"Beschrijving\"],\"Uf+1DF\":[\"Doelwerkruimte\"],\"ney/NP\":[\"Bepaalt onder welke AVG-rechtsgrondslag persoonsgegevens voor dit project worden verwerkt.\"],\"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.\"],\"NMz7xK\":[\"Ontwikkel een strategisch framework dat betekenisvolle resultaten oplevert. Voor:\\n\\nIdentificeer de kernobjectieven en hun interafhankelijkheden\\nPlan implementatiepaden met realistische tijdslijnen\\nVoorzien in potentiële obstakels en mitigatiestrategieën\\nDefinieer duidelijke metrieken voor succes buiten vanity-indicatoren\\nHervat de behoefte aan middelen en prioriteiten voor toewijzing\\nStructuur het plan voor zowel onmiddellijke actie als langetermijnvisie\\nInclusief besluitvormingsgate en pivotpunten\\n\\nLet op: Focus op strategieën die duurzame competitieve voordelen creëren, niet alleen incrementele verbeteringen.\"],\"rGCttu\":[\"Verwachtte je dit niet? Je kunt deze pagina rustig negeren.\"],\"ch15wD\":[\"Niet ontvangen? Kijk eerst in je spam of ongewenste mail. Het bericht komt van dembrane.com.\"],\"hsGK8G\":[\"Niet ontvangen? Kijk in je spam- of ongewenste-mailmap. De e-mail komt van dembrane.com.\"],\"qERl58\":[\"2FA uitschakelen\"],\"yrMawf\":[\"Tweestapsverificatie uitschakelen\"],\"E/QGRL\":[\"Uitgeschakeld\"],\"bzSI52\":[\"Weggooien\"],\"Xrxdv5\":[\"Dit project weggooien?\"],\"gemv7o\":[\"Deze werkruimte weggooien?\"],\"H6Ma8Z\":[\"Korting\"],\"Ix7Qp4\":[\"Vindbaar in deze organisatie\"],\"1QfxQT\":[\"Negeren\"],\"J6hrEy\":[\"Genegeerd\"],\"K0Wh2e\":[\"Afgewezen. Er is niets gewijzigd.\"],\"pfa8F0\":[\"Weergavenaam\"],\"fDGgw4\":[\"Ben ik dit nodig?\"],\"qPwbNF\":[\"Ben je van plan dembrane te gebruiken in de zorg, het onderwijs, werving, het beheer van kritieke infrastructuur, rechtshandhaving of de rechtspraak?\"],\"JeOjN4\":[\"Wil je op de hoogte blijven?\"],\"TvY/XA\":[\"Documentatie\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Wordt niet vanzelf bijgewerkt.\"],\"VjXLEl\":[\"Wordt niet vanzelf bijgewerkt. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Klaar\"],\"9bIbDI\":[\"Klaar, neem contact met me op\"],\"K98xdM\":[\"Nu terug naar Free\"],\"mzI/c+\":[\"Downloaden\"],\"5YVf7S\":[\"Download alle transcripten die voor dit project zijn gegenereerd.\"],\"SCWfsz\":[\"Alle transcripties downloaden\"],\"8fQs2Z\":[\"Downloaden als\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Audio downloaden\"],\"N8MP2s\":[\"Audio downloaden en gesprekken organiseren\"],\"h9oGl9\":[\"Download audio van gesprekken.\"],\"NJkTm9\":[\"Download gespreksaudio, voeg tags toe vanuit het dashboard en gebruik samenvattingen die zich aanpassen aan het gesprek. Bewerken en het portaalvoorbeeld zijn verbeterd.\"],\"KMdYRY\":[\"PDF downloaden\"],\"wEiqju\":[\"QR code downloaden\"],\"+bBcKo\":[\"Transcript downloaden\"],\"5XW2u5\":[\"Download transcript opties\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Ontwerp volgende acties en organiseer ze op basis van prioriteit\"],\"yboQcK\":[\"Een notitie opstellen die je naar het dembrane-team kunt sturen\"],\"hUO5BY\":[\"Sleep audio bestanden hierheen of klik om bestanden te selecteren\"],\"KGi3u9\":[\"Sleep om te herordenen\"],\"pBB+yW\":[\"Gaat terug naar het gratis plan. Ze kunnen op elk moment een betaald plan nemen.\"],\"euc6Ns\":[\"Dupliceren\"],\"lkz6PL\":[\"Duur\"],\"KIjvtr\":[\"Nederlands\"],\"gMbUE3\":[\"De Nederlandse documentatie is bijgewerkt.\"],\"FOwxqK\":[\"Hosts die Nederlands gebruiken zien de Nederlandse rondleiding bij Wat is nieuw.\"],\"oUKP8j\":[\"E-factuur\"],\"hBOGLr\":[\"bijv. \\\"Focus op duurzaamheidsthema's\\\" of \\\"Wat vinden deelnemers van het nieuwe beleid?\\\"\"],\"pO9dOq\":[\"bijvoorbeeld \\\"Gebruik korte zinnen als 'Stedelijke Groene Ruimtes' of 'Jeugdwerkgelegenheid'. Vermijd algemene titels.\\\"\"],\"9nchXg\":[\"bijv. Klant Alpha\"],\"o8kQWN\":[\"bijv. Klant Alpha, Q1-onderzoek\"],\"Ys/6OK\":[\"bijv. Onboardinggesprekken met klanten, Q1-productonderzoek\"],\"MR17iW\":[\"bijv. Klimaatluisteren, Q1-onderzoek\"],\"xnZ8L2\":[\"bijv. het rapportprobleem onderzoeken waarover je mailde\"],\"jYJhQk\":[\"bijv. We zijn een onderzoeksbureau. Rapporten gaan naar gemeentelijke opdrachtgevers, dus houd samenvattingen formeel en in het Nederlands.\"],\"sHNbQq\":[\"bijv. Wekelijkse samenvatting stakeholders\"],\"ffuZIY\":[\"bijvoorbeeld, Slack meldingen, Make workflow\"],\"Cs04r/\":[\"Elk nieuw lid wordt per stoel in rekening gebracht volgens je abonnement.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Nieuwe functies die je in dit project kunt proberen voordat ze klaar zijn voor iedereen.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Bewerken\"],\"9WkyHF\":[\"Gesprek bewerken\"],\"Y/3VME\":[\"Aangepast onderwerp bewerken\"],\"/8fAkm\":[\"Bestandsnaam bewerken\"],\"IYfHCP\":[\"Bijwerkinstellingen aanpassen\"],\"qDZ8v9\":[\"Doel bewerken\"],\"X14Q1S\":[\"Methodologie bewerken\"],\"G1Sb51\":[\"Bewerkingsmodus\"],\"niSWGL\":[\"Opties bewerken\"],\"G2KpGE\":[\"Project bewerken\"],\"DdevVt\":[\"Rapport inhoud bewerken\"],\"UHTUfP\":[\"Bewerk rapporten voordat je ze publiceert.\"],\"4uk9v2\":[\"Rapporten direct bewerken\"],\"nedzic\":[\"Bewerk rapporten direct in dembrane.\"],\"yZyG0D\":[\"Bewerk rapporten zelf, controleer microfoons duidelijker in het portaal en zie betere laadstatussen en foutmeldingen.\"],\"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\"],\"0GlhwE\":[\"Bewerk je weergavenaam en upload, snijd bij of verwijder je profielfoto.\"],\"5MB4fU\":[\"Het bewerken van een gesprek veroorzaakt de betreffende opslagfout niet meer.\"],\"O3oNi5\":[\"E-mail\"],\"ATGYL1\":[\"E-mailadres\"],\"LimKOG\":[\"E-mailverificatie\"],\"QdCcsg\":[\"E-mailverificatie | dembrane\"],\"g2N9MJ\":[\"email@werk.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji getoond naast het onderwerp bijvoorbeeld 💡 🔍 📊\"],\"TiAvLQ\":[\"leeggemaakt\"],\"N2S1rs\":[\"Leeg\"],\"ru50wd\":[\"Lege of verwijderde gesprekken verstoren de chatcontext niet meer.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"2FA inschakelen\"],\"D3AnH0\":[\"Verkennen inschakelen\"],\"4KKbfZ\":[\"Deelnemen inschakelen\"],\"G3dSLc\":[\"Rapportmeldingen inschakelen\"],\"ZUS4uO\":[\"Schakel deze functie in zodat deelnemers AI-antwoorden kunnen vragen tijdens hun gesprek. Na het inspreken van hun gedachten kunnen ze op \\\"Verkennen\\\" klikken voor contextuele feedback, zodat ze dieper gaan nadenken en meer betrokken raken. Er zit een wachttijd tussen verzoeken.\"],\"dashboard.dembrane.feature.verify.description\":[\"Schakel deze functie in om deelnemers \\\"resultaten\\\" van hun inzendingen te laten verifiëren en goedkeuren. Dit helpt om belangrijke ideeën, zorgen of samenvattingen concreet te maken. Na het gesprek kun je filteren op discussies met geverifieerde resultaten en deze bekijken in het overzicht.\"],\"C027jd\":[\"Transcriptanoniem maken inschakelen\"],\"329BBO\":[\"Tweestapsverificatie inschakelen\"],\"x35ZEt\":[\"Verifiëren inschakelen\"],\"RxzN1M\":[\"Ingeschakeld\"],\"237hSL\":[\"Afgelopen\"],\"ajxGoy\":[\"Eindigt op \",[\"endDate\"],\", gaat daarna over naar Free\"],\"lYGfRP\":[\"Engels\"],\"GboWYL\":[\"Voer een sleutelterm of eigennamen in\"],\"TSHJTb\":[\"Voer een naam in voor het nieuwe gesprek\"],\"KovX5R\":[\"Voer een naam in voor je nieuwe project\"],\"DRYPFp\":[\"Voer een geheime sleutel in\"],\"34YqUw\":[\"Voer een geldige code in om tweestapsverificatie uit te schakelen.\"],\"QbilUm\":[\"Voer een geldig e-mailadres in\"],\"CyH1Uk\":[\"Voer het huidige wachtwoord in\"],\"2FPsPl\":[\"Voer bestandsnaam (zonder extensie) in\"],\"VpwcSk\":[\"Voer het nieuwe wachtwoord in\"],\"oIn7d4\":[\"Voer de 6-cijferige code uit je authenticator-app in.\"],\"q1OmsR\":[\"Voer de huidige zescijferige code uit je authenticator-app in.\"],\"NgaR6B\":[\"Voer je wachtwoord in\"],\"42tLXR\":[\"Voer uw query in\"],\"HRbyGE\":[\"Ingevoerd door de deelnemer op het portaal\"],\"FiGRkg\":[\"Gegevens ingevuld\"],\"SlfejT\":[\"Fout\"],\"Ne0Dr1\":[\"Fout bij het klonen van het project\"],\"AEkJ6x\":[\"Fout bij het maken van het rapport\"],\"edh3aY\":[\"Fout bij laden van project\"],\"4kVRov\":[\"Fout opgetreden\"],\"hmk+3M\":[\"Fout bij het uploaden van \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Geschatte kosten\"],\"0PkibI\":[\"Geschat totaal: €\",[\"estimated\"]],\"sIs2jw\":[\"In de EU gehoste taalmodellen inbegrepen\"],\"inuQyd\":[\"Hulp van het dembrane-team bij je evenement\"],\"tst44n\":[\"Gebeurtenissen\"],\"VFClUG\":[\"Gebeurtenissen om te luisteren naar\"],\"IwE6dT\":[\"Elke 15 minuten\"],\"QFwKaB\":[\"Elke 5 minuten\"],\"NsoFw9\":[\"Elke 60 minuten\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Elke week, een jaar lang\"],\"aBiYpV\":[\"Iedereen kan het vinden. Admins doen direct mee, leden kunnen het aanvragen.\"],\"Mzb7Rk\":[\"Iedereen in \",[\"0\"],\" kan dit project vinden en openen.\"],\"PwqyQw\":[\"Iedereen in je organisatie\"],\"nvU1pM\":[\"Iedereen op de lijst is getraind.\"],\"participant.alert.microphone.access.success\":[\"Alles lijkt goed – je kunt doorgaan.\"],\"jqsg/I\":[\"Voorbeeld webhook payload\"],\"p9TUoT\":[\"Overschrijdt het maximum aantal stoelen. Er gelden extra kosten.\"],\"sQpDn6\":[\"Volledig scherm sluiten\"],\"FATwZw\":[\"Werkruimtes uitvouwen\"],\"Rsjgm0\":[\"Experimenteel\"],\"M1RnFv\":[\"Verlopen\"],\"KnN1Tu\":[\"Verloopt\"],\"vHL8v0\":[\"Verloopt binnenkort\"],\"8tjQCz\":[\"Verkennen\"],\"participant.echo.explore\":[\"Verkennen\"],\"B7flm8\":[\"Verken terugkerende thema’s in de Library\"],\"EebTQD\":[\"Verken verhalen en perspectieven met de chattemplate Narratives, in het Engels en Nederlands.\"],\"HNnM2X\":[\"Bekijk het dembrane/pilot-archief\"],\"6jZGjE\":[\"Verkennen\"],\"sAod0Q\":[[\"conversationCount\"],\" gesprekken aan het verkennen\"],\"GS+Mus\":[\"Exporteer\"],\"2KAI4N\":[\"CSV exporteren\"],\"tZXz25\":[\"24 uur verlengen\"],\"bVhrVt\":[\"Extern\"],\"3xOpcO\":[\"Extern van \",[\"0\"]],\"8f/4pG\":[\"Extern van partner\"],\"FMB83I\":[\"Externen\"],\"uRzQpN\":[\"Externen worden niet aan je organisatie toegevoegd. Ze zien alleen de werkruimtes die je hier selecteert.\"],\"W3lkzg\":[\"Externen bestaan alleen binnen een werkruimte. Kies er minstens één om de uitnodiging te versturen.\"],\"KVTM6i\":[\"Extra deelnemers\"],\"7Bj3x9\":[\"Mislukt\"],\"bh2Vob\":[\"Fout bij het toevoegen van het gesprek aan de chat\"],\"ajvYcJ\":[\"Fout bij het toevoegen van het gesprek aan de chat\",[\"0\"]],\"g5wCZj\":[\"Mislukt om gesprekken aan context toe te voegen\"],\"pmwvUt\":[\"Fout bij het goedkeuren van het resultaat. Probeer het opnieuw.\"],\"UcQWAA\":[\"Gesprekken wissen is mislukt\"],\"RBpcoc\":[\"Fout bij het kopiëren van de chat. Probeer het opnieuw.\"],\"uvu6eC\":[\"Kopiëren van transcript is mislukt. Probeer het nog een keer.\"],\"UQ6LqT\":[\"Fout bij het aanmaken van het aangepaste onderwerp\"],\"bHJ//P\":[\"Project aanmaken mislukt\"],\"nVOWis\":[\"Verwijderen van chat mislukt\"],\"ZiNeUi\":[\"Fout bij het verwijderen van het aangepaste onderwerp\"],\"7QAutA\":[\"Verwijderen van project mislukt\"],\"BVzTya\":[\"Fout bij het verwijderen van de reactie\"],\"REIHSi\":[\"Verwijderen van tag mislukt\"],\"Gu9mXj\":[\"Fout bij het voltooien van het gesprek. Probeer het opnieuw.\"],\"vx5bTP\":[\"Fout bij het genereren van \",[\"label\"],\". Probeer het opnieuw.\"],\"Fa1ewI\":[\"Samenvatting maken lukt niet. Probeer het later nog een keer.\"],\"Z77bMM\":[\"Fout bij het laden van webhooks\"],\"T7KYJY\":[\"Fout bij het markeren van alle meldingen als gelezen\"],\"eGHX/x\":[\"Fout bij het markeren van de melding als gelezen\"],\"PECaxL\":[\"Aankondiging als ongelezen markeren mislukt\"],\"CN1kl1\":[\"Verplaatsen van project mislukt\"],\"kC1ABz\":[\"Verplaatsen van projecten mislukt\"],\"FBluE+\":[\"Opnieuw verbinden mislukt. Probeer de pagina opnieuw te laden.\"],\"SVtMXb\":[\"Fout bij het hergenereren van de samenvatting. Probeer het opnieuw later.\"],\"h49o9M\":[\"Opnieuw laden is mislukt. Probeer het opnieuw.\"],\"rv8mO7\":[\"Kan avatar niet verwijderen\"],\"kE1PiG\":[\"Fout bij het verwijderen van het gesprek uit de chat\"],\"+piK6h\":[\"Fout bij het verwijderen van het gesprek uit de chat\",[\"0\"]],\"P9wLTJ\":[\"Fout bij het verwijderen van het logo\"],\"IMUHg3\":[\"Opnieuw plannen mislukt. Kies een tijdstip verder in de toekomst en probeer het opnieuw.\"],\"SmP70M\":[\"Fout bij het hertranscriptie van het gesprek. Probeer het opnieuw.\"],\"kClMar\":[\"Fout bij het herzien van het resultaat. Probeer het opnieuw.\"],\"wMEdO3\":[\"Fout bij het stoppen van de opname bij wijziging van het apparaat. Probeer het opnieuw.\"],\"FBpxE9\":[\"De run stoppen is mislukt\"],\"6xOp3l\":[\"Bericht versturen is mislukt\"],\"qTUnxX\":[\"Fout bij het bijwerken van het aangepaste onderwerp\"],\"BpuK7o\":[\"Fout bij het bijwerken van de rechtsgrondslag\"],\"Avee+B\":[\"Kan naam niet bijwerken\"],\"gnm1CH\":[\"Vastpinnen bijwerken mislukt\"],\"tOcErW\":[\"Instellingen bijwerken is mislukt\"],\"S1McZh\":[\"Kan avatar niet uploaden\"],\"RW4V7P\":[\"Fout bij het uploaden van het logo\"],\"3O1Mz4\":[\"Redelijk wachtwoord\"],\"participant.modal.echo.info.title\":[\"Functie binnenkort beschikbaar\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedbackportaal\"],\"2roTVj\":[\"Feedback verstuurd\"],\"87gcCP\":[\"Bestand \\\"\",[\"0\"],\"\\\" overschrijdt de maximale grootte van \",[\"1\"],\".\"],\"ena+qV\":[\"Bestand \\\"\",[\"0\"],\"\\\" heeft een ongeldig formaat. Alleen audio bestanden zijn toegestaan.\"],\"LkIAge\":[\"Bestand \\\"\",[\"0\"],\"\\\" is geen ondersteund audioformaat. Alleen audio bestanden zijn toegestaan.\"],\"RW2aSn\":[\"Bestand \\\"\",[\"0\"],\"\\\" is te klein (\",[\"1\"],\"). Minimum grootte is \",[\"2\"],\".\"],\"+aBwxq\":[\"Bestandsgrootte: Min \",[\"0\"],\", Max \",[\"1\"],\", maximaal \",[\"MAX_FILES\"],\" bestanden\"],\"UkgMPE\":[\"Bestandsnaam van het geüploade bestand\"],\"5g0xbt\":[\"Filter auditlogboeken op actie\"],\"9clinz\":[\"Filter auditlogboeken op collectie\"],\"O39Ph0\":[\"Filter op actie\"],\"DiDNkt\":[\"Filter op collectie\"],\"3AFOMQ\":[\"Filter op naam of id\"],\"q8rWRy\":[\"Filter releases op jaar\"],\"MRk67a\":[\"Vind tegenstrijdigheden en voeg volgende vragen voor\"],\"SdZBYB\":[\"Vind de juiste gesprekken voor je vraag\"],\"oRQsgh\":[\"Vind workspaces en houd gesprekken in beweging\"],\"p2j2po\":[\"Vind je plek in chat\"],\"participant.button.stop.finish\":[\"Afronden\"],\"participant.button.finish.text.mode\":[\"Voltooien\"],\"participant.button.finish\":[\"Voltooien\"],\"participant.modal.finish.title.text.mode\":[\"Gesprek afmaken\"],\"4dQFvz\":[\"Voltooid\"],\"jtvljU\":[\"Afronden\"],\"V1EGGU\":[\"Voornaam\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus op gesprekken\"],\"2CludW\":[\"Gericht op:\"],\"IaFUVX\":[\"Volg lopende sessies in de live monitor.\"],\"URFuH+\":[\"Volg bronverwijzingen vanuit chatantwoorden.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"Voor intern gebruik\"],\"c08s58\":[\"Voor facturen, een gedeeld contract, om een samenwerking te bespreken of voor iets op maat, mail <0>support@dembrane.com.\"],\"YP/rFm\":[\"voor het dembrane-team\"],\"GcibpE\":[\"Voor jou\"],\"z7J3FU\":[\"Prognose\"],\"UXY498\":[\"Een opgeslagen herinnering vergeten\"],\"glx6on\":[\"Wachtwoord vergeten?\"],\"rWsDiJ\":[\"Kader\"],\"2POOFK\":[\"Gratis\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Het gratis plan staat 1 rapport per werkruimte toe\"],\"GAy5hu\":[\"Het gratis plan staat 1 werkruimte per organisatie toe\"],\"NXMsm8\":[\"De limieten van het gratis abonnement en upgradeopties zijn duidelijker.\"],\"/L+Kwy\":[\"Gratis, alleen-lezen. Ziet projecten, gesprekken en rapporten. Kan niet chatten of rapporten genereren.\"],\"nLC6tu\":[\"Frans\"],\"2Ui6bR\":[\"wrijving\"],\"OwIqiD\":[\"Volledig scherm\"],\"k/Ywl4\":[\"Volledig transcript (wanneer beschikbaar)\"],\"3qkggm\":[\"Volledig scherm\"],\"Weq9zb\":[\"Algemeen\"],\"ziAjHi\":[\"Genereren\"],\"EIdJgG\":[\"Nieuw rapport genereren\"],\"QsUhrf\":[\"Rapport genereren\"],\"GRy59I\":[\"Genereer eerst een samenvatting\"],\"RW9Woq\":[\"Genereer gesprekstitels automatisch, met een optie om dit uit te schakelen.\"],\"MWSGhX\":[\"Bibliotheek genereren\"],\"5SWGxv\":[\"Nu genereren\"],\"GWUJ9X\":[\"Nu genereren\"],\"QqIxfi\":[\"Geheim genereren\"],\"gitFA/\":[\"Samenvatting genereren\"],\"+cSW/S\":[\"Automatische gesprekstitels bevatten één titel in plaats van een lijst suggesties.\"],\"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\"],\"Hd0xjq\":[\"Krijg een antwoord tijdens een gesprek\"],\"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.\"],\"Pl6LQ+\":[\"Neem contact op\"],\"ZDIydz\":[\"Aan de slag\"],\"4/PUV0\":[\"aan de slag.\"],\"erZjsz\":[[\"0\"],\" van dembrane 24 uur adminrechten geven voor deze werkruimte? De toegang stopt automatisch.\"],\"G2IKZF\":[\"Geef chatantwoorden een duim omhoog of omlaag.\"],\"TAXdgS\":[\"Geef me een lijst van 5-10 onderwerpen die worden besproken.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Ga terug\"],\"participant.concrete.artefact.action.button.go.back\":[\"Terug\"],\"DXr0zk\":[\"Volledig scherm\"],\"iWpEwy\":[\"Ga naar home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Naar facturering\"],\"mPlqH9\":[\"Naar chats\"],\"s15CIR\":[\"Naar gesprekken\"],\"10Xyas\":[\"Naar dashboard\"],\"4+0/e5\":[\"Naar de hostgids\"],\"BVMldh\":[\"Naar de bibliotheek\"],\"SAshCc\":[\"Naar de monitor\"],\"A3oCMz\":[\"Ga naar nieuw gesprek\"],\"S8lgYE\":[\"Naar het overzicht\"],\"Zo4Spg\":[\"Naar de portal-editor\"],\"jH97zI\":[\"Naar de projectpagina\"],\"QvyaLZ\":[\"Naar het rapport\"],\"1WuwiM\":[\"Naar instellingen\"],\"EEZvNu\":[\"Doel\"],\"mc61Qc\":[\"Doel opgeslagen\"],\"VIfUjY\":[\"Goed antwoord\"],\"76gPWk\":[\"Begrepen\"],\"hjZBYK\":[\"Heb je twee minuten? Vijf optionele vragen helpen ons voorbereiden.\"],\"Lr2Goo\":[\"Licenties toekennen\"],\"ALoP4W\":[\"Groeperen op\"],\"+h3keC\":[\"Gids hoe titels worden gegenereerd. Titels beschrijven het onderwerp van het gesprek, niet de deelnemer.\"],\"2XucLv\":[\"Stuur het schrijven van rapporten met je eigen instructies.\"],\"uMjvI3\":[\"Het rapport begeleiden\"],\"myXGZW\":[\"Begeleid\"],\"ZqBGoi\":[\"Bevat geverifieerde artefacten\"],\"0zo6ap\":[\"Heb je een training afgerond?\"],\"OwUS8p\":[\"je opnames te laten transcriberen\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me op weg\"],\"55zzNI\":[\"Hulp bij het opzetten van je project.\"],\"1zZ1IK\":[\"Hoi\"],\"v6a4UH\":[\"Hoi \",[\"firstName\"]],\"D+zLDD\":[\"Verborgen\"],\"eBAQFo\":[\"Verborgen voor leden van de organisatie. Beheerders van de organisatie kunnen de werkruimte nog wel vinden en eraan deelnemen.\"],\"G1UUQY\":[\"Verborgen parel\"],\"vLyv1R\":[\"Verbergen\"],\"eHo/Jc\":[\"Gegevens verbergen\"],\"CdQHTK\":[\"Details verbergen\"],\"lqv0Dk\":[\"Projecten verbergen\"],\"g4tIdF\":[\"Revisiegegevens verbergen\"],\"dN/wNN\":[\"Stappen verbergen\"],\"umJNCH\":[\"Wijzigingen verbergen\"],\"SGJRXz\":[\"de dembrane event-uitnodiging verbergen\"],\"V3NvRL\":[\"De dembrane event-uitnodiging verbergen kan met een betaald plan.\"],\"+WN0mu\":[\"Meldingen over grote drukte verklaren langere wachttijden op antwoorden.\"],\"gtEbeW\":[\"Hoogtepunt\"],\"tn75xn\":[\"Specifiek Concept markeren\"],\"3l+JGi\":[\"Notitie bij wijziging\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Host\"],\"Elg25+\":[\"hostgids\"],\"bGCQQ9\":[\"Hostgids\"],\"7PTDfe\":[\"Hostgidsen worden bij het project opgeslagen en met een witte achtergrond afgedrukt.\"],\"EW9rvn\":[\"Feedback van de host\"],\"y9DTlP\":[\"Hosts kunnen antwoorden inschakelen en de prompt aanpassen in de portaalinstellingen.\"],\"yY8wAv\":[\"Uren\"],\"zvDeDZ\":[\"Uren vanaf nu\"],\"EmxJlb\":[\"Hoe Vragen werkt en wat je ermee kunt.\"],\"lgXx7l\":[\"Hoe het werkt:\"],\"DTQkD6\":[\"Hoeveel opnames verwacht je in je eerste jaar?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"Zeg het zoals jij het zou zeggen. Een datum, een seizoen, of dat je het nog niet weet.\"],\"/c3Xl4\":[\"https://youtu.be/y6jIf-kAYtQ\"],\"ACVscB\":[\"Ik heb het canvas toegepast.\"],\"wJCEin\":[\"Ik heb het doel toegepast.\"],\"L5eful\":[\"Ik heb binnenkort veel grote evenementen\"],\"Q53s6K\":[\"Ik heb de <0>voorwaarden gelezen en ga ermee akkoord\"],\"IVvH44\":[\"Ik heb ondersteuning voor een specifieke taal nodig\"],\"UTbk9h\":[\"Ik heb strikte privacygaranties nodig\"],\"participant.button.i.understand\":[\"Ik begrijp het\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"Ik weet het over een week of twee\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identificeer herhalende thema's, onderwerpen en argumenten die consistent in gesprekken voorkomen. Analyseer hun frequentie, intensiteit en consistentie. Verwachte uitvoer: 3-7 aspecten voor kleine datasets, 5-12 voor middelgrote datasets, 8-15 voor grote datasets. Verwerkingsrichtlijn: Focus op verschillende patronen die in meerdere gesprekken voorkomen.\"],\"QSzGDE\":[\"Inactief\"],\"IroOSC\":[\"Als je hebt gezien dat gegevens zichtbaar zijn voor de verkeerde mensen, dat iemand toegang heeft die dat niet hoort te hebben, of dat er mogelijk een beveiligingslek is, gebruik dan ons <0>formulier voor beveiligingsmeldingen. Je melding komt dan bij een ander team terecht en wordt sneller opgepakt. Mail bij spoed naar <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"Als je tevreden bent met \",[\"objectLabel\"],\", klik dan op \\\"Goedkeuren\\\" om te laten zien dat je je gehoord voelt.\"],\"qtM5OH\":[\"Als je iets anders nodig hebt, maken we een voorstel voor jouw situatie.\"],\"mHvgOU\":[\"Verwachtte je toegang? Vraag de persoon die je heeft uitgenodigd om de uitnodiging opnieuw te sturen.\"],\"AGaPk/\":[\"Als je niet zeker bent, is het waarschijnlijk nog niet nodig. Webhooks zijn een geavanceerde functie die meestal wordt gebruikt door ontwikkelaars of teams met aangepaste integraties. Je kunt ze altijd later instellen.\"],\"hDVOQQ\":[\"Als je webhook-integraties instelt, zouden we graag weten wat je voor gebruik hebt. We zijn ook bezig met observability-functies, waaronder auditlogboeken en leveringstracking.\"],\"kSoYmo\":[\"Als je je bij een bestaande organisatie wilt aansluiten, maak dan geen nieuwe aan. Je kunt hier per ongeluk terechtkomen door:\"],\"X2yiuT\":[\"Beeldstijl\"],\"QYnqWe\":[\"Afbeeldingen mogen maximaal \",[\"MAX_FILE_MB\"],\"MB zijn\"],\"zyr//t\":[\"Verbeter mijn instellingen\"],\"dylF+L\":[\"Verbeteringen\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactief\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Portallink opnemen\"],\"hTwp/C\":[\"Inbegrepen uren opgebruikt\"],\"LYjZNH\":[\"Inbegrepen uren deze maand opgebruikt\"],\"JEvKqp\":[\"Onjuist of verzonnen\"],\"8aA4We\":[\"overgenomen van organisatie\"],\"C6W6w6\":[\"Begin\"],\"fr30H3\":[\"Innovator of hoger\"],\"sQpkks\":[\"inzicht \",[\"0\"]],\"3hJypY\":[\"Inzichten\"],\"MSVCjk\":[\"Instructies voor het genereren van het verificatieresultaat\"],\"fN5mkr\":[\"Integraties en export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Nieuw: Popcorn\"],\"crUYYp\":[\"Ongeldige code. Vraag een nieuwe aan.\"],\"jLr8VJ\":[\"Ongeldige inloggegevens.\"],\"B2Tpo0\":[\"Ongeldige e-mail\"],\"R7p7+o\":[\"Ongeldige uitnodigingslink\"],\"KhBSE/\":[\"Uitnodiging\"],\"oFgGAT\":[\"Er staan uitnodigingen voor je klaar. Accepteer om aan de slag te gaan.\"],\"MFKlMB\":[\"Uitnodigen\"],\"UwSCxN\":[\"Uitnodiging afgewezen\"],\"D1TqRz\":[\"Nodig externe medewerkers en waarnemers uit met eigen toegangsrollen.\"],\"ynskdH\":[\"Nodig leden uit om samen te werken aan projecten en gesprekken in deze werkruimte.\"],\"3iGwJw\":[\"Alleen op uitnodiging\"],\"W6+yFb\":[\"Mensen uitnodigen\"],\"iLWFzs\":[\"Nodig mensen uit voor \",[\"orgName\"]],\"lOslCN\":[\"Uitnodiging opnieuw verstuurd\"],\"7Nlmb6\":[\"Uitnodiging ingetrokken\"],\"gfMuvV\":[\"Uitnodiging verstuurd\"],\"5LFLMg\":[\"Uitnodiging verstuurd naar \",[\"email\"],\". Het project wordt gedeeld zodra ze meedoen.\"],\"2AL6ct\":[\"Uitnodiging verstuurd.\"],\"rL7peH\":[\"Uitnodiging verstuurd. Het project wordt gedeeld zodra ze meedoen.\"],\"CTWPKj\":[\"Nodig uit voor een werkruimte, of alleen voor de organisatie.\"],\"RXHza3\":[\"Nodig uit voor deze werkruimte, of alleen voor de organisatie.\"],\"fxXOSv\":[\"Uitnodigen en delen\"],\"d+Y+rP\":[\"Nodig je team uit\"],\"GA5TFo\":[\"Werkruimte op uitnodiging\"],\"M4oozP\":[\"uitgenodigd door \",[\"0\"]],\"voFazH\":[\"Uitnodigingen verlopen na 7 dagen. Vraag \",[\"inviterName\"],\" om een nieuwe te versturen.\"],\"ec+Yhb\":[\"Factuurbedrag, EUR\"],\"Nv38Sl\":[\"Factuur geregistreerd als betaald.\"],\"DTZqjh\":[\"Offline gefactureerd, geen Mollie-machtiging.\"],\"F7nA5/\":[\"Facturen\"],\"L7OkFI\":[\"Facturatie\"],\"1xMiTU\":[\"IP-adres\"],\"7eZuvg\":[\"Is dit voor intern gebruik binnen je organisatie, of voor een externe organisatie?\"],\"6u5tk8\":[\"Is deze werkruimte voor intern gebruik binnen je organisatie, of voor een externe organisatie die eigenaar is van haar data?\"],\"eeAl1v\":[\"Factuur uitgeven\"],\"08FN6B\":[\"Betaallink uitgeven\"],\"Gglww2\":[\"Het heeft een eigen abonnement en eigen plaatsen, niet het gedeelde abonnement van \",[\"0\"],\". Wijzigingen hier gelden alleen voor deze werkruimte.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"Het gesprek is verwijderd terwijl je opnam. We hebben de opname gestopt om problemen te voorkomen. Je kunt een nieuwe opnemen wanneer je wilt.\"],\"library.not.available.message\":[\"Het lijkt erop dat de bibliotheek niet beschikbaar is voor uw account. Vraag om toegang om deze functionaliteit te ontgrendelen.\"],\"participant.outcome.error.description\":[\"We konden deze uitkomst niet laden. Dit kan een tijdelijk probleem zijn. U kunt proberen te herladen of teruggaan om een ander onderwerp te selecteren.\"],\"5dxEAB\":[\"Het lijkt erop dat u nog geen rapport voor dit project heeft. Genereer er een om een overzicht van uw gesprekken te krijgen.\"],\"ZYXJus\":[\"Misschien is hij al gebruikt of verlopen. Als je e-mail geverifieerd is, log dan in om door te gaan.\"],\"MbKzYA\":[\"Het lijkt erop dat meer dan één persoon spreekt. Het afwisselen zal ons helpen iedereen duidelijk te horen.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italiaans (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"1BIvTp\":[\"Italiaans voor je belangrijkste workflows\"],\"KFXip/\":[\"Jan\"],\"r6wcTL\":[\"jan@voorbeeld.com\"],\"0wdd7X\":[\"Aansluiten\"],\"ADF305\":[\"Lid worden van \",[\"0\"],\" als <0>admin? Het verschijnt daarna meteen in je zijbalk.\"],\"C6DnOz\":[\"Word eerst zelf admin van \",[\"0\"],\" om anderen toe te voegen.\"],\"q1E+AA\":[\"Lid worden van \",[\"0\"],\"?\"],\"agqQk1\":[\"Word lid van \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Lid worden als admin\"],\"TCEFVm\":[\"Lid worden als admin?\"],\"j4IJHz\":[\"Eerst lid worden\"],\"eI7D2K\":[\"Aansluiten voor support\"],\"oopH2X\":[\"Aansluiten voor support (24 uur)\"],\"Q31z/2\":[\"Word lid van onze Slack-community\"],\"s/jfrO\":[\"Word lid van deze organisatie om werkruimtes te ontdekken en samen te werken met je team.\"],\"iVHzoM\":[\"Doe mee aan deze portalsessie\"],\"BICpzG\":[\"Sluit je als beheerder aan bij deze werkruimte om te helpen met support. De klant moet support-toegang voor medewerkers hebben aangezet. Je toegang stopt automatisch na 24 uur.\"],\"gePQ/O\":[\"Word lid van deze werkruimte om samen te werken aan gesprekken, inzichten te delen en samen rapporten te maken.\"],\"IKAMA9\":[\"Lid geworden van \",[\"subjectName\"]],\"Glgamf\":[\"Toegevoegd als admin\"],\"l4EwDk\":[\"Deelgenomen aan het gesprek\"],\"NiZZRh\":[\"Ga naar\"],\"vKhj0S\":[\"Ga op tablet en desktop naar het nieuwste chatbericht.\"],\"uocCon\":[\"Gewoon een momentje\"],\"xOTzt5\":[\"zojuist\"],\"TXB5vy\":[\"Eén.\"],\"mmEyCQ\":[\"Net een preview gemaakt. Even geduld.\"],\"Ulg4y+\":[\"Just read. Give it a moment.\"],\"VqAl2y\":[\"Net bijgewerkt. Even geduld.\"],\"UQYK3R\":[\"Net begonnen\"],\"U0T6D0\":[\"Praat of typ gewoon op een natuurlijke manier. Uw bijdrage gaat rechtstreeks naar ons productteam en helpt ons echt om dembrane te verbeteren. We lezen alles.\"],\"hK3t2g\":[\"Alleen jij, plus de beheerders van de werkruimte.\"],\"rnwfSX\":[\"Voorlopig alleen jij.\"],\"lgdsfK\":[\"Alleen jij. Deel met specifieke mensen →\"],\"OePlDL\":[[\"tier\"],\" houden tot een datum\"],\"0ohX1R\":[\"Houd de toegang veilig met een eenmalige code uit je authenticator-app. Gebruik deze schakelaar om tweestapsverificatie voor dit account te beheren.\"],\"4OjqAQ\":[\"Verder bewerken\"],\"RQElWR\":[\"Behouden\"],\"B3WAHx\":[\"Licentie houden\"],\"uHdpk+\":[\"Mijn abonnement behouden\"],\"Qzyw+2\":[\"In behandeling houden\"],\"1KXAJa\":[\"Houd opnames wakker\"],\"II//jO\":[\"Houd dit canvas up-to-date\"],\"KwiMrX\":[\"Werk door terwijl audio op de achtergrond wordt geüpload.\"],\"ff6h/m\":[\"Werk door terwijl audio uploadt, doorzoek je tags en bekijk de transcriptievoortgang. Verbeterde audioweergave en slimmere gespreksselectie maken analyse eenvoudiger.\"],\"0BWuwA\":[\"Houdt het niveau tot de datum hieronder en gaat daarna terug naar Free, tenzij ze een abonnement nemen.\"],\"4q0kY7\":[\"Kernbegrippen\"],\"dymfAn\":[\"Kernbegrippen vertellen de transcriptie hoe de namen en woorden die in dit project belangrijk zijn geschreven worden.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Taal\"],\"swJ0V2\":[\"Laatste audio\"],\"rTwgPH\":[\"Vorige maand\"],\"1ZaQUH\":[\"Achternaam\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Laatst opgeslagen \",[\"0\"]],\"K7P0jz\":[\"Laatst bijgewerkt\"],\"QEU41f\":[\"Laatst bijgewerkt \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Laatste\"],\"lchnsl\":[\"Nieuwste release\"],\"wv+L3B\":[\"Laatste rapport\"],\"zwWKhA\":[\"Meer informatie\"],\"ay5uke\":[\"Meer informatie over webhooks\"],\"ffCwpJ\":[\"Laat leeg om bestaande te behouden\"],\"wpBe20\":[\"Nu verlaten\"],\"qvRaz1\":[\"Werkruimte verlaten\"],\"J8VWes\":[\"Laat je e-mailadres achter, dan nemen we contact met je op.\"],\"UlKSMd\":[\"Vertrokken\"],\"Mx+KL8\":[\"Rechtsgrondslag\"],\"vRXsmZ\":[\"Rechtsgrondslag\"],\"CopiEV\":[\"Rechtsgrondslag opgeslagen\"],\"nc/jNe\":[\"Naam rechtspersoon\"],\"oK9656\":[\"Aan de slag!\"],\"8zGcQ2\":[\"Laten we je eerste gesprek horen.\"],\"qnAazR\":[\"Laten we het over het canvas \\\\\\\"\",[\"0\"],\"\\\\\\\" hebben.\"],\"OQ/Al+\":[\"Laten we het over dit canvas hebben.\"],\"VxapXh\":[\"bibliotheek\"],\"exYcTF\":[\"Bibliotheek\"],\"library.title\":[\"Bibliotheek\"],\"T50lwc\":[\"Bibliotheek wordt aangemaakt\"],\"gkv8iG\":[\"Kenteken\"],\"u/z4+7\":[\"Licentie ingetrokken\"],\"snyG+w\":[\"Licenties\"],\"/NleHL\":[\"Licenties verleend\"],\"JbbFA4\":[\"Levenslange limiet\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link gekopieerd\"],\"H+AO1D\":[\"Link naar het privacybeleid dat deelnemers te zien krijgen\"],\"g4/qsV\":[\"Toon mijn gesprekken\"],\"k3d/oJ\":[\"Toon de gesprekken in dit project.\"],\"+L0OEa\":[\"Gesprekken op een rij zetten\"],\"gWVReV\":[\"Documentatiepagina's opzoeken\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live en recent\"],\"uH9GEL\":[\"Live agent uitvoermodus\"],\"participant.live.audio.level\":[\"Live audio niveau:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live deelnemersstroom\"],\"O0rtUS\":[\"Live deelnemerstrechter: aantallen voor gescand, instellen, op opnamepagina, live en voltooid\"],\"n9yU9X\":[\"Live Voorbeeld\"],\"hQE9uK\":[\"Live opnames, voortgang van transcriptie en fouten verschijnen hier zodra deelnemers in de portal beginnen met opnemen.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live verbinding verbroken. We werken minder vaak bij tot de verbinding terug is.\"],\"PPSKvH\":[\"Live verbinding onderbroken. We halen updates nu periodiek op.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Meer laden\"],\"yQE2r9\":[\"Bezig met laden\"],\"participant.verify.instructions.loading\":[\"Bezig met laden\"],\"yQ9yN3\":[\"Acties worden geladen...\"],\"participant.concrete.loading.artefact\":[\"Tekst aan het laden…\"],\"JOvnq+\":[\"Auditlogboeken worden geladen…\"],\"y+JWgj\":[\"Collecties worden geladen...\"],\"92/9LJ\":[\"Laadindicatoren en foutmeldingen geven duidelijkere feedback.\"],\"YyMToN\":[\"Leden laden\"],\"IG63hz\":[\"Methodologie laden\"],\"FUK4WT\":[\"Microfoons laden...\"],\"Xan9/v\":[\"Projecten laden...\"],\"GtQzAW\":[\"Deze chat laden...\"],\"H+bnrh\":[\"Transcript aan het laden...\"],\"3SKW0s\":[\"Verify onderwerpen aan het laden…\"],\"eRq8Ag\":[\"Werkruimtes laden…\"],\"+yD+Wu\":[\"bezig met laden...\"],\"Z3FXyt\":[\"Bezig met laden...\"],\"Pwqkdw\":[\"Bezig met laden…\"],\"G2fuEb\":[\"Vergrendeld\"],\"pefb7Y\":[\"Gesprek vergrendeld, upgrade om te bekijken\"],\"z32CuS\":[\"Vergrendeld om bij de uitnodiging te passen. Wil je een ander adres gebruiken? Vraag de admin om dat e-mailadres opnieuw uit te nodigen.\"],\"sQia9P\":[\"Inloggen\"],\"L3Q5Lc\":[\"Log in bij \",[\"resolvedWorkspaceName\"],\" om verder te gaan.\"],\"KC88rc\":[\"Uitloggen en het uitgenodigde e-mailadres gebruiken\"],\"7Zt++i\":[\"Dit doorgeven aan het dembrane-team\"],\"z0t9bb\":[\"Inloggen\"],\"LM/dWU\":[\"Inloggen | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo verwijderd\"],\"MjfaMh\":[\"Logo bijgewerkt\"],\"nOhz3x\":[\"Uitloggen\"],\"FTbR8B\":[\"Langste eerst\"],\"jWXlkr\":[\"Langste eerst\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Batterij bijna leeg\"],\"tX9/Xs\":[\"een werkruimte privé te maken\"],\"QqxHAZ\":[\"Maak het privé om alleen met specifieke mensen te delen. Privéprojecten vereisen het innovator-abonnement of hoger.\"],\"icpEdc\":[\"Privé maken\"],\"pCYZVV\":[\"Zichtbaar maken voor de hele werkruimte\"],\"wckWOP\":[\"Beheren\"],\"lXmPSL\":[\"Aanwezigen beheren\"],\"z0ndiD\":[\"Beheer facturatieaccounts, betalingen en upgradeverzoeken voor werkruimtes.\"],\"hB02vO\":[\"Leden beheren\"],\"WLAeKT\":[\"Facturatie van organisatie beheren\"],\"mrenWs\":[\"Templates beheren\"],\"2VeSf/\":[\"Training beheren\"],\"C0hP/3\":[\"Beheer het eigenaarschap van werkruimtes, inclusief interne en externe data-eigenaren.\"],\"waFx9W\":[\"Beheerd\"],\"DlYfyz\":[\"Beheerde accounts betalen op factuur, niet met een kaart. Een account beheerd maken houdt alle functies aan en zet automatisch incasseren, aanmaningen en verlopen uit. Wijs een dembrane-accountmanager toe zodat de klant weet bij wie hij terechtkan.\"],\"bxxIPf\":[\"Beheerde facturatie\"],\"usR1Ju\":[\"Beheerd door dembrane\"],\"/FWPUc\":[\"Beheert leden, werkruimtes en organisatie-instellingen.\"],\"onllUU\":[\"Alles markeren als gelezen\"],\"JSxZVX\":[\"Alle als gelezen markeren\"],\"E8m+Rc\":[\"Markeer als aanwezig\"],\"+s1J8k\":[\"Als gelezen markeren\"],\"5GPcf9\":[\"Markeren als ongelezen\"],\"TyonBx\":[\"Markeer als voltooid\"],\"MCipZC\":[\"Factuur markeren als betaald\"],\"AHBWqd\":[\"Training als voltooid markeren\"],\"Ofm5QB\":[\"Markeert \",[\"orgName\"],\" als partner. De werkruimtes geven bij het aanmaken zelf aan of ze voor intern of extern klantgebruik zijn.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"Met MCP-verbindingen kan je agent projecten vinden, gesprekken doorzoeken, transcripties lezen en documentatie raadplegen, met organisatie-instellingen en expliciete toestemming.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Vergadernotities\"],\"NwiNTb\":[\"lid\"],\"OvoEq7\":[\"Lid\"],\"deUR+U\":[\"Lid verwijderd\"],\"GnG6Oy\":[\"leden\"],\"wlQNTg\":[\"Leden\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Geheugen\"],\"u418B7\":[\"Herinnering verwijderd\"],\"ltnOth\":[\"Bericht van het dembrane team\"],\"YcaR2g\":[\"Bericht is te lang (maximaal 32.000 tekens). Voeg gesprekken toe of maak je bericht korter.\"],\"08d+3x\":[\"Berichten van \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologieën\"],\"m8tKkP\":[\"Methodologie\"],\"hml7oE\":[\"Methodologie aangemaakt\"],\"l1/lbT\":[\"Methodologie opgeslagen\"],\"e6I7Ej\":[\"Methodologie bijgewerkt\"],\"ADm81a\":[\"Microfoon geblokkeerd\"],\"+WoTL8\":[\"Microfoon getest\"],\"B+1PXy\":[\"Toegang tot de microfoon wordt nog steeds geweigerd. Controleer uw instellingen en probeer het opnieuw.\"],\"azjxk1\":[\"Antwoordt niet op de vraag\"],\"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\"],\"f8jrkd\":[\"meer\"],\"2FYpfJ\":[\"Meer\"],\"JcD7qf\":[\"Meer acties\"],\"rAPyBz\":[\"Betrouwbaarder anonimiseren en opnemen\"],\"MmhZK+\":[\"Betrouwbaardere gesprekssamenvattingen\"],\"YJLckp\":[\"Meer dan 1000.\"],\"MDHqSE\":[\"Meer dan 40.\"],\"UdGNo8\":[\"Nuttigere chatcontext\"],\"QWdKwH\":[\"Verplaatsen\"],\"3qp1VW\":[\"\\\"\",[\"0\"],\"\\\" verplaatsen naar \",[\"targetWorkspaceName\"],\"? Leden van de huidige werkruimte verliezen hun toegang.\"],\"ZU6coV\":[[\"0\"],\" van \",[\"1\"],\" naar \",[\"tier\"],\" verplaatsen?\"],\"8Pgx5L\":[\"Haal \",[\"name\"],\" van facturatie door dembrane. Kies wat er met hun plan gebeurt.\"],\"CyKTz9\":[\"Verplaats gesprek\"],\"vSmX52\":[\"Verplaats meerdere gesprekken tussen projecten en projecten tussen werkruimtes.\"],\"cK3qrq\":[\"Verplaatsingsgeschiedenis\"],\"nthowT\":[\"Project verplaatsen\"],\"WnyjBv\":[\"Projecten verplaatsen\"],\"7TYQRA\":[\"Dit project naar de geselecteerde werkruimte verplaatsen?\"],\"fwyWPz\":[\"Verplaats dit project, met de gesprekken en rapporten, naar een werkruimte die je beheert. Je moet admin of eigenaar van de doelwerkruimte zijn.\"],\"wUTBdx\":[\"Verplaats naar een ander project\"],\"zCpAZ1\":[\"Naar een andere werkruimte verplaatsen\"],\"Ksvwy+\":[\"Verplaats naar project\"],\"5MzfrX\":[\"Analyse in meerdere stappen.\"],\"MK3wTj\":[\"Meertalige transcriptie en langere gespreksantwoorden zijn verbeterd.\"],\"uzUz9i\":[\"Meerdere talen\"],\"j7HfhZ\":[\"Moet minstens 10 minuten in de toekomst zijn\"],\"5hOInR\":[\"Mijn toegang\"],\"en+4fS\":[\"Mijn sjablonen\"],\"6YtxFj\":[\"Naam\"],\"e3/ja4\":[\"Naam A-Z\"],\"8/brI5\":[\"Naam is verplicht\"],\"aFFbp6\":[\"Noem het naar de klant, opdracht of het doel.\"],\"KxAfaR\":[\"Noem het naar het onderwerp, de opdracht of de vraag die je verkent.\"],\"ztAdhw\":[\"Naam bijgewerkt\"],\"vfJR5V\":[\"Geef je organisatie een naam om te beginnen. Je kunt daarna meteen leden uitnodigen, of later via instellingen lid worden van andere organisaties.\"],\"5cahWP\":[\"Geef je organisatie een naam. Je kunt daarna mensen uitnodigen, of dat later via instellingen doen.\"],\"pfbjQ0\":[\"Geef je werkruimte een naam.\"],\"c5Xt89\":[\"Naam Z-A\"],\"WcgzjF\":[\"naam@voorbeeld.com\"],\"CLjxnx\":[\"naam@voorbeeld.com, naam2@voorbeeld.com\"],\"AQjK0x\":[\"Werkwijzen met een naam die je team opnieuw kan gebruiken.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"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\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"Nieuw\"],\"mdHOWX\":[\"Nieuwe chat over dit canvas\"],\"00MiO6\":[\"Nieuwe chatmodi en vraagsuggesties ondersteunen de analyse.\"],\"Wmq4bZ\":[\"Nieuwe Gesprek Naam\"],\"u2uElg\":[\"Nieuwe gesprekken toegevoegd sinds dit rapport\"],\"library.new.conversations\":[\"Er zijn nieuwe gesprekken toegevoegd sinds de bibliotheek is gegenereerd. Genereer de bibliotheek opnieuw om ze te verwerken.\"],\"/yIxDf\":[\"Nieuwe functies\"],\"QnAEjj\":[\"Nieuwe functies, verbeteringen en oplossingen in dembrane.\"],\"CSz4y/\":[\"Nieuwe look, nieuwe functies\"],\"UPRdvV\":[\"Nieuwe methodologie\"],\"MVaH2c\":[\"Nieuwe organisatie\"],\"/nT6AE\":[\"Nieuw wachtwoord\"],\"7vhWI8\":[\"Nieuw wachtwoord\"],\"gKi+a/\":[\"Nieuw project\"],\"wzIR5D\":[\"Nieuw project | dembrane\"],\"C5tnUD\":[\"Nieuwe projecten voegen dembrane niet meer als standaard transcriptieterm toe.\"],\"z6wcHz\":[\"Nieuw rapport\"],\"ZfVx+G\":[\"Nieuw niveau\"],\"curoK5\":[\"Nieuwe werkruimte\"],\"cTUByn\":[\"Nieuwste eerst\"],\"+RfVvh\":[\"Nieuwste eerst\"],\"hXzOVo\":[\"Volgende\"],\"participant.button.next\":[\"Volgende\"],\"participant.verify.selection.button.next\":[\"Volgende\"],\"participant.verify.instructions.button.next\":[\"Volgende\"],\"1vEADD\":[\"Volgende factuur\"],\"ljNSDv\":[\"Volgende: kies een tijd\"],\"1UzENP\":[\"Nee\"],\"participant.button.finish.no.text.mode\":[\"Nee\"],\"oPoLg+\":[\"Geen toegang\"],\"VHfLAW\":[\"Geen accounts\"],\"riwuXX\":[\"Geen acties gevonden\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"Geen auditlogboeken komen overeen met de huidige filters.\"],\"Xmk0PY\":[\"Nog geen factureringsaccount. Mail naar <0>support@dembrane.com en we stellen er een in.\"],\"PVAfDk\":[\"Geen factureringsaccounts voldoen aan de huidige filters.\"],\"xz3y0A\":[\"Nog geen canvassen\"],\"d2Jf1f\":[\"Geen wijziging\"],\"project.sidebar.chat.empty.description\":[\"Geen chats gevonden. Start een chat met behulp van de \\\"Vraag\\\" knop.\"],\"9nWRSv\":[\"Geen chats gevonden voor je zoekopdracht.\"],\"r3iaI0\":[\"Nog geen chats.\"],\"Qqhl3R\":[\"Geen collecties gevonden\"],\"zsslJv\":[\"Geen inhoud\"],\"1pZsdx\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"library.no.conversations\":[\"Geen gesprekken beschikbaar om bibliotheek te maken\"],\"EtMtH/\":[\"Geen gesprekken gevonden.\"],\"BuikQT\":[\"Geen gesprekken gevonden. Start een gesprek met behulp van de deelname-uitnodigingslink uit het <0><1>projectoverzicht.\"],\"PNz5nE\":[\"Geen gesprekken voldoen aan deze filters.\"],\"select.all.modal.no.conversations\":[\"Er zijn geen gesprekken verwerkt. Dit kan gebeuren als alle gesprekken al in de context zijn of niet overeenkomen met de geselecteerde filters.\"],\"YnWe3z\":[\"Nog geen gesprekken.\"],\"GKpO3x\":[\"Nog geen gesprekken. Je kunt nu een rapport plannen en gesprekken worden opgenomen zodra ze zijn toegevoegd.\"],\"oaDwXD\":[\"Geen standaard ingesteld (door client beheerd geldt)\"],\"dl4q4O\":[\"geen vervaldatum\"],\"7Ad0TM\":[\"Geen expliciete delingen. Werkruimtebeheerders hebben nog steeds toegang.\"],\"Fb9N7E\":[\"Nog geen extern geleide organisaties.\"],\"cZ8DR9\":[\"Nog geen feedback.\"],\"cqoc0B\":[\"Geen verdere kosten\"],\"bl3Q4e\":[\"Nog geen doel. Stel er hier een in, of laat de assistent je erover interviewen in de chat.\"],\"wuFH13\":[\"Er zijn geen uitnodigingen verstuurd. Bekijk de lijst hieronder.\"],\"rwtE4m\":[\"Geen logo ingesteld. De standaard van dembrane wordt gebruikt.\"],\"4TVVsS\":[\"Geen resultaten\"],\"IntpVZ\":[\"Geen resultaten gevonden\"],\"JuBV6F\":[\"Nog geen leden.\"],\"A4D9sY\":[\"Nog geen methodologieën.\"],\"gr5hJS\":[\"Er was geen microfoon beschikbaar. Controleer of er een is aangesloten en niet ergens anders in gebruik is.\"],\"UfnqDf\":[\"Geen naam\"],\"jfhDAK\":[\"Noch geen nieuwe feedback gedetecteerd. Ga door met je gesprek en probeer het opnieuw binnenkort.\"],\"XOpCfj\":[\"Geen nieuwe uitnodigingen nodig. Bekijk de lijst hieronder.\"],\"nZsRCa\":[\"Nog niemand toegevoegd\"],\"VylT70\":[\"Nog niemand anders in deze organisatie\"],\"xp1ZnX\":[\"Nog niemand hier.\"],\"wca+1p\":[\"Niemand wordt automatisch geblokkeerd bij niet-betalen. Houd mislukte betalingen hier in de gaten en volg ze op.\"],\"6iedjR\":[\"Niemand voldoet aan dat filter.\"],\"RJSUJO\":[\"Nog niemand in de organisatie.\"],\"ZwZtAi\":[\"Nog niemand in deze organisatie.\"],\"/+Nxaa\":[\"Nog niemand gedeeld\"],\"sAu4UE\":[\"Nog niemand in de werkruimte.\"],\"/ksKg9\":[\"Geen organisatierol. Toegang via werkruimte-uitnodigingen.\"],\"laeweW\":[\"Geen betalingen voldoen aan het filter.\"],\"iV2Or0\":[\"Nog geen betalingen.\"],\"cqfchi\":[\"Geen pdf beschikbaar voor deze factuur.\"],\"qPbs1l\":[\"Geen openstaande uitnodigingen\"],\"X0DUuO\":[\"Geen projectactiviteit deze periode.\"],\"T3TyGx\":[\"Geen projecten gevonden \",[\"0\"]],\"y29l+b\":[\"Geen projecten gevonden voor de zoekterm\"],\"YzI8q2\":[\"Geen projecten gevonden.\"],\"m0I2ba\":[\"Geen recente activiteit\"],\"9Y/ZE7\":[\"Nog geen verwijsafspraken.\"],\"Cu/Lih\":[\"Er zijn nog geen release notes.\"],\"ctlSnm\":[\"Geen rapport gevonden\"],\"1iQvuD\":[\"Nog geen rapporten\"],\"Ev2r9A\":[\"Geen resultaten\"],\"pm345e\":[\"Geen selecteerbare gesprekken\"],\"deovLP\":[\"Nog geen samenvatting\"],\"WRRjA9\":[\"Geen trefwoorden gevonden\"],\"LcBe0w\":[\"Er zijn nog geen trefwoorden toegevoegd aan dit project. Voeg een trefwoord toe met behulp van de tekstinvoer boven aan om te beginnen.\"],\"KE6RCJ\":[\"Geen templates gevonden voor {searchQuery}\"],\"ndv8BV\":[\"Geen trainingen gevonden met deze filters.\"],\"JmSs4s\":[\"Nog geen trainingen.\"],\"bhqKwO\":[\"Geen transcript beschikbaar\"],\"vq+6l+\":[\"Er is nog geen transcript beschikbaar voor dit gesprek. Controleer later opnieuw.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"Nog geen verbruik deze cyclus.\"],\"OdkUBk\":[\"Er zijn geen geldige audiobestanden geselecteerd. Selecteer alleen audiobestanden (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"Er zijn geen verificatie-onderwerpen voor dit project geconfigureerd.\"],\"pdWSGS\":[\"Geen verify topics beschikbaar.\"],\"Z9sn1g\":[\"Nog geen versie\"],\"+uY23Q\":[\"Geen webhooks geconfigureerd\"],\"/PUkCU\":[\"Geen webhooks gevonden\"],\"AtHA/x\":[\"Nog geen werkruimtetoegang\"],\"nnCUYC\":[\"Geen werkruimte gekozen. Ze worden toegevoegd aan \",[\"orgName\"],\" en kunnen zelf werkruimtetoegang aanvragen.\"],\"wn5bQU\":[\"Geen wijziging van werkruimterol. Voeg deze persoon toe aan de organisatie en nodig ze daarna opnieuw uit vanuit de werkruimte.\"],\"tPEiUj\":[\"Er worden op dit moment geen werkruimtes uit deze organisatie met je gedeeld.\"],\"pxmfsY\":[\"Geen werkruimtes komen overeen met \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"Niets gepland\"],\"PjeFWm\":[\"Geen geldig e-mailadres.\"],\"select.all.modal.not.added\":[\"Niet toegevoegd\"],\"OJx3wK\":[\"Niet beschikbaar\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Niet nu\"],\"Ua2NxX\":[\"Geen beheerde facturatie. Zet op beheerd om dit account op het \",[\"tier\"],\"-niveau te factureren, zonder automatische afschrijvingen via Mollie.\"],\"07Vguj\":[\"Wordt niet verlengd\"],\"vaVAp0\":[\"Niet ingepland\"],\"MTqQMG\":[\"Niet ingesteld\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Weet ik nog niet.\"],\"kBpuXT\":[\"Deze niet\"],\"vbpAZQ\":[\"Niet getraind\"],\"/hpEcX\":[\"notitie\"],\"1DBGsz\":[\"Notities\"],\"RYtZxa\":[\"Notities voor ons team\"],\"budBGD\":[\"Notities die de assistent bijhoudt over hoe je graag werkt, opgeslagen tijdens je chats. Alleen jij ziet ze. Verwijder alles wat je niet wilt bewaren.\"],\"NdAad3\":[\"Notities die de assistent vanuit chats over dit project heeft opgeslagen. Iedereen die in dit project chat deelt ze.\"],\"WAy8m5\":[\"Notities die de assistent vanuit chats over deze werkruimte heeft opgeslagen. Iedereen in de werkruimte deelt ze.\"],\"DZMptz\":[\"Op dit moment niets van dembrane.\"],\"DN72IZ\":[\"Hier is nog niets voor je.\"],\"yFnB+H\":[\"hier nog niets\"],\"0IdomT\":[\"Er wordt niets verstuurd totdat je het verstuurt. Pas hieronder eerst aan wat je wilt.\"],\"we3tJT\":[\"Niets komt overeen met het filter.\"],\"610qM/\":[\"Nog niets opgeslagen. De assistent voegt hier notities toe terwijl er wordt gechat.\"],\"6rAlvZ\":[\"Nog niets opgeslagen. De assistent voegt hier notities toe terwijl je chat.\"],\"yebagU\":[\"Deelnemers melden wanneer een rapport wordt gepubliceerd.\"],\"hGA9Wy\":[\"Waarnemer\"],\"phUtHZ\":[\"Waarnemers (gratis)\"],\"k9cwCQ\":[\"Waarnemers zijn gratis en alleen-lezen, en alleen voor werkruimtes van externe klanten. Ze kunnen de werkruimte bekijken, maar niet chatten, rapporten genereren of bewerken. Wijzig hun rol naar Extern om ze meer te laten doen.\"],\"RfY3gN\":[\"Observers zijn gratis gasten die alleen kunnen meelezen. Wil je ze laten bewerken? Verwijder ze en nodig ze opnieuw uit als lid.\"],\"JIE4kF\":[\"Waarnemers zijn alleen beschikbaar in werkruimtes voor een externe klant. Kies alleen werkruimtes van externe klanten, of kies een andere rol.\"],\"Bdtwnw\":[\"uit\"],\"az8lvo\":[\"Uit\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oudste eerst\"],\"9+6THi\":[\"Oudste eerst\"],\"Fdp03t\":[\"aan\"],\"Z5HWHd\":[\"Aan\"],\"Hktelz\":[\"Facturatie wordt beheerd door dembrane. Overschakelen naar self-serve behoudt het niveau en toont de klant de checkout om kaartbetaling in te stellen.\"],\"er1mH/\":[\"Op opnamepagina\"],\"participant.verify.instructions.revise.artefact\":[\"Heb je het besproken? Klik op \\\"Herzien\\\" om \",[\"objectLabel\"],\" aan te passen aan jullie gesprek.\"],\"participant.verify.instructions.read.aloud\":[\"Lees \",[\"objectLabel\"],\" hardop voor en vertel wat je eventueel wilt aanpassen.\"],\"lKCG/O\":[\"Één groot evenement aan het eind van het jaar\"],\"O3G8il\":[\"Één dag in oktober\"],\"qvLmaf\":[\"Eén kleine letter\"],\"+P5Okg\":[\"Eén cijfer\"],\"m5rZjl\":[\"Eén symbool\"],\"MKUgK1\":[\"Eén hoofdletter\"],\"qitPxp\":[\"Eenmalig\"],\"J6n7sl\":[\"Actief\"],\"conversation.ongoing\":[\"Actief\"],\"yAVA7C\":[\"Lopende gesprekken\"],\"a//PzZ\":[\"Verander deze instelling alleen in overleg met de verantwoordelijke persoon(nen) voor de bescherming van gegevens binnen uw organisatie.\"],\"z7dMhl\":[\"Je kunt alleen afbeeldingen toevoegen\"],\"uaB4AS\":[\"Alleen organisatiebeheerders en eigenaren kunnen werkruimtes aanmaken. Vraag een beheerder van je organisatie om er een aan te maken, of om je eerst te promoveren.\"],\"0WLwiw\":[\"Alleen mensen die al in deze werkruimte zitten, kunnen worden toegevoegd. Nodig ze eerst uit voor de werkruimte als ze hier nog niet zijn.\"],\"xbDpkO\":[\"Alleen de mensen die je toevoegt of uitnodigt, kunnen het zien.\"],\"K/CPkL\":[\"Alleen bij het vastleggen van een factuur die al buiten het systeem is betaald.\"],\"fKQbMI\":[\"Alleen werkruimtebeheerders en de mensen die je uitnodigt, kunnen dit project openen.\"],\"BKONOC\":[\"Alleen werkruimtebeheerders kunnen de rechtsgrondslag wijzigen.\"],\"C/Sx14\":[\"Alleen werkruimtebeheerders kunnen deze instellingen wijzigen. Vraag een beheerder als er iets bijgewerkt moet worden.\"],\"4UuIbT\":[\"Alleen jij kunt deze werkruimte zien.\"],\"participant.alert.microphone.access.failure\":[\"Het lijkt erop dat toegang tot de microfoon geweigerd is. Geen zorgen, we hebben een handige probleemoplossingsgids voor je. Voel je vrij om deze te bekijken. Zodra je het probleem hebt opgelost, kom dan terug naar deze pagina om te controleren of je microfoon klaar is voor gebruik.\"],\"1TNIig\":[\"Openen\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Accountacties openen\"],\"tcgf5/\":[\"Alles openen\"],\"yCDcIF\":[\"Open chatdocumentatie\"],\"uIKeEf\":[\"Gesprek openen\"],\"3iEiGI\":[\"Open gesprekken via directe links.\"],\"EUQ7ko\":[\"Open documentatie\"],\"aRGGej\":[\"Open voor deelname\"],\"CD3rbs\":[\"Hostgids openen\"],\"f04uGY\":[\"Openen in Bibliotheek\"],\"c9rlQI\":[\"Mollie-dashboard openen\"],\"iZD9CK\":[\"Organisatie openen\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Opname bekijken\"],\"urJv1o\":[\"Open tabbladen herstellen na een nieuwe versie in plaats van op een oude pagina vast te lopen.\"],\"FBPD+d\":[\"Open \",[\"0\"],\" vanaf hier.\"],\"OG3wju\":[\"Open de chat\"],\"828iLy\":[\"Open de oorspronkelijke uitnodigings-e-mail en klik daar op de link, of vraag de uitnodiger om een nieuwe uitnodiging te sturen.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open de probleemoplossingsgids\"],\"m9eUZO\":[\"Open voor de werkruimte\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open de probleemoplossingsgids\"],\"f/LR+l\":[\"Open Wat is nieuw vanuit de zijbalk en bekijk de rondleiding over organisaties, werkruimtes en projecten.\"],\"Gc/l1s\":[\"Werkruimte openen\"],\"F7e1nt\":[\"Werkruimteacties openen\"],\"Hak8r6\":[\"Open je authenticator-app en voer de huidige zescijferige code in.\"],\"rPRgw+\":[\"Zet experimentele functies aan en help dembrane vormgeven. Deze functies kunnen op elk moment veranderen of verdwijnen.\"],\"LLAa/9\":[\"Optioneel\"],\"ZFIvWo\":[\"Optioneel (valt terug naar Engels)\"],\"V44CS4\":[\"Optioneel veld op de startpagina\"],\"bkndzy\":[\"Optioneel veld op de bedankpagina\"],\"xam4uE\":[\"Optionele vraag \",[\"0\"],\" van \",[\"1\"]],\"0OspM/\":[\"Optioneel. Waar deze werkruimte voor is.\"],\"0zpgxV\":[\"Opties\"],\"BzEFor\":[\"of\"],\"0EffTH\":[\"Of kies een tijd\"],\"7r2pfW\":[\"Of liever direct chatten?\"],\"1h45Hu\":[\"Of schrijf uw eigen\"],\"v2MBz4\":[\"Alleen organisatie\"],\"LB3Kje\":[\"Organisatie\"],\"sezvMj\":[\"Organisatie | dembrane\"],\"9L7xZr\":[\"Organisatieaccount\"],\"rlfKu+\":[\"Organisatiebeheerders kunnen via de ledenpagina lid worden van privéwerkruimtes.\"],\"93UwXg\":[\"Organisatiebeheerders kunnen via de ledenpagina lid worden van privéworkspaces. Toegangsopties leggen nu uit wanneer je eerst lid van een workspace moet worden.\"],\"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.\"],\"OMujDz\":[\"Organisatieleden laden sneller.\"],\"m9HLnV\":[\"Organisatienaam\"],\"IvGxhL\":[\"Organisatie niet gevonden\"],\"B38pCE\":[\"Alleen organisatie\"],\"kzWAph\":[\"Organisatiegebruik\"],\"GoZkew\":[\"Organisaties\"],\"usabod\":[\"Organisaties | dembrane\"],\"qdq0Jp\":[\"Organisaties aangemaakt door mensen die externe samenwerkers van een partner zijn. Een signaal dat ze mogelijk hun eigen abonnement willen.\"],\"Y3LC1c\":[\"Organisaties, workspaces en projecten\"],\"+4woA3\":[\"Orden projecten in werkruimtes binnen je organisatie.\"],\"pEAPjl\":[\"Organiseer werk in workspaces, nodig externe samenwerkers en waarnemers uit en beheer toegang vanuit de nieuwe zijbalk. Verplaats gesprekken tussen projecten en projecten tussen workspaces.\"],\"+g4lbW\":[\"Organiseer je werk in organisaties, workspaces en projecten, met meer controle over wie toegang heeft.\"],\"ucgZ0o\":[\"Organisatie\"],\"/IX/7x\":[\"Anders\"],\"x0FjQV\":[\"Onze eerste grote release\"],\"GC75c7\":[\"Resultaat succesvol goedgekeurd!\"],\"QLXrh9\":[\"Resultaat succesvol herladen!\"],\"LJg1UW\":[\"Resultaat succesvol herzien!\"],\"df3S+R\":[\"Resultaat succesvol bijgewerkt!\"],\"1fjbvD\":[\"resultaten\"],\"ZU3zZC\":[\"Resultaten\"],\"NTkmOk\":[\"Facturering voor overschrijding van toepassing\"],\"6KkwPT\":[\"Overschreven voor dit project\"],\"AR/qbs\":[\"Overschrijven voor dit project\"],\"6/dCYd\":[\"Overzicht\"],\"/fAXQQ\":[\"Overview - Thema’s & patronen\"],\"oDAEQq\":[\"Eigendom\"],\"OwPQJt\":[\"Eigendom is vergrendeld. Neem contact op met support om over te dragen.\"],\"HSAzUy\":[\"Eigenaar-organisatie\"],\"Wu++6g\":[\"Pagina inhoud\"],\"8F1i42\":[\"Pagina niet gevonden\"],\"6+Py7/\":[\"Pagina titel\"],\"v4nCHK\":[\"Betaald\"],\"uneeEC\":[\"deels afgerond\"],\"v8fxDX\":[\"Deelnemer\"],\"h3AUOJ\":[\"Deelnemer e-mail\"],\"WdEzKM\":[\"Deelnemer e-mails\"],\"Uc9fP1\":[\"Deelnemer features\"],\"hRcUJQ\":[\"Naam deelnemer\"],\"rMCv1T\":[\"Deelnemer naam en e-mail\"],\"Nqs/bT\":[\"Introductiekaarten voor deelnemers hebben duidelijkere teksten en gecorrigeerde vertalingen.\"],\"CmOBUh\":[\"Deelnemers abonneren op updates\"],\"DbvvEo\":[\"Verificatie van deelnemers\"],\"MZHPuB\":[\"Deelnemers\"],\"fVlUox\":[\"Deelnemers kunnen tijdens een opname om een antwoord vragen.\"],\"Ya1KaH\":[\"Deelnemers kunnen tijdens het opnemen een antwoord vragen en het lezen terwijl het verschijnt. Hosts kunnen antwoorden inschakelen en de prompt aanpassen in portaalinstellingen.\"],\"HxF3Iz\":[\"Deelnemers kunnen uitkomsten verifiëren en antwoorden verfijnen.\"],\"ezpFHx\":[\"Deelnemers kunnen uitkomsten verifiëren en antwoorden verfijnen. Nieuwe chatmodi en suggesties ondersteunen analyse, en tweefactorauthenticatie voegt een extra inlogoptie toe.\"],\"JT0fPF\":[\"Deelnemers krijgen een herinnering om te verifiëren voordat ze een gesprek beëindigen.\"],\"y4n1fB\":[\"Deelnemers kunnen trefwoorden selecteren wanneer ze een gesprek starten\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partnerorganisatie\"],\"LkuJMH\":[\"Partnerwerkruimte, apart gefactureerd en geen onderdeel van het plan van de organisatie.\"],\"qC5k4V\":[\"Partnerwerkruimte, apart gefactureerd van de organisatie.\"],\"8ZsakT\":[\"Wachtwoord\"],\"zJx6Vx\":[\"Wachtwoord gewijzigd\"],\"PxRsoo\":[\"Wachtwoord voldoet niet aan de vereisten.\"],\"lpIMne\":[\"Wachtwoorden komen niet overeen\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pauzeer het voorlezen\"],\"KXsZLF\":[\"Updates pauzeren\"],\"URAE3q\":[\"Gepauzeerd\"],\"XaA5fF\":[\"Gepauzeerd.\"],\"6Dmao4\":[\"Gepauzeerd. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Nu betalen\"],\"VwkrOQ\":[\"Betalende omzet\"],\"VESsDr\":[\"Betalende omzet deze maand\"],\"pJxzaT\":[\"Betaling mislukt\"],\"/CNehZ\":[\"Bedrag betaallink, EUR\"],\"GfJaff\":[\"Betaallink uitgegeven.\"],\"ENEPLY\":[\"Betaalmethode\"],\"sni5ir\":[\"Betalingskenmerk\"],\"Kd2B1D\":[\"De betaling is gelukt. Je plan is up-to-date.\"],\"S48xcO\":[\"in behandeling\"],\"UbRKMZ\":[\"In afwachting\"],\"EaYDGF\":[\"Openstaande toegangsverzoeken\"],\"V1wW5o\":[\"Actie vereist\"],\"sU2oO4\":[\"Openstaande uitnodigingen\"],\"GC714A\":[\"Openstaande uitnodigingen | dembrane\"],\"gPRsPw\":[\"personen\"],\"1wdjme\":[\"Personen\"],\"t9qtWL\":[\"Personen met toegang\"],\"Uoqcz2\":[\"Resultaten per ontvanger:\"],\"hkffer\":[\"Toegang per werkruimte\"],\"SrVzRe\":[\"Procent\"],\"NtQvjo\":[\"Periode\"],\"D0meML\":[\"persoon\"],\"t4wIPl\":[\"Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"zmwvG2\":[\"Telefoon\"],\"B8mlc2\":[\"Kies een datum\"],\"8hUAfY\":[\"Kies een tijd\"],\"rwgOir\":[\"Kies nu een moment\"],\"635Oq4\":[\"Kies een tijd met \",[\"host\"],\".\"],\"PYDbNJ\":[\"Kies een account\"],\"hZjgId\":[\"Kies minstens één werkruimte om de uitnodiging te versturen.\"],\"NCubup\":[\"Kies iemand uit je organisatie of typ een e-mailadres om uit te nodigen.\"],\"m+EMny\":[\"Kies er een\"],\"6v5aT9\":[\"Kies de aanpak die past bij je vraag\"],\"U1Tudq\":[\"Pilotlimiet bereikt\"],\"qVkGWK\":[\"Vastpinnen\"],\"u8qC4w\":[\"Project vastpinnen\"],\"S+WiJ3\":[\"Pin sjablonen hier vast voor snelle toegang.\"],\"YIuMHE\":[\"Pin maximaal drie projecten bovenaan je projectlijst.\"],\"w1aJIz\":[\"Pin je meestgebruikte templates direct in chat.\"],\"kNiQp6\":[\"Vastgezet\"],\"LdWQ+0\":[\"Vastgepind is vol (max 5)\"],\"EC6BHi\":[\"Vastgezette projecten\"],\"RimR35\":[\"Vastgepinde sjablonen\"],\"afV5A2\":[\"Plan eindigt\"],\"Iqh0Uv\":[\"Gepland\"],\"lWy5a1\":[\"Plannen\"],\"PI95wJ\":[\"Plant, verzamelt en controleert het eigen werk over veel gesprekken.\"],\"PKrSWk\":[\"Accepteer de voorwaarden om door te gaan.\"],\"participant.alert.microphone.access\":[\"Schakel microfoontoegang in om de test te starten.\"],\"SQSc5o\":[\"Controleer later of contacteer de eigenaar van het project voor meer informatie.\"],\"T8REcf\":[\"Controleer uw invoer voor fouten.\"],\"n6oAnk\":[\"Schakel deelneming in om delen mogelijk te maken\"],\"fwrPh4\":[\"Voer een geldig e-mailadres in.\"],\"ZhyvmA\":[\"Log in om door te gaan.\"],\"MXEkrp\":[\"Neem je reactie op door op de knop \\\"Record\\\" hieronder te klikken. Je kunt ook in tekst reageren door op het teksticoon te klikken.\\n**Houd dit scherm verlicht**\\n(zwart scherm = niet aan het opnemen)\"],\"Lu1j4b\":[\"Neem je reactie op door op de knop \\\"Record\\\" hieronder te klikken. Je kunt ook in tekst reageren door op het teksticoon te klikken.\\n**Houd dit scherm verlicht**\\n(zwart scherm = niet aan het opnemen).\\nJe transcriptie wordt geanonimiseerd en je host kan niet naar je opname luisteren.\"],\"library.processing.request\":[\"Bibliotheek wordt verwerkt\"],\"04DMtb\":[\"Wacht aub terwijl we uw hertranscriptieaanvraag verwerken. U wordt automatisch doorgestuurd naar het nieuwe gesprek wanneer klaar.\"],\"6MncU0\":[\"plus werkruimtebeheerders\"],\"rhEYMw\":[\"PNG, JPEG of WebP. Wordt bijgesneden tot een cirkel.\"],\"jjdudv\":[\"Slecht antwoord\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Populair\"],\"uRFMMc\":[\"Portal inhoud\"],\"ivjxif\":[\"Portalbeschrijving\"],\"oNb5Ox\":[\"portal-editor\"],\"694+8E\":[\"Portaalbewerker\"],\"qVypVJ\":[\"Portaal-editor\"],\"OZYxCC\":[\"Afsluitbericht portal\"],\"FNuwSz\":[\"Portaltaal\"],\"gKSdKz\":[\"Portal open voor nieuwe gesprekken\"],\"XfoCxn\":[\"Portaaloverzicht\"],\"fSWnrh\":[\"Portaalvoorbeelden en ondersteunende afbeeldingen worden correct weergegeven.\"],\"qLWG8R\":[\"Portaltitel\"],\"D5roJB\":[\"Portaltutorial\"],\"U4aiMW\":[\"Postcode\"],\"cWkKWE\":[\"compliment\"],\"E7dbXD\":[\"Praat je liever? Druk op opnemen en vertel het gewoon.\"],\"m/aSQ0\":[\"Bereid sessies voor met een bewerkbare hostgids naast de QR-code.\"],\"HVcm1v\":[\"Bereid sessies voor met een bewerkbare hostgids, verzamel e-mailadressen en anonimiseer transcripten. Deze update introduceert ook eigen logo’s en automatische gesprekstitels.\"],\"kBa6hc\":[\"Een navigatiesnelkoppeling voorbereiden\"],\"9vB8nN\":[\"Eerste update wordt voorbereid.\"],\"xVEtui\":[\"Dit canvas wordt voorbereid\"],\"/SM3Ws\":[\"Uw ervaring voorbereiden\"],\"rdUucN\":[\"Voorbeeld\"],\"hyneRf\":[\"Voorbeeld: De snelle bruine vos springt over de luiende hond.\"],\"DHhJ7s\":[\"Vorige\"],\"a7u1N9\":[\"Prijs\"],\"UoByX/\":[\"Afdrukken / PDF opslaan\"],\"S8ugMC\":[\"Rapport afdrukken\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL van het privacybeleid\"],\"zwBp5t\":[\"Privé\"],\"Q7R6ZJ\":[\"Privé · alleen genodigden kunnen dit zien\"],\"i4YTOL\":[\"Privéproject\"],\"1vsuTU\":[\"Privéwerkruimte\"],\"FdLMTd\":[\"Privéwerkruimtes zijn beschikbaar met een betaald abonnement.\"],\"1ihBUA\":[\"Privé. Voeg mensen toe om het te delen.\"],\"qAGp2O\":[\"Doorgaan\"],\"select.all.modal.proceed\":[\"Doorgaan\"],\"select.all.modal.loading.description\":[\"<0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" gesprek\"],\"other\":[\"#\",\" gesprekken\"]}],\" verwerken en toevoegen aan je chat\"],\"gzGDMM\":[\"Hertranscriptieaanvraag wordt verwerkt...\"],\"byJgGz\":[\"Hulp bij inkoop\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Projectacties\"],\"loCMRJ\":[\"Zoeken in projecten en gesprekken, met QR-codes in eigen huisstijl.\"],\"Ybdz4C\":[\"Projectkaarten tonen de taal van het project.\"],\"eBFgFZ\":[\"projectchats\"],\"2LxK9d\":[\"Projectcontext\"],\"RYrbVH\":[\"Project aangemaakt\"],\"Hie0VV\":[\"Project aangemaakt\"],\"zjTrs1\":[\"Projectstandaard: ingeschakeld. Persoonlijke informatie wordt vervangen door tijdelijke aanduidingen. Afspelen van audio, downloaden en hertranscriptie worden uitgeschakeld voor het nieuwe gesprek.\"],\"aVOwd+\":[\"Project verwijderd\"],\"7TYa2T\":[\"Projectdoel\"],\"qW7NU2\":[\"Het project is nu zichtbaar voor iedereen in \",[\"workspaceName\"]],\"wNXqAE\":[\"Het project is nu zichtbaar voor de werkruimte\"],\"QFx9kj\":[\"Inzichtenbibliotheek | dembrane\"],\"ZA0drz\":[\"Projectlijsten tonen correcte gesprekstotalen.\"],\"QDjWwu\":[\"Project Meta Samenvatting\"],\"lltun+\":[\"Project verplaatst\"],\"OyIC0Q\":[\"Projectnaam\"],\"3gh0L6\":[\"Projectnaam en ID\"],\"6Z2q2Y\":[\"Projectnaam moet minstens 4 tekens lang zijn\"],\"n7JQEk\":[\"Project niet gevonden\"],\"uMobxw\":[\"projectoverzicht\"],\"q0+yfq\":[\"Project Overzicht | dembrane\"],\"3YND3K\":[\"projectinstellingen\"],\"Wsk5pi\":[\"Project Instellingen\"],\"7NmoFz\":[\"Verwacht maandtotaal\"],\"gitVS9\":[\"Verwacht jaartotaal\"],\"M9H+/G\":[\"projecten\"],\"+0B+ue\":[\"Projecten\"],\"DK5DV3\":[\"Projecten | dembrane\"],\"B1WDxD\":[\"Projecten binnen organisatie · \",[\"0\"]],\"uNGCZL\":[\"Projecten verplaatst\"],\"2ugVVF\":[\"Projecten verschijnen hier zodra iemand in de organisatie er een met je deelt.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Voorgesteld\"],\"pAY+Io\":[\"Voorgestelde wijzigingen\"],\"Aka3jE\":[\"Naar rato voor de rest van deze factureringsperiode.\"],\"vA3+jQ\":[\"Beveilig inloggen met tweestapsverificatie.\"],\"nyEOdh\":[\"Geef een overzicht van de belangrijkste onderwerpen en herhalende thema's\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publiceren\"],\"vsX8VJ\":[\"Publiceer dit rapport eerst om de portallink te tonen\"],\"IHzoSN\":[\"Publiceer dit rapport om een deellink te krijgen\"],\"u3wRF+\":[\"Gepubliceerd\"],\"E7YTYP\":[\"Haal de meest impactvolle quotes uit deze sessie\"],\"NHHXdL\":[[\"name\"],\" op facturatie beheerd door dembrane zetten, op het \",[\"tier\"],\"-niveau? Geen automatische afschrijvingen via Mollie en niets dat automatisch verloopt.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Vraag\"],\"4PTJUv\":[\"Vragen over hoe dembrane werkt, niet alleen over je data.\"],\"XhrBin\":[[\"0\"],\" stappen tegelijk uitgevoerd\"],\"iZuzSU\":[\"Snelheidslimiet bereikt\"],\"z1U/Fh\":[\"Beoordeling\"],\"wr9IYa\":[\"Voer het nieuwe wachtwoord opnieuw in\"],\"0ZBIgY\":[\"Gebruik instellingen van een bestaande webhook\"],\"Z5Tlsx\":[\"Neem contact met me op\"],\"D2yGaZ\":[\"Heractiveren\"],\"Pkpg2N\":[\"Plan heractiveren\"],\"wZxwNu\":[\"Lees hardop voor\"],\"hWUdE5\":[\"Lees antwoorden van de assistent terwijl ze binnenkomen.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Minder lezen\"],\"8fZueG\":[\"Meer lezen →\"],\"ZGjKp1\":[\"Lees productaankondigingen in het dashboard.\"],\"ITpS63\":[\"Lees antwoorden terwijl ze binnenkomen.\"],\"wOfACA\":[\"Lees de gids voor problemen met transcripties en samenvattingen\"],\"6pSHJ5\":[\"Alleen-lezen\"],\"WU7BCa\":[\"Samenvatting van \",[\"0\"],\" lezen\"],\"tFk6c8\":[\"Transcript van \",[\"0\"],\" lezen\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Een gesprekssamenvatting lezen\"],\"LpWlYq\":[\"Een skill lezen\"],\"9UTzRO\":[\"Een transcript lezen\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Projectcontext lezen\"],\"ug1A83\":[\"Projectinstellingen lezen\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"De documentatie lezen\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Klaar om te beginnen\"],\"ShoKlK\":[\"Klaar om je tools te verbinden? Voeg een webhook toe om automatisch gesprekdata te ontvangen wanneer gebeurtenissen plaatsvinden.\"],\"VJScHU\":[\"Reden\"],\"Xc0UKh\":[\"reden: \",[\"0\"]],\"0f3uxy\":[\"Recente betalingen over alle accounts\"],\"mzcrRN\":[\"onlangs\"],\"hpnYpo\":[\"Aanbevolen apps\"],\"participant.button.s3check.reconnect\":[\"Opnieuw verbinden\"],\"participant.button.interruption.reconnect\":[\"Opnieuw verbinden\"],\"BakXLg\":[\"Opnieuw verbinden\"],\"participant.button.record\":[\"Opname starten\"],\"462bGY\":[\"Spraakbericht opnemen\"],\"s4Sz7r\":[\"Neem nog een gesprek op\"],\"XmKjfh\":[\"Opname\"],\"677McA\":[\"Opnemen en apparaten wakker houden werken betrouwbaarder.\"],\"1b/b8T\":[\"Opnemen controleert de verbinding voor het uploaden van audio.\"],\"3gnwKb\":[\"Conferentiesessies opnemen.\"],\"HCC0Bp\":[\"Gesprekken opnemen waar je zelf bij bent, zoals straatinterviews.\"],\"yRmJ54\":[\"Opnameapparaten blijven betrouwbaarder wakker.\"],\"YR6uHM\":[\"Opnameapparaten blijven betrouwbaarder wakker. De introductie voor deelnemers, het verfijnen van antwoorden en gespreksselectie in Specific Details-chat zijn verbeterd.\"],\"DKaN8g\":[\"De opnameduur blijft correct na pauzeren en hervatten.\"],\"participant.modal.interruption.title\":[\"Opname onderbroken\"],\"yjom5N\":[\"Opnemen blijft werken, dus je deelnemers ondervinden er niets van.\"],\"+pHAyZ\":[\"Opnamelinks kunnen een titel, tags en deelnemersnaam vooraf invullen.\"],\"4IbgAX\":[\"Opnamepagina\"],\"participant.modal.pause.title\":[\"Opname gepauzeerd\"],\"/l7qFE\":[\"Opname gestart\"],\"POxNnV\":[\"De opname is gestopt bij de limiet van vijf minuten. Je opname wordt omgezet naar tekst.\"],\"kHphsJ\":[\"Opnemen wacht tot audio is geüpload voordat het afsluit, om ontbrekende transcripties in getroffen browsers te voorkomen.\"],\"view.recreate.tooltip\":[\"Bekijk opnieuw\"],\"view.recreate.modal.title\":[\"Bekijk opnieuw\"],\"CqnkB0\":[\"Terugkerende thema's\"],\"zKZCRh\":[\"Referentie \",[\"reference\"]],\"9aloPG\":[\"Referenties\"],\"P1xi25\":[\"Verfijnen toont het juiste label en kan niet starten terwijl een ander antwoord wordt gegenereerd.\"],\"lCF0wC\":[\"Vernieuwen\"],\"ZMXpAp\":[\"Auditlogboeken vernieuwen\"],\"rOwugh\":[\"Nu verversen\"],\"1STMKj\":[\"Lopende gesprekken vernieuwen\"],\"eEud7e\":[\"Verversen gestart\"],\"WqYAGe\":[\"Verversen werkt zodra de canvasservice klaar is.\"],\"zVuxvN\":[\"Vernieuwen…\"],\"6exX+8\":[\"Opnieuw genereren\"],\"PpFJd2\":[\"Samenvatting opnieuw genereren\"],\"bluvj0\":[\"Samenvatting opnieuw genereren\"],\"participant.regenerating.outcome\":[\"Uitkomst wordt opnieuw gegenereerd\"],\"oYlYU+\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten...\"],\"HPitDS\":[\"Registreer | dembrane\"],\"/PACVa\":[\"Release notes\"],\"Gm7/K+\":[\"Release notes | dembrane\"],\"UcLJ6I\":[\"Releasevideo\"],\"GHub6e\":[\"Releasevideo: \",[\"0\"]],\"tF5Smn\":[\"Pagina opnieuw laden\"],\"participant.button.reload.page.text.mode\":[\"Pagina herladen\"],\"participant.button.reload\":[\"Pagina herladen\"],\"participant.concrete.artefact.action.button.reload\":[\"Opnieuw laden\"],\"Lbcvrt\":[\"Denk eraan dat je altijd de Feedback-knop kunt gebruiken voor suggesties. We waarderen je steun, en bedankt dat je dembrane gebruikt.\"],\"vqD7S+\":[\"Gebruikers herinneren om te verifiëren voordat ze klaar zijn\"],\"tmHC17\":[\"Herinnering verstuurd: supporttoegang staat nog aan\"],\"t/YqKh\":[\"Verwijderen\"],\"w61W3L\":[[\"0\"],\" verwijderen\"],\"G0aZvo\":[[\"0\"],\" verwijderen uit deze werkruimte? Ze verliezen toegang tot alle projecten erin.\"],\"VoKjPv\":[\"Avatar verwijderen\"],\"Kl7//J\":[\"E-mail verwijderen\"],\"cILfnJ\":[\"Bestand verwijderen\"],\"tOkPHm\":[\"Uit chat verwijderen\"],\"1G/+Gj\":[\"Uit organisatie verwijderen\"],\"18PmZk\":[\"Uit organisatie verwijderen?\"],\"CJgPtd\":[\"Verwijder van dit gesprek\"],\"O90CN2\":[\"Logo verwijderen\"],\"99VIgC\":[\"Lid verwijderen\"],\"c8Kx/b\":[\"Overschrijving verwijderen\"],\"Gr8pvR\":[\"Het aangepaste logo verwijderen? In plaats daarvan wordt het standaardlogo van dembrane gebruikt.\"],\"itsN5H\":[\"Deze herinnering verwijderen?\"],\"eps54V\":[\"Verwijderd\"],\"nVEhnc\":[\"Verwijderd uit organisatie\"],\"project.sidebar.chat.rename\":[\"Naam wijzigen\"],\"6PsaMr\":[\"Chat hernoemen\"],\"TBZOgu\":[\"Verlenging\"],\"M7SqjM\":[\"Heropenen\"],\"m290vd\":[\"Opname\"],\"rnkWZt\":[\"Antwoorden aan deelnemers\"],\"XfEPZ0\":[\"Antwoordknoppen, chattemplates en de Library hebben gecorrigeerde vertalingen.\"],\"1jBoqr\":[\"Richtlijnen voor antwoorden\"],\"X9GEGX\":[\"Antwoordmodus\"],\"XyN13i\":[\"Reactie prompt\"],\"w1tLX2\":[\"rapport\"],\"gjpdaf\":[\"Rapport\"],\"e/MQa5\":[\"Rapport wordt al gegenereerd\"],\"Q3LOVJ\":[\"Probleem melden\"],\"DUmD+q\":[\"Rapport aangemaakt - \",[\"0\"]],\"hh/mvZ\":[\"Rapportgeneratie geannuleerd\"],\"LpkbUS\":[\"Rapporten worden op de achtergrond gegenereerd met een zichtbare status.\"],\"sSy8vA\":[\"Rapport wordt gegenereerd...\"],\"v7O77U\":[\"Rapportgeneratie is geannuleerd. Je kunt hieronder een nieuw rapport starten.\"],\"RyW1HO\":[\"Rapportgeneratie, opnieuw transcriberen, projecten kopiëren en chatgeschiedenis zijn betrouwbaarder gemaakt.\"],\"5LikE4\":[\"Meld problemen vanuit het dashboard met afbeeldingen en spraakopnamen.\"],\"IoQrps\":[\"Meld problemen met afbeeldingen of spraak, beoordeel chatantwoorden en vraag een passend plan aan. Stel een standaard rechtsgrond in voor je workspace.\"],\"fIBsri\":[\"Rapportlimiet bereikt\"],\"hIQOLx\":[\"Rapportmeldingen\"],\"M9snPp\":[\"Rapport gepland\"],\"6g+4DA\":[\"Melding verzonden. Bedankt\"],\"RVrIOm\":[\"Rapportabonnementen, Library-generatie en live-indicatoren zijn hersteld.\"],\"u9r3Di\":[\"Report templates staan op onze roadmap.\"],\"lNo4U2\":[\"Rapport bijgewerkt - \",[\"0\"]],\"t9yxlZ\":[\"Rapporten\"],\"E1vQT6\":[[\"0\"],\"-training aanvragen\"],\"w//ise\":[\"Vraag een abonnement aan via het behoeftenformulier en plan een vervolggesprek.\"],\"qbXLnJ\":[\"Een training aanvragen\"],\"WdCAhr\":[\"Toegang aanvragen\"],\"library.request.access\":[\"Toegang aanvragen\"],\"cH8Bhd\":[\"Aanvraag goedgekeurd\"],\"ViqcVt\":[\"Aanvraag afgewezen\"],\"jI02E7\":[\"Verzoek geweigerd.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Wachtwoord reset aanvragen\"],\"8H5nRH\":[\"Wachtwoord reset aanvragen | dembrane\"],\"1RVBJe\":[\"Aanvraag verzonden\"],\"OQsKlA\":[\"Verzoek verstuurd. De beheerders van de werkruimte hebben bericht gekregen.\"],\"b44axA\":[\"Verzoek verstuurd. Wachten op de beheerders van de werkruimte.\"],\"7rVjfL\":[\"Supporttoegang aanvragen\"],\"XmXfrX\":[\"Verzoek ingetrokken.\"],\"Yx0Ud8\":[\"Aangevraagd\"],\"VRpBev\":[\"Aangevraagde en geplande trainingen. Markeer een training als voltooid om elke deelnemer een licentie van een jaar te geven.\"],\"PXQc8Y\":[\"Aanvrager\"],\"participant.alert.microphone.access.loading\":[\"Microfoontoegang aanvragen om beschikbare apparaten te detecteren...\"],\"TMLAx2\":[\"Verplicht\"],\"0Hf+6m\":[\"Vraagt om e-mailadres? moet zijn ingeschakeld\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Herplannen\"],\"6eIR/n\":[\"Opnieuw plannen naar\"],\"ZSTojU\":[\"Uitnodiging opnieuw versturen\"],\"8WtTog\":[\"Uitnodiging opnieuw versturen\"],\"OfhWJH\":[\"Resetten\"],\"I9EnzM\":[\"Filters resetten\"],\"KbS2K9\":[\"Wachtwoord resetten\"],\"9uplIY\":[\"Wachtwoord resetten | dembrane\"],\"L+rMC9\":[\"Resetten naar standaardinstellingen\"],\"kX8Fjz\":[\"Feedback op antwoord\"],\"participant.button.stop.resume\":[\"Hervatten\"],\"1K1kvB\":[\"Abonnement hervatten\"],\"85Qjyx\":[\"Updates hervatten\"],\"ioYnu6\":[\"ingetrokken\"],\"fM1Ldq\":[\"ingetrokken voor het dembrane-team\"],\"AWy1Kd\":[\"Een notitie voor het dembrane-team intrekken\"],\"sVzC0H\":[\"Hertranscriptie\"],\"ehyRtB\":[\"Hertranscriptie gesprek\"],\"1JHQpP\":[\"Hertranscriptie gesprek\"],\"+gmVxi\":[\"Hertranscriptie niet beschikbaar voor anonieme gesprekken\"],\"MXwASV\":[\"Hertranscriptie gestart. Nieuw gesprek wordt binnenkort beschikbaar.\"],\"6gRgw8\":[\"Opnieuw proberen\"],\"zHJTti\":[\"Nu opnieuw proberen\"],\"H1Pyjd\":[\"Opnieuw uploaden\"],\"2fCpt5\":[\"Terug naar home\"],\"5k0NLb\":[\"Controleren\"],\"9VUzX4\":[\"Bekijk de activiteiten van je werkruimte. Filter op collectie of actie en exporteer de huidige weergave voor verder onderzoek.\"],\"ECoHYI\":[\"Opnieuw bekijken\"],\"dSCHZP\":[\"Bekijk en bewerk hieronder. Dit voegt een controle toe die bij elk gesprek draait. Verificatie moet aan staan om de controle uit te voeren. Er verandert niets tot je hem toevoegt.\"],\"Tqa1v9\":[\"Controleer voordat je aanmaakt.\"],\"UZVWVb\":[\"Bestanden bekijken voordat u uploadt\"],\"OybZ3y\":[\"Bekijk mijn projectinstellingen en stel verbeteringen voor.\"],\"3lYF/Z\":[\"Bekijk de verwerkingsstatus voor elk gesprek dat in dit project is verzameld.\"],\"JuDdMd\":[\"Bekijk, bewerk en open elk gesprek in dit project.\"],\"participant.concrete.action.button.revise\":[\"Aanpassen\"],\"OG3mVO\":[\"Revisie #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Versiegeschiedenis\"],\"GXsAby\":[\"Intrekken\"],\"jjsSSc\":[\"Uitnodiging intrekken\"],\"HZn3qT\":[\"Licentie intrekken\"],\"TUcQqn\":[\"De uitnodiging aan \",[\"0\"],\" intrekken? Je kunt deze persoon later opnieuw uitnodigen.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Rechtsklikken om te markeren\"],\"GDvlUT\":[\"Rol\"],\"QjMlvE\":[\"Rol gewijzigd\"],\"jQ6I8X\":[\"Rol bijgewerkt\"],\"wbV5uX\":[\"Ruwe schatting om de achterstand aan transcripties weg te werken\"],\"/9oiI7\":[\"Ongeveer hoeveel?\"],\"xxCtZv\":[\"Rijen per pagina\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Voer de transcriptie opnieuw uit voor een bestaand gesprek.\"],\"SztYsc\":[\"Voer transcriptie opnieuw uit voor een bestaand gesprek. Ook de Nederlandse documentatie is bijgewerkt.\"],\"RiQMUh\":[\"Bezig\"],\"i39IXZ\":[\"Verkoopfactuur uitgegeven.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Opslaan\"],\"participant.concrete.action.button.save\":[\"Opslaan\"],\"GsV2va\":[\"Toegang opslaan\"],\"BnmEvM\":[\"Opslaan als template\"],\"gjqGP0\":[\"Factuurgegevens opslaan\"],\"IUwGEM\":[\"Wijzigingen opslaan\"],\"qjHQoH\":[\"Korting opslaan\"],\"2VA/7X\":[\"Opslaan fout!\"],\"5dVjYt\":[\"Template opslaan\"],\"idD8Ev\":[\"Opgeslagen\"],\"nwfMv/\":[\"Opgeslagen weergave-instellingen worden direct bij het laden toegepast.\"],\"8AhhHy\":[\"Opgeslagen als doel van dit project.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Opslaan...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan of klik op de QR-code om het feedbackportaal te openen\"],\"nHeO/c\":[\"Scan de QR-code of kopieer het geheim naar je app.\"],\"SGnha7\":[\"Scan om deel te nemen aan dit project\"],\"4ldzRd\":[\"Scan om een nieuwe portalsessie te starten\"],\"NAe+hu\":[\"Gescand\"],\"epl7MR\":[[\"0\"],\" keer gescand\"],\"iQbBJn\":[\"QR gescand\"],\"gmB6oO\":[\"Plannen\"],\"wCGy0o\":[\"Rapport inplannen\"],\"uUP8ek\":[\"Plan rapporten (bèta) met alle gesprekken die vóór het gekozen tijdstip zijn opgenomen.\"],\"qtjOKf\":[\"Training inplannen\"],\"4ba0NE\":[\"Ingepland\"],\"f1aPlK\":[\"Geplande rapporten en eigen templates\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll naar beneden\"],\"A1taO8\":[\"Zoeken\"],\"select.all.modal.loading.search\":[\"Zoeken\"],\"FyLaDj\":[\"Zoek op account, status, beschrijving\"],\"Uu9l/P\":[\"Zoek op account, werkruimte, organisatie, e-mail, tier\"],\"EJ1adC\":[\"Zoek en selecteer de gesprekken voor deze chat.\"],\"V0wu2W\":[\"Zoeken op organisatie\"],\"a4xYoA\":[\"Zoek chats\"],\"OWm+8o\":[\"Zoek gesprekken\"],\"FIKhFb\":[\"Zoeken vindt je woorden in elke volgorde.\"],\"QU2qoc\":[\"Zoek op naam of e-mail\"],\"6/qy61\":[\"Zoek op partner, klant, werkruimte\"],\"l9vi1F\":[\"Zoek mensen\"],\"S1LvJy\":[\"Zoek mensen of typ een e-mailadres\"],\"hjqK3H\":[\"Zoek project of werkruimte\"],\"blFttG\":[\"Zoek projecten\"],\"I0hU01\":[\"Zoek projecten\"],\"Ix2UwQ\":[\"Zoek projecten, organisaties, werkruimtes, instellingen…\"],\"RVZJWQ\":[\"Zoek projecten...\"],\"5WYZKZ\":[\"Zoekresultaten\"],\"lnWve4\":[\"Zoek tags\"],\"a6xC54\":[\"Doorzoek tags en wis gespreksfilters met één klik.\"],\"pECIKL\":[\"Zoek templates...\"],\"select.all.modal.search.text\":[\"Zoektekst:\"],\"nhvuQF\":[\"Zoek webhooks...\"],\"S2BNQs\":[\"Zoek werkruimtes\"],\"uSvNyU\":[\"Doorzocht de meest relevante bronnen\"],\"mHOLEz\":[\"Gesprekken doorzoeken\"],\"rI5Wda\":[\"Gesprekken doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"De documentatie doorzoeken\"],\"hoK9sq\":[\"Transcripten doorzoeken\"],\"/DtZhN\":[\"Transcripten doorzoeken op \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Zoeken…\"],\"MpFIca\":[\"plekken\"],\"grt0Pu\":[\"Plekken\"],\"R4Xlsa\":[\"Plekken vol\"],\"8VEDbV\":[\"Geheim\"],\"Y1y+VB\":[\"Geheim gekopieerd\"],\"6/OSWK\":[\"Bekijk audiokwaliteitsindicatoren voor ruis, stilte en overlappende spraak.\"],\"tAfXHu\":[\"transcripten te bekijken\"],\"ic1SaJ\":[\"Bekijk upgrade-opties\"],\"QXYt4Y\":[\"Zie wanneer transcriptie bezig is.\"],\"0sQPzI\":[\"Tot snel\"],\"XZRu52\":[\"Ziet gebruik en facturen. Geen toegang tot projecten of content.\"],\"rG3WVm\":[\"Selecteren\"],\"02ePaq\":[[\"0\"],\" selecteren\"],\"F7wP7I\":[\"Selecteer een gesprek om verder te gaan\"],\"H/diq7\":[\"Selecteer een microfoon\"],\"s5OrCL\":[\"Selecteer een webhook om te klonen\"],\"NM2hyD\":[\"Selecteer een werkruimte\"],\"wgNoIs\":[\"Alles selecteren\"],\"+fRipn\":[\"Alles selecteren (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Selecteer alle gesprekken, of alleen gefilterde gesprekken, voor chat.\"],\"uZSxKc\":[\"Alles selecteren is beschikbaar in Ask en nieuwe chats met Specifieke details.\"],\"Al2i3F\":[\"Selecteer alle of gefilterde gesprekken voor chat en filter door op een tag te klikken. Opname-uploads zijn betrouwbaarder, met duidelijkere berichten bij grote drukte.\"],\"select.all.modal.title.results\":[\"Alle resultaten selecteren\"],\"XSLOfq\":[\"Selecteer alle zichtbare (\",[\"remainingCount\"],\")\"],\"o4e/70\":[\"Selecteer ten minste één gebeurtenis\"],\"d3O/ZP\":[\"Selecteer ten minste één ander onderwerp voordat u dit verwijdert\"],\"NK2YNj\":[\"Selecteer audiobestanden om te uploaden\"],\"OOZBXR\":[\"Gesprek selecteren\"],\"5z/6Uk\":[\"Gesprekken selecteren\"],\"/3ntVG\":[\"Selecteer gesprekken en vind exacte quotes\"],\"LyHz7Q\":[\"Selecteer gesprekken in de sidebar\"],\"qtJxoV\":[\"Meerdere gesprekken selecteren\"],\"1kovRK\":[\"Project selecteren\"],\"n4rh8x\":[\"Selecteer Project\"],\"ekUnNJ\":[\"Selecteer tags\"],\"CG1cTZ\":[\"Selecteer de instructies die worden getoond aan deelnemers wanneer ze een gesprek starten\"],\"qxzrcD\":[\"Selecteer het type feedback of betrokkenheid dat u wilt stimuleren.\"],\"QdpRMY\":[\"Selecteer tutorial\"],\"Dh99yE\":[\"Selecteer maximaal 2 focusgebieden voor je rapport\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Selecteer welke onderwerpen deelnemers kunnen gebruiken voor \\\"Verifiëren\\\".\"],\"GnNO41\":[\"Selecteer wie erbij was. Iedereen krijgt een licentie van een jaar om dembrane te gebruiken in situaties met een hoog risico.\"],\"participant.select.microphone\":[\"Selecteer een microfoon\"],\"gU5H9I\":[\"Geselecteerde bestanden (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Geselecteerde microfoon\"],\"tP/pEQ\":[\"Selectie te groot\"],\"select.all.modal.context.limit.reached\":[\"Selectie te groot. Sommige gesprekken zijn niet toegevoegd.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Verzenden\"],\"iJyjJ8\":[[\"0\"],\" uitnodigingen versturen\"],\"Hvnq/n\":[\"Uitnodiging versturen\"],\"FCfEtD\":[\"Uitnodigingen versturen\"],\"6M/wwR\":[\"Notitie versturen\"],\"O9oQJS\":[\"Melding versturen\"],\"4k2VbT\":[\"Verzoek versturen\"],\"PIMJF6\":[\"Stuur Slack/Teams notificaties wanneer nieuwe gesprekken zijn voltooid\"],\"j73b/6\":[\"Naar dembrane sturen\"],\"h69WC6\":[\"Verstuurd\"],\"EhSyaK\":[[\"sentCount\"],\" van \",[\"0\"],\" verstuurd. Bekijk de lijst hieronder.\"],\"oSzbte\":[\"verstuurd naar het dembrane-team\"],\"XyiDbI\":[\"Apart (klant)\"],\"OnmeuT\":[\"Scheid met komma's, spaties of nieuwe regels.\"],\"NprC8U\":[\"Sessienaam\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Stel de standaardrechtsgrondslag van een werkruimte in en pas die per project aan.\"],\"SpfrD/\":[\"ingesteld door \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Doel instellen\"],\"eo7QNa\":[\"Instellen als beheerd\"],\"WAdU35\":[\"Zet op beheerd\"],\"c0oPm+\":[\"Zet op beheerde facturatie\"],\"FpHYiz\":[\"Na het aanmaken instellen met de assistent\"],\"JfvZ6H\":[\"Werkruimte instellen\"],\"J4TuIW\":[\"Stel je eerste organisatie in\"],\"aBwEIZ\":[\"Stel je organisatie in\"],\"OALBTr\":[\"Stel je werkruimte in | dembrane\"],\"2zDY/H\":[\"Bepaal wie het kan zien en kan deelnemen.\"],\"A6EhcS\":[\"We zetten alles voor je klaar\"],\"XYlJJT\":[\"Instellen\"],\"Tz0i8g\":[\"Instellingen\"],\"participant.settings.modal.title\":[\"Instellingen\"],\"BVRW7i\":[\"Instellingen | dembrane\"],\"ENOWl3\":[\"Instellingen zijn gegroepeerd in Account en beveiliging, Weergave en Projectstandaarden.\"],\"RPF/8g\":[\"Instellingen bijgewerkt\"],\"RDjuBN\":[\"Instellen\"],\"WFl+oC\":[\"Bepaal hoe deelnemers uitkomsten verifiëren\"],\"Z8lGw6\":[\"Delen\"],\"VSwbWX\":[\"Deel uitnodigingslinks als alternatief voor uitnodigingen per e-mail.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Portal delen\"],\"OuFYHU\":[\"Rapport delen\"],\"nzT4VD\":[\"Deel het project, volg live activiteit en spring vanaf één plek naar de belangrijkste tools.\"],\"AjYeE7\":[\"Delen met \",[\"0\"],\" mensen\"],\"8styFN\":[\"Deel met iemand\"],\"W4nkGB\":[\"Delen met hele werkruimte\"],\"bM7Rp3\":[\"Deel met werkruimte\"],\"oX3zgA\":[\"Deel je gegevens hier\"],\"nnWGzO\":[\"Deel uw ideeën met ons team\"],\"4o0klJ\":[\"Deel je stem door de QR-code te scannen\"],\"jqnSi6\":[\"Gedeeld met\"],\"YJJJo3\":[\"Gedeeld met \",[\"0\"]],\"zIgU4M\":[\"Gedeeld met \",[\"0\"],\" en \",[\"overflow\"],\" anderen\"],\"Ut2Txh\":[\"Als je een privéproject deelt met iemand die nog geen lid is, kun je diegene nu uitnodigen in plaats van een foutmelding te krijgen. De toegang wordt verleend zodra diegene lid wordt van de werkruimte.\"],\"Sdetlc\":[\"Kortste eerst\"],\"+tz9Ky\":[\"Kortste eerst\"],\"8vETh9\":[\"Toon\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Toon \",[\"hidden\"],\" meer\"],\"fp7sBF\":[\"Nog \",[\"overflow\"],\" tonen\"],\"w1eody\":[\"Toon audiospeler\"],\"pzaNzD\":[\"Gegevens tonen\"],\"9Resvw\":[\"Toon details\"],\"Qc9KX+\":[\"IP-adressen tonen\"],\"6lGV3K\":[\"Minder tonen\"],\"fMPkxb\":[\"Meer tonen\"],\"Wh1pao\":[\"Meer versies tonen\"],\"34iCWY\":[\"Alleen wijzigingen tonen\"],\"ersE21\":[\"Toon projecten\"],\"s2xGKA\":[\"Toon QR-code\"],\"3bGwZS\":[\"Toon referenties\"],\"OV2iSn\":[\"Revisiegegevens tonen\"],\"qB9H4B\":[\"Stappen tonen\"],\"EgEjZz\":[\"Volledige tekst tonen\"],\"hV6KNf\":[\"Toon de uitnodiging\"],\"GjCBss\":[\"Toon je eigen logo aan deelnemers, beschikbaar op aanvraag.\"],\"RpOvMh\":[[\"0\"],\" van \",[\"1\"],\" weergegeven\"],\"Tqzrjk\":[\"Toont \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" van \",[\"totalItems\"],\" items\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" van \",[\"total\"]],\"qVf+dV\":[\"De eerste \",[\"0\"],\" van \",[\"shownCount\"],\" resultaten worden getoond. Verfijn je zoekopdracht om de rest te zien.\"],\"8Lpud3\":[\"Uw meest recente voltooide rapport wordt getoond.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Wordt getoond in de organisatiekop en in onderwerpregels van e-mails.\"],\"8ImxHp\":[\"Inloglinks controleren je toegang voordat ze een organisatie of project openen.\"],\"DVBfkn\":[\"Zes weekenden verspreid over zeven maanden\"],\"6Uau97\":[\"Overslaan\"],\"participant.button.verify_prompt.skip\":[\"Overslaan\"],\"select.all.modal.context.limit.reached.description\":[\"Overgeslagen omdat de selectie te groot was.\"],\"TTKYZB\":[\"Microfooncheck overgeslagen\"],\"3Czdpd\":[\"Slack-community\"],\"dE/7ox\":[\"Soepeler opnemen en sneller vragen stellen\"],\"QCIy1f\":[\"Een deel van de audio in dit gesprek kon niet worden getranscribeerd. Open het gesprek om te zien welke delen misgingen.\"],\"q+pJ6c\":[\"Sommige bestanden werden al geselecteerd en worden niet dubbel toegevoegd.\"],\"select.all.modal.skip.disclaimer\":[\"Sommige kunnen worden overgeslagen (geen transcript of selectie te groot).\"],\"Pe0Fnh\":[\"Een deel van de recente audio kon niet worden getranscribeerd. De opname is opgeslagen.\"],\"C6+ZRl\":[\"Iemand\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Iets anders.\"],\"participant.modal.s3check.message\":[\"Iets blokkeert je verbinding. Je audio wordt niet opgeslagen tenzij dit wordt opgelost.\"],\"nwtY4N\":[\"Er ging iets mis\"],\"participant.conversation.error.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"mwpVVD\":[\"Er is iets misgegaan bij het genereren van uw laatste rapport.\"],\"2WNFmv\":[\"Er is iets misgegaan bij het genereren van uw rapport.\"],\"aT53wg\":[\"Er ging iets mis aan mijn kant. Stuur je bericht opnieuw, dan probeer ik het nog een keer.\"],\"avSWtK\":[\"Er is iets misgegaan bij het exporteren van de auditlogboeken.\"],\"q9A2tm\":[\"Er is iets misgegaan bij het genereren van het geheim.\"],\"VXAsiD\":[\"Er ging iets mis tijdens het transcriberen. Probeer het opnieuw.\"],\"KeOwCj\":[\"Er ging iets mis met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"7PyY8A\":[\"Er ging iets mis. Open de link uit je e-mail opnieuw, of <0>begin opnieuw.\"],\"participant.explore.generic.error.message\":[\"Er is iets misgegaan. Probeer het opnieuw door op de <0>Verkennen knop te drukken, of neem contact op met ondersteuning als het probleem aanhoudt.\"],\"fWsBTs\":[\"Er is iets misgegaan. Probeer het alstublieft opnieuw.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"We kunnen hier niet dieper op ingaan door onze contentregels.\"],\"f6Hub0\":[\"Sorteer\"],\"/AhHDE\":[\"Bron \",[\"0\"]],\"sBJ5MF\":[\"Bronnen\"],\"JkONR3\":[\"Bronnen en verwijzingen blijven niet meer leeg in de getroffen gevallen.\"],\"65A04M\":[\"Spaans\"],\"wuxqZ1\":[\"Spreek een vraag in en controleer de tekst voordat je die verstuurt.\"],\"z5/5iO\":[\"Specifieke context\"],\"mORM2E\":[\"Specifieke details\"],\"Etejcu\":[\"Specifieke details - Geselecteerde gesprekken\"],\"9Vb51U\":[\"Chat met Specifieke details respecteert handmatige gespreksselectie.\"],\"uXsB4R\":[\"Personeel\"],\"eicGWU\":[\"Alleen personeel\"],\"vtV8C/\":[\"Door dembrane aangemaakt\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standaardtoegang. Werkt samen in de werkruimtes waaraan ze zijn toegevoegd.\"],\"vv5o+Y\":[\"Vaste richtlijnen die de assistent meekrijgt in elke projectchat in deze werkruimte. Wordt automatisch opgeslagen.\"],\"ruoKG4\":[\"Start een chat\"],\"vPF04k\":[\"Start een nieuwe chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Beginnen vanaf nul\"],\"nYTTLF\":[\"Starten in de assistentchat\"],\"participant.button.start.new.conversation.text.mode\":[\"Nieuw gesprek starten\"],\"participant.button.start.new.conversation\":[\"Nieuw gesprek starten\"],\"i88wdJ\":[\"Opnieuw beginnen\"],\"nFxnZX\":[\"Begin met opnemen zonder een extra bevestigingsstap.\"],\"jBYlO5\":[\"Start opnames zonder dubbele gesprekken, bekijk de echte starttijd en gebruik opgeslagen vraagsjablonen vanuit Ask. Updates in de zijbalk tonen nu het aantal ongelezen berichten.\"],\"slY7aQ\":[\"Opname gestart\"],\"W1KkjZ\":[\"Begint\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Blijft live gedurende\"],\"DpvswE\":[\"Blijft actueel\"],\"M66Dtk\":[\"Blijft actueel tot \",[\"0\"]],\"oWpwLu\":[\"Blijft actueel tot morgen \",[\"0\"]],\"RibpL5\":[\"Stap \",[\"0\"],\" van \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Kom je er nog niet uit? Mail <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Opname stoppen en omzetten naar tekst\"],\"pozyoW\":[\"Gestopt op \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Gestopt op \",[\"stoppedAt\"],\". Bijgewerkt \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Gestopt.\"],\"YAtsqu\":[\"Gestopt. Bijgewerkt \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stoppen tijdens de microfoontoestemming geeft de microfoon vrij, zodat je opnieuw kunt proberen.\"],\"kimwwT\":[\"Strategische Planning\"],\"BVSaId\":[\"Sterk wachtwoord\"],\"hQRttt\":[\"Stuur in\"],\"participant.button.submit.text.mode\":[\"Stuur in\"],\"eN0TsI\":[\"Abonneer je op rapportmeldingen.\"],\"zzDlyQ\":[\"Succes\"],\"aG+cH9\":[\"Dynamische suggesties voorstellen op basis van uw gesprek.\"],\"6xSPmn\":[\"Voorgesteld projectdoel\"],\"SLIAI6\":[\"Voorgestelde tagwijzigingen voor je project\"],\"kBrP+r\":[\"Voorgestelde verificatievraag\"],\"bh1eKt\":[\"Aanbevelingen:\"],\"TQTiuh\":[\"Canvas voorstellen\"],\"VOjaCv\":[\"Projectdoel voorstellen\"],\"jt3eXx\":[\"Verificatievraag voorstellen\"],\"5+Cysq\":[\"Projectwijzigingen voorstellen\"],\"BN3mxb\":[\"Tagwijzigingen voorstellen\"],\"k1mxf5\":[\"Samenvattingen passen zich aan de complexiteit van het gesprek aan.\"],\"F1nkJm\":[\"Samenvatten\"],\"5Y4tAB\":[\"Vat dit interview samen in een artikel dat je kunt delen\"],\"dXoieq\":[\"Samenvatting\"],\"+bZY9/\":[\"Samenvatting (wanneer beschikbaar)\"],\"zdF7Nh\":[\"Samenvatting gegenereerd.\"],\"hlaWg4\":[\"Samenvatting opnieuw gegenereerd.\"],\"Pqa6KW\":[\"Samenvatting komt beschikbaar als het gesprek is uitgeschreven.\"],\"/lNOlB\":[\"Supporttoegang beëindigd.\"],\"iD58Ik\":[\"Supporttoegang met 24 uur verlengd.\"],\"1iB0Qb\":[\"Supporttoegang verleend. Deze stopt automatisch na 24 uur.\"],\"H9ee/+\":[\"Supporttoegang uitgezet\"],\"Qm32kv\":[\"Supporttoegang uitgezet nadat de sessie eindigde\"],\"jtzW2z\":[\"Supporttoegang aangezet\"],\"6ZHOF8\":[\"Ondersteunde formaten: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Ondersteunende citaten worden correct weergegeven.\"],\"bp+Bkh\":[\"Prima\"],\"ijp2ag\":[\"Overzetten naar self-serve\"],\"h1qzuU\":[\"Overzetten naar self-serve facturering\"],\"participant.link.switch.text\":[\"Overschakelen naar tekstinvoer\"],\"5dzzI6\":[\"Uitzetten kan met een betaald plan.\"],\"D+NlUC\":[\"Systeem\"],\"woaefe\":[\"Systeemstandaard\"],\"InGQz2\":[\"Systeemstatus\"],\"N3D6GN\":[\"Tag verwijderd\"],\"OYHzN1\":[\"Trefwoorden\"],\"gGG+ax\":[\"Tags zijn de woorden waaruit deelnemers in de portal kunnen kiezen. Er verandert niets tot je ze toepast.\"],\"JbfIuH\":[\"Tags worden correct bijgewerkt voor lopende gesprekken.\"],\"kNzjto\":[\"Tags bijgewerkt. Je kunt ze altijd bijstellen in de portaleditor.\"],\"tFhVJf\":[\"Breng me naar \",[\"resolvedWorkspaceName\"]],\"xRTmST\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig of krijg direct een reactie van dembrane om het gesprek te verdiepen.\"],\"eyu39U\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig.\"],\"participant.refine.make.concrete.description\":[\"Kijk of de uitkomst klopt, en pas aan waar nodig.\"],\"WyoP4e\":[\"Twee keer op Opnemen tikken maakt geen dubbele gesprekken meer aan.\"],\"Jzcupi\":[\"Vertel de beheerders van de werkruimte waarvoor je toegang nodig hebt. Deze notitie is optioneel.\"],\"ijEuC1\":[\"Vertel ons wat je nodig hebt\"],\"QCchuT\":[\"Template toegepast\"],\"JcCDm9\":[\"Sjabloon aangemaakt\"],\"ZTgE3k\":[\"Sjabloon verwijderd\"],\"5OwALL\":[\"Template naam\"],\"PQb/If\":[\"Sjabloon bijgewerkt\"],\"iTylMl\":[\"Sjablonen\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Voorwaarden\"],\"CyWdHw\":[\"Test en selecteer je microfoon voordat je opneemt.\"],\"qYLZL2\":[\"testmodus\"],\"b7L2Jj\":[\"Webhook testen\"],\"xeiujy\":[\"Tekst\"],\"mFQRXn\":[\"Tekstbijdragen en vervolgformulieren.\"],\"CPN34F\":[\"Dank je wel voor je deelname!\"],\"u+Whi9\":[\"Bedankt pagina inhoud\"],\"1LLF3Z\":[\"Bedankt!\"],\"w0rnwH\":[\"Bedankt! We nemen zo snel mogelijk contact met je op. Je kunt ons ook mailen via info@dembrane.com.\"],\"yP6ia6\":[\"Bedankt voor het invullen. Kijk in je mail voor de bevestiging van de afspraak. Heb je vragen voor ons, dan kun je ons altijd bereiken op info@dembrane.com\"],\"ZNyTs9\":[\"Bedankt, we nemen binnen een dag contact op.\"],\"2yHHa6\":[\"Die code werkte niet. Probeer het opnieuw met een verse code uit je authenticator-app.\"],\"PuGTvO\":[\"Dat is niet verstuurd. Je antwoorden staan er nog, dus probeer het opnieuw.\"],\"TqOQmZ\":[\"Dat is niet gelukt. We hebben je opname opgeslagen.\"],\"zXqpmy\":[\"Dat ziet er niet uit als een e-mailadres.\"],\"FT6q8r\":[\"Die opname is te lang om te versturen. Neem een kortere notitie op.\"],\"qoYkjn\":[\"Daarvoor heb je een betaald abonnement nodig. We stellen je nog 5 korte vragen. Daarna kies je een tijd met het dembrane-team. Voor het gesprek lezen we je antwoorden, zodat we een voorstel meenemen dat bij je past.\"],\"a/CreD\":[\"Dat was te kort om te transcriberen. Houd de opname iets langer vast.\"],\"t/t3Pd\":[\"Dat was het, bedankt\"],\"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.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"De assistent vergeet dit in elke toekomstige chat.\"],\"jvdqI1\":[\"De assistent stelt voor om \",[\"headlineFields\"],\" bij te werken. Wacht op jou.\"],\"TQCE79\":[\"Code werkt niet, probeer het nog een keer.\"],\"NPynOC\":[\"De verbinding is weggevallen. We proberen automatisch opnieuw.\"],\"participant.conversation.error.loading.text.mode\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"participant.conversation.error.loading\":[\"Er is iets misgegaan met het gesprek. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning als het probleem blijft bestaan\"],\"pNC1r6\":[\"De gesprekslijst toont duidelijkere totalen.\"],\"rEUvpC\":[\"het dembrane-team\"],\"mK5NUZ\":[\"Het eindpunt waar we de gegevens zullen verzenden. Haal dit op van uw ontvangende service (bijvoorbeeld Zapier, Make, of uw eigen server).\"],\"x3rJF8\":[\"Het feedbackformulier kan je e-mailadres vooraf invullen.\"],\"pHzQV8\":[\"Het feedbackportaal legt uit hoe je beveiligingsproblemen meldt.\"],\"HNaSQm\":[\"De eerste grote release brengt het project onder de Business Source License 1.1.\"],\"Jo19Pu\":[\"De volgende gesprekken werden automatisch toegevoegd aan de context\"],\"iQVN2u\":[\"Het gratis plan dekt één werkruimte.\"],\"4ofqC4\":[\"Het gratis plan bevat één chat met drie vragen.\"],\"lIEwn+\":[\"Het gratis plan bevat één rapport.\"],\"IUkPfk\":[\"Het doel stuurt de rapporten, canvassen en suggesties van de assistent in dit project.\"],\"IwNUoA\":[\"De hostgids is wat begeleiders lezen voordat ze een sessie draaien.\"],\"C5CHds\":[\"De uitnodiging staat in je inbox. We lezen je antwoorden vooraf en nemen een conceptvoorstel mee. Heb je intussen vragen? Neem dan contact op met\"],\"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.\"],\"Wb4/Ex\":[\"De Library krijgt duidelijkere weergaven van terugkerende thema's, beschikbaar op aanvraag.\"],\"6ZUAzo\":[\"De Library krijgt duidelijkere weergaven van terugkerende thema’s. Chatsjablonen blijven binnen bereik, gesprekken hebben directe links en uploadstatus is eenvoudiger te volgen.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"De ledenpagina toont een laadstatus in plaats van kort te zeggen dat er geen leden zijn.\"],\"jnNEHx\":[\"De methodologie is de manier waarop dit project is opgezet en wordt begeleid.\"],\"2zCZsi\":[\"De microfoon is geblokkeerd in je browser, dus opnemen staat uit. Typen werkt wel.\"],\"WO8jr5\":[\"De microfoon is nog steeds geblokkeerd. Pas het aan in je browserinstellingen en controleer het daarna opnieuw.\"],\"EKXp9y\":[\"De nieuwe zijbalk brengt organisaties, werkruimtes, leden en instellingen samen.\"],\"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.\"],\"uesSdO\":[\"De deelnemersflow heeft duidelijkere microfooncontroles.\"],\"6WE2tf\":[\"De portalen blijven werken! Je deelnemers kunnen altijd doorgaan en niets wat ze zeggen gaat verloren. Zodra je een betaald abonnement hebt, wordt alles wat al is opgenomen alsnog getranscribeerd.\"],\"Khtiqr\":[\"De vorige versies zijn hieronder nog beschikbaar.\"],\"8+mJDO\":[\"Het project gaat over op de Business Source License 1.1.\"],\"D4If9P\":[\"De projectcontext wordt gelezen door transcriptie, chatantwoorden en canvasgeneratie, dus een wijziging hier raakt meer dan een scherm.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"Het rapport kan tot 5 minuten na de gekozen tijd starten.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"De zijbalk past beter op mobiele schermen en heeft verbeterde Franse navigatieteksten.\"],\"Z8JQHh\":[\"De zijbalk scrolt op lage schermen terwijl de kop en voettekst beschikbaar blijven.\"],\"hTCMdd\":[\"Samenvatting wordt gemaakt. Even wachten tot die klaar is.\"],\"+AT8nl\":[\"Samenvatting wordt opnieuw gemaakt. Even wachten tot die klaar is.\"],\"9DPC4t\":[\"De bedankpagina eindigt met een kaart die deelnemers uitnodigt om zelf een event met dembrane te organiseren.\"],\"otcrOk\":[\"Het transcript kwam niet terug. Controleer je verbinding en probeer het opnieuw.\"],\"sQgHJn\":[\"De transcriptie is niet afgerond. Probeer het opnieuw.\"],\"uPGyvo\":[\"De webhook URL en gebeurtenissen worden gekloond. Je moet de geheime sleutel opnieuw invoeren als er een was geconfigureerd.\"],\"Ws5p1J\":[\"De werkruimte waarvoor deze uitnodiging was, is verwijderd. Er is niets om aan deel te nemen.\"],\"mbsBu1\":[\"Hun vertegenwoordiger die eigenaar is van deze data. Diegene wordt toegevoegd als gratis waarnemer en wordt het overdrachtscontact.\"],\"k59/22\":[\"Hun vertegenwoordiger die eigenaar is van deze data. Diegene wordt toegevoegd als gratis waarnemer, krijgt per e-mail bericht dat hij de data-eigenaar is en wordt het overdrachtscontact.\"],\"p9LlT0\":[\"Het scherm is vergrendeld of het tabblad is niet actief. De opname pauzeert tot ze terugkomen.\"],\"FEr96N\":[\"Thema\"],\"tn4pEQ\":[\"daar\"],\"fm15Og\":[\"Er zijn geen andere werkruimtes waarnaar je deze projecten kunt verplaatsen.\"],\"PmKiRy\":[\"Er zijn geen andere werkruimtes waarnaar je dit project kunt verplaatsen.\"],\"T8rsM6\":[\"Er is een fout opgetreden bij het klonen van uw project. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"JDFjCg\":[\"Er is een fout opgetreden bij het maken van uw rapport. Probeer het alstublieft opnieuw of neem contact op met de ondersteuning.\"],\"4MElLm\":[\"Er zat geen spraak in die opname.\"],\"D8iLCl\":[\"Deze wijzigingen zijn toegepast op je project.\"],\"select.all.modal.other.reason.description\":[\"Deze gesprekken werden uitgesloten vanwege ontbrekende transcripties.\"],\"8xYB4s\":[\"Deze standaardweergaven worden automatisch aangemaakt wanneer je je eerste bibliotheek maakt.\"],\"7Ye3FL\":[\"Deze tagwijzigingen zijn toegepast op je project.\"],\"81wkbM\":[\"Deze werkruimtes worden apart gefactureerd. Elke persoon die je toevoegt neemt een plek in \",[\"billingContextCount\"],\" factureringscontexten in, die elk afzonderlijk worden gefactureerd.\"],\"0ZaC+v\":[\"Deze werkruimtes hebben hun eigen abonnement, beheerd vanuit elke werkruimte. Ze maken geen deel uit van het abonnement van deze organisatie.\"],\"8AOwf0\":[\"Ze worden toegevoegd als leden. Je kunt er later meer toevoegen.\"],\"MOF98U\":[\"Denk aan: een gesprek met je DPO of CISO, een beveiligingsbeoordeling of een DPIA op maat.\"],\"Ed99mE\":[\"Denken...\"],\"WLBoIc\":[\"Dit account heeft een lopend Mollie-abonnement. Zeg dat eerst op.\"],\"3YoDz8\":[\"Dit account heeft een actief abonnement. Vraag de klant om het op te zeggen via de factureringspagina voordat je het niveau aanpast.\"],\"kUtEeG\":[\"Dit gedeelte is voor dembrane-personeel. Denk je dat je toegang zou moeten hebben? Mail dan support@dembrane.com.\"],\"7eQeNC\":[\"Deze browser kan geen audio opnemen. Chrome, Edge en Safari wel.\"],\"participant.modal.s3check.suggestions\":[\"Dit kan gebeuren wanneer een VPN of firewall de verbinding blokkeert. Probeer je VPN uit te schakelen, over te schakelen naar een ander netwerk (bijv. mobiele hotspot) of neem contact op met je IT-afdeling voor hulp.\"],\"XR7DRS\":[\"Dit canvas kon niet worden bijgewerkt.\"],\"fztlir\":[\"Dit verandert hoe transcripten vanaf nu worden opgeslagen. Gesprekken die al zijn opgenomen behouden de vorm waarin ze zijn bewaard.\"],\"conversation.linked_conversations.description\":[\"Dit gesprek heeft de volgende kopieën:\"],\"conversation.linking_conversations.description\":[\"Dit gesprek is een kopie van\"],\"SzU1mG\":[\"Deze e-mail is al in de lijst.\"],\"participant.modal.refine.info.available.in\":[\"Deze functie is beschikbaar over \",[\"remainingTime\"],\" seconden.\"],\"XVmrFS\":[\"Dit veld bevat al de voorgestelde waarde.\"],\"lja/om\":[\"Deze informatie is anoniem\"],\"VqK4uu\":[\"Dit inzicht is verwijderd\"],\"1p9Zmk\":[\"Deze uitnodiging is al gebruikt\"],\"BGIpSK\":[\"Deze uitnodiging is verlopen\"],\"tU7tLa\":[\"Deze uitnodiging is niet meer geldig\"],\"u3BWAB\":[\"Deze uitnodiging is niet voor dit account\"],\"fcMrKf\":[\"Deze uitnodigingslink is niet geldig\"],\"ZPOM9u\":[\"Deze uitnodigingslink is niet geldig voor dit account\"],\"kdZCIM\":[\"Deze uitnodiging beslaat \",[\"0\"],\" factureringscontexten, die elk apart worden gefactureerd:\"],\"QR7hjh\":[\"Dit is een live voorbeeld van het portaal van de deelnemer. U moet de pagina vernieuwen om de meest recente wijzigingen te bekijken.\"],\"bSbU2m\":[\"Dit is een overzicht van elke organisatie en werkruimte waarvan je lid bent.\"],\"+JlPfM\":[\"Dit is een voorbeeld van de JSON-gegevens die naar je webhook-URL worden verzonden wanneer een gesprek wordt samengevat.\"],\"AypXpi\":[\"Dit is nog niet opgeslagen.\"],\"DsBmZV\":[\"Dit staat op verwerking op basis van toestemming zonder link naar het privacybeleid. Voeg er een toe om deze instelling geldig te houden: deelnemers moeten het privacybeleid kunnen lezen.\"],\"kt9FX3\":[\"Dit is dringend\"],\"library.description\":[\"Dit is uw projectbibliotheek. Creëer weergaven om uw hele project tegelijk te analyseren.\"],\"BLwPhM\":[\"Dit is niet beschikbaar voor jou\"],\"Gbd5HD\":[\"Deze taal wordt gebruikt voor de Portal van de deelnemer.\"],\"2033EA\":[\"Deze link is al gebruikt. Je bent ingelogd en kunt aan de slag.\"],\"MR5ygV\":[\"Deze link is niet meer geldig\"],\"Aznd4+\":[\"Hiermee zet je de training op geannuleerd. Je kunt hem later via hetzelfde menu weer openen.\"],\"oW3yYY\":[\"Deze maand\"],\"YN8nMm\":[\"Hiermee krijgt de werkruimte een eigen facturerings- en datacontext. De projecten verplaatsen niet meer vrij mee met de rest van je organisatie.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"Deze organisatie heeft nog geen leden om te trainen.\"],\"DHgelW\":[\"Deze organisatie bestaat niet meer\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Deze portal accepteert nu geen nieuwe sessies.\"],\"CWAQCC\":[\"Dit project was niet bereikbaar.\"],\"bon4/x\":[\"Dit project hoort niet bij een werkruimte.\"],\"ocBOyA\":[\"Dit project is zichtbaar voor iedereen in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"Dit project is zichtbaar voor iedereen in de werkruimte.\"],\"xbLJ58\":[\"Dit project volgt dan de overgenomen instelling: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"Deze prompt bepaalt hoe de AI reageert op deelnemers. Deze prompt stuurt aan hoe de AI reageert\"],\"3dSMKs\":[\"Hiermee zet je het account op facturering die dembrane beheert: geen automatische Mollie-afschrijvingen en geen automatisch verlopen.\"],\"xfqtI+\":[\"Deze korte rondleiding laat onze nieuwe indeling in drie niveaus zien: organisaties, workspaces en projecten. Bekijk de video en leer hoe je toegang beheert, je werk organiseert en onze nieuwe analysetools gebruikt.\"],\"64Ko7C\":[\"Dit record heeft geen factureringsaccount.\"],\"SQuwgX\":[\"Hiermee verwijder je het gesprek uit het project. Dit kun je niet terugdraaien.\"],\"9zTDpd\":[\"Hiermee verwijder je de licentie van één jaar voor \",[\"0\"],\". Ze tellen dan niet meer als getraind en verliezen toegang tot instellingen met hoog risico. Doe dit alleen als de licentie per ongeluk is toegekend.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"Dit rapport is nog niet beschikbaar. \"],\"GQTpnY\":[\"Dit rapport werd geopend door \",[\"0\"],\" mensen\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"Dit verzoek duurde te lang, dus ik heb het gestopt. Stuur het opnieuw, dan probeer ik het nog een keer.\"],\"bKWJ+t\":[\"Hiermee gaat het account terug naar standaard gratis facturering.\"],\"XK9N+e\":[\"Hiermee komt de werkruimte terug bij de gedeelde facturering van je organisatie en wordt de externe data-eigenaar verwijderd.\"],\"cjRyq5\":[\"Dit bepaalt de taal die deelnemers in het portaal zien, inclusief de vragen die ze krijgen.\"],\"hwyBn8\":[\"Deze titel wordt getoond aan deelnemers wanneer ze een gesprek starten\"],\"ABJz8Q\":[\"Deze verificatievraag is toegevoegd aan je project.\"],\"Dj5ai3\":[\"Dit zal uw huidige invoer wissen. Weet u het zeker?\"],\"NrRH+W\":[\"Dit zal een kopie van het huidige project maken. Alleen instellingen en trefwoorden worden gekopieerd. Rapporten, chats en gesprekken worden niet opgenomen in de kopie. U wordt doorgestuurd naar het nieuwe project na het klonen.\"],\"hsNXnX\":[\"Dit zal een nieuw gesprek maken met dezelfde audio maar een nieuwe transcriptie. Het originele gesprek blijft ongewijzigd.\"],\"add.tag.filter.modal.info\":[\"Dit zal de conversatielijst filteren om conversaties met deze tag weer te geven.\"],\"participant.concrete.regenerating.artefact.description\":[\"We zijn je tekst aan het vernieuwen. Dit duurt meestal maar een paar seconden.\"],\"participant.concrete.loading.artefact.description\":[\"We zijn je tekst aan het ophalen. Even geduld.\"],\"mSuhYn\":[\"deze werkruimte\"],\"8b9oJD\":[\"Deze werkruimte heeft de opnamelimiet bereikt. Upgrade om meer audio te uploaden.\"],\"1pzlg0\":[\"Deze werkruimte heeft zijn opname-uren gebruikt. Upgrade om spraak te blijven gebruiken.\"],\"teN+SJ\":[\"Deze werkruimte wordt apart gefactureerd\"],\"/HZ7l/\":[\"Deze werkruimte wordt gefactureerd via \",[\"orgName\"],\". Abonnementen en betaling worden in één keer voor de hele organisatie beheerd, en elke werkruimte deelt dit.\"],\"Khe1Xt\":[\"Deze werkruimte zit op een niveau dat geen extra plekken toelaat. Upgrade het niveau van de werkruimte om meer mensen uit te nodigen.\"],\"vvEr5j\":[\"Deze werkruimte bestaat niet meer\"],\"+FiXAn\":[\"Deze werkruimte deelt de facturering van de organisatie. Pas het niveau aan op het organisatieaccount, daar geldt hij voor elke interne werkruimte in de organisatie.\"],\"QnWmgF\":[\"Deze werkruimte is op \",[\"sinceDate\"],\" teruggezet naar \",[\"tier\"],\". Sommige functies zijn beperkt.\"],\"DGZ0dc\":[\"Drie snelle stappen en je bent binnen.\"],\"VDoFSJ\":[\"Duim omlaag\"],\"Nuw8ty\":[\"Duim omhoog\"],\"67ZxuT\":[\"Vink alles aan wat van toepassing is.\"],\"s/y/Z+\":[\"Vink alles aan wat past.\"],\"nNGGkA\":[\"Niveau\"],\"qPIf5y\":[\"Niveau gewijzigd\"],\"LhMjLm\":[\"Tijd\"],\"cklVjM\":[\"Tijdlijn\"],\"8TMaZI\":[\"Tijdstempel\"],\"XSqo4Y\":[\"Tijdstempels en duur\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Gebruik de afspeelknop (▶) om een testpayload naar je webhook te verzenden en te controleren of het correct werkt.\"],\"Zb3ANR\":[\"Tip: U kunt ook een sjabloon maken van elk chatbericht dat u verstuurt, of een bestaand sjabloon dupliceren.\"],\"MHrjPM\":[\"Titel\"],\"1xkgU6\":[\"Titel automatisch gegenereerd\"],\"ouSxtJ\":[\"Titel gegenereerd uit het gesprek\"],\"uqnBvS\":[\"Titelrichtlijn\"],\"Mozc0C\":[\"Titel of deelnemer\"],\"dMtLDE\":[\"naar\"],\"xLXwHL\":[\"Om een nieuwe tag toe te wijzen, maak je deze eerst aan in de portalinstellingen.\"],\"qDfpLj\":[\"Om ons te helpen actie te ondernemen, probeer aan te geven waar het gebeurde en wat u probeerde te doen. Bij bugs, vertel ons wat er mis ging. Bij ideeën, vertel ons welke behoefte het voor u zou oplossen.\"],\"UEleqp\":[\"Om iemand te promoveren tot lid van de werkruimte, voeg je deze persoon eerst toe aan de organisatie en nodig je daarna opnieuw uit vanuit de werkruimte.\"],\"CCDe0r\":[\"Wil je bespreken wat je nodig hebt, mail dan <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Te groot\"],\"yIsdT7\":[\"Te lang\"],\"qgwLj6\":[\"Te lang of onduidelijk\"],\"lcsUaI\":[\"Te veel meldingen. Wacht een paar minuten en probeer het opnieuw\"],\"li4gmn\":[\"Te veel om hier te tonen. De assistent leest ze in delen door.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Onderwerp succesvol aangemaakt\"],\"Sawj4V\":[\"Onderwerp verwijderd\"],\"xcp3ny\":[\"Onderwerp label\"],\"vQoAht\":[\"Onderwerp bijgewerkt\"],\"th8cMZ\":[\"Titel op basis van onderwerp die beschrijft wat er werd besproken\"],\"sFMBP5\":[\"Onderwerpen\"],\"ONchxy\":[\"totaal\"],\"72c5Qo\":[\"Totaal\"],\"kFzhfN\":[\"Nu te betalen totaal\"],\"McSz22\":[\"Getraind\"],\"kMf0pe\":[\"Getraind tot \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training aangemaakt\"],\"p9JlS7\":[\"Trainingsdatum\"],\"1gL8o6\":[\"Training aangevraagd. We nemen contact op om het in te plannen.\"],\"KxpIJA\":[\"Training vereist voor gebruik met hoog risico\"],\"VGao62\":[\"Training bijgewerkt\"],\"miJqd2\":[\"Trainingsverificatie is hier niet beschikbaar.\"],\"cP0LwD\":[\"Trainingen\"],\"NteDtU\":[\"Een gesprek opnieuw transcriberen\"],\"fp5rKh\":[\"Transcriptie wordt uitgevoerd...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcriptie\"],\"5jqJzi\":[\"Transcriptanonimisering en instellingen voor opnieuw transcriberen werken consistenter. De opnameduur blijft correct na pauzeren en hervatten.\"],\"if/S2n\":[\"Transcriptie-anonimisering en opnieuw transcriberen gebruiken dezelfde privacy-instellingen.\"],\"hfpzKV\":[\"Transcript gekopieerd naar klembord\"],\"K3Fxr/\":[\"transcriptfragment\"],\"mW5T8N\":[\"Het ophalen van transcripties en gesprekssamenvattingen wordt afgerond voordat afhankelijke stappen doorgaan.\"],\"MzWrba\":[\"Transcriptiefout\"],\"TyO5K+\":[\"Transcripten zijn beschikbaar met een betaald abonnement.\"],\"53dSNP\":[\"Transformeer deze inhoud in inzichten die ertoe doen. Neem de volgende punten in acht:\\nNeem de belangrijkste inzichten uit de inhoud\\nSchrijf het als iemand die nuance begrijpt, niet een boek\\nFocus op de niet-evidente implicaties\\nHou het scherp en substantieel\\nHighlight de echt belangrijke patronen\\nStructuur voor duidelijkheid en impact\\nBalans diepte met toegankelijkheid\\n\\nOpmerking: Als de inhoud geen substantiële inzichten bevat, laat het me weten dat we sterkere bronnen nodig hebben.\"],\"uK9JLu\":[\"Transformeer deze discussie in handige intelligente informatie. Neem de volgende punten in acht:\\nNeem de strategische implicaties, niet alleen de sprekerpunten\\nStructuur het als een analyse van een denkerleider, niet minuten\\nHighlight besluitpunten die conventionele kennis vervant\\nHoud de signaal-ruisverhouding hoog\\nFocus op inzichten die echt verandering teweeg brengen\\nOrganiseer voor duidelijkheid en toekomstige referentie\\nBalans tactische details met strategische visie\\n\\nOpmerking: Als de discussie geen substantiële besluitpunten of inzichten bevat, flag het voor een diepere exploratie de volgende keer.\"],\"lhkaAC\":[\"Proef\"],\"hDv2MY\":[\"Proef- en gratis accounts, niet meegerekend in het betalende totaal.\"],\"DtButj\":[\"Trigger automatische workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Problemen met inloggen? Neem contact op via support@dembrane.com.\"],\"KDw4GX\":[\"Opnieuw proberen\"],\"u62wQ4\":[\"Probeer het zo meteen opnieuw.\"],\"7dRUDh\":[\"Probeer Agentic\"],\"eP1iDc\":[\"Vraag bijvoorbeeld\"],\"sZgR8D\":[\"Probeer het\"],\"goQEqo\":[\"Probeer een beetje dichter bij je microfoon te komen voor betere geluidskwaliteit.\"],\"q1ok4Y\":[\"Wil je je aansluiten bij een bestaande organisatie?\"],\"REPBIk\":[\"Zet gesprekken om in live slides. Start een live sessie of een analyse op aanvraag, presenteer aan de groep en bekijk de bronnen achter inzichten.\"],\"portal.anonymization.disable.confirm\":[\"Uitschakelen\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Anonimisering uitschakelen?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Zet de gesprekken in je project om in live slides voor de zaal.\\n\\n- Volg opkomende thema’s terwijl mensen praten.\\n- Presenteer inzichten en bekijk de gesprekken erachter.\\n- Start een live sessie of laat gesprekken analyseren wanneer je dat wilt.\\n\\nOok nieuw: chatsjablonen, agentverbindingen en verbeteringen voor mobiel.\"],\"portal.anonymization.disable.warning\":[\"Het uitschakelen van anonimisering terwijl opnames gaande zijn kan onbedoelde gevolgen hebben. Actieve gesprekken worden ook beïnvloed tijdens de opname. Gebruik dit met voorzichtigheid.\"],\"JPF8BN\":[\"Je spraaknotitie wordt omgezet naar tekst\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Tweestapsverificatie\"],\"NwChk2\":[\"Tweestapsverificatie uitgezet\"],\"qwpE/S\":[\"Tweestapsverificatie aangezet\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Typ <0>\",[\"0\"],\" om te bevestigen.\"],\"hHFgGr\":[\"Typ een bericht of druk / voor templates...\"],\"EvmL3X\":[\"Typ hier uw reactie\"],\"KfLidz\":[\"Typt\"],\"dubg//\":[\"Oekraïens (alleen ECHO-functies, Transcriptie en Samenvattingen)\"],\"MksxNf\":[\"Kan auditlogboeken niet laden.\"],\"participant.outcome.error.title\":[\"Kan uitkomst niet laden\"],\"59QK2U\":[\"Kan het gegenereerde resultaat niet laden. Probeer het opnieuw.\"],\"nGxDbq\":[\"Kan dit fragment niet verwerken\"],\"lLwEjI\":[\"Minder dan 50.\"],\"8ryDoK\":[\"Onder je organisatie\"],\"HYUJF4\":[\"Onze nieuwe structuur uitgelegd\"],\"9uI/rE\":[\"Ongedaan maken\"],\"Ef7StM\":[\"Onbekend\"],\"wF2wqQ\":[\"Onbekende datum\"],\"rIOkYf\":[\"Onbekend lid\"],\"1MTTTw\":[\"Onbekende reden\"],\"nWMRxa\":[\"Losmaken\"],\"vSdeRU\":[\"Maak eerst een project los (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Maak eerst een project los (max 3)\"],\"dx+iaL\":[\"Project losmaken\"],\"KuVpz+\":[\"Ongelezen\"],\"Eb6wiX\":[\"Onleesbare audio en ongeldige transcriptieresultaten leiden niet meer tot herhaalde verwerkingspogingen.\"],\"sCTlv5\":[\"Niet-opgeslagen wijzigingen\"],\"SMaFdc\":[\"Afmelden\"],\"nOxIVE\":[\"Zonder tag\"],\"VFYmmV\":[\"Vink een veld uit om het precies te laten zoals het is.\"],\"1hTGn4\":[\"tot \",[\"0\"]],\"wja8aL\":[\"Naamloos\"],\"CoInOF\":[\"Naamloos canvas\"],\"LOM/+N\":[\"Naamloos gesprek\"],\"jlrVDp\":[\"Gesprek zonder titel\"],\"ZjKqrC\":[\"Naamloze methodologie\"],\"PZKdTd\":[\"Naamloos rapport\"],\"+TYrZZ\":[\"Tot \",[\"0\"],\" deelnemers\"],\"RHUiSf\":[\"Tot \",[\"0\"],\" deelnemers zijn inbegrepen.\"],\"0wHyhk\":[\"Maximaal \",[\"MAX_FILES\"],\" afbeeldingen\"],\"lLehih\":[\"Maximaal \",[\"MAX_MESSAGE_CHARS\"],\" tekens\"],\"ia8YsC\":[\"Binnenkort\"],\"EkH9pt\":[\"Bijwerken\"],\"H/FUVb\":[\"Updateritme\"],\"x4Xp3c\":[\"bijgewerkt\"],\"Ef5vag\":[\"Bijgewerkt \",[\"0\"],\" · \"],\"+vId6X\":[\"Bijgewerkt \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Vernieuwde kleuren, lettertypen, pictogrammen en logo geven dembrane een frisse uitstraling.\"],\"B44Dtg\":[\"Bijgewerkt.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates verschijnen in de zijbalk met een aantal ongelezen berichten.\"],\"1efbWn\":[\"Werkt elke \",[\"cadenceMinutes\"],\" minuten bij tot \",[\"0\"],\".\"],\"luwc/s\":[\"Werkt elke \",[\"cadenceMinutes\"],\" minuten bij.\"],\"V7w3WZ\":[\"Notitie voor het dembrane-team bijwerken\"],\"IUC5Nz\":[\"Opgeslagen geheugen bijwerken\"],\"26+vhb\":[\"Projecttags bijwerken\"],\"Gw18pn\":[\"Upgrade om dit aan de chat toe te voegen\"],\"0s5x5X\":[\"Upgrade om verder te gaan\"],\"3I+le5\":[\"Upgrade om een titel voor dit gesprek te genereren\"],\"GFLM5d\":[\"Upgrade om samenvattingen voor dit gesprek te genereren\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Avatar uploaden\"],\"kV3A2a\":[\"Upload voltooid\"],\"4Fr6DA\":[\"Gesprekken uploaden\"],\"pZq3aX\":[\"Upload mislukt. Probeer het opnieuw.\"],\"HAKBY9\":[\"Bestanden uploaden\"],\"4Z7WLN\":[\"Uploadlimiet bereikt\"],\"6XdQf/\":[\"Uploadlimiet bereikt. Upgrade je werkruimte.\"],\"QfiWpJ\":[\"Logo uploaden\"],\"ZeGAhv\":[\"opnames te uploaden\"],\"k/LaWp\":[\"Audio bestanden uploaden...\"],\"participant.modal.uploading\":[\"Audio uploaden...\"],\"participant.modal.interruption.uploading\":[\"Audio uploaden...\"],\"P2sJqQ\":[\"Opnames uploaden is beschikbaar met een betaald abonnement.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is vereist\"],\"3VnYUR\":[\"URL moet beginnen met http:// of https://\"],\"7FaY4u\":[\"Gebruik\"],\"6YK+1q\":[\"Gebruik · \",[\"0\"]],\"9TZVmX\":[\"Gebruik en facturering\"],\"589hpo\":[\"Gebruik en facturering, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Gebruik en facturering, betalingen, partnergrootboek. Elke Directus-beheerder heeft toegang.\"],\"9rNv3P\":[\"Gebruik wordt bijgehouden voor je organisatie. Bekijk het in de organisatie-instellingen.\"],\"RuzOGi\":[\"Gebruik deze cyclus\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Gebruik dembrane in het Tsjechisch.\"],\"8otRhI\":[\"Gebruik verbeterde vraagtemplates en vernieuwde transcriptieopties.\"],\"CBeRq6\":[\"Overgenomen standaard gebruiken\"],\"83yh4y\":[\"Gebruik Italiaans voor chat, rapporten, transcriptie en introductiekaarten voor deelnemers.\"],\"Rp3hXT\":[\"Gebruik Italiaans voor chat, rapporten, transcriptie en introductiekaarten voor deelnemers. Volledige vertaling van de interface was niet inbegrepen in deze release.\"],\"UqMA5L\":[\"Gebruik vastgepinde en opgeslagen vraagtemplates, inclusief de /-sneltoets, vanuit Ask.\"],\"ngdRFH\":[\"Gebruik Shift + Enter om een nieuwe regel toe te voegen\"],\"daEZ1b\":[\"Gebruik Oekraïens voor chat en antwoorden aan deelnemers.\"],\"w+4I2h\":[\"webhooks te gebruiken\"],\"QB0CBI\":[\"je stem in de chat te gebruiken\"],\"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\"],\"08yTaL\":[\"Gebruikt fixture-data.\"],\"mUOhaJ\":[\"Gebruik webhooks? We zouden graag van je horen\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"Btw-nummer\"],\"/n0QEP\":[\"Btw-regio\"],\"NBpTc8\":[\"Verificatie op het eindscherm\"],\"Eatezj\":[\"Verificatie-uitkomsten gebruiken de taal van het project.\"],\"Qbt5wq\":[\"Verificatieprompts mogen 10.000 tekens bevatten en geverifieerde uitkomsten hebben een kopieerknop.\"],\"participant.modal.verify_prompt.title\":[\"Herinnering om te verifiëren\"],\"participant.banner.verification_required\":[\"Verificatie vereist\"],\"OKGlwv\":[\"Verificatieonderwerpen\"],\"select.all.modal.verified\":[\"Geverifieerd\"],\"select.all.modal.loading.verified\":[\"Geverifieerd\"],\"QDEWii\":[\"Geverifieerd\"],\"conversation.filters.verified.text\":[\"Geverifieerd\"],\"Iv1iWN\":[\"geverifieerde artefacten\"],\"bepwgB\":[\"Geverifieerde artefacten\"],\"dashboard.dembrane.verify.title\":[\"Verifiëren\"],\"uSMfoN\":[\"Verifiëren\"],\"participant.button.verify_prompt.verify\":[\"Verifiëren\"],\"participant.echo.verify\":[\"Verifiëren\"],\"4LFZoj\":[\"Code controleren\"],\"MBOY4U\":[\"E-mail verifiëren\"],\"FYGV+K\":[\"Verifieer uitkomsten en verfijn antwoorden\"],\"w6Mgbs\":[\"Onderwerpen verifiëren\"],\"bl9677\":[\"Verifieert\"],\"iOnm3W\":[\"Je e-mailadres wordt geverifieerd.\"],\"eE0JZ4\":[\"Versie\"],\"IYNSdp\":[\"Versies\"],\"YFvfo/\":[\"Erg stil op dit moment. Check of de microfoon niet uitstaat.\"],\"jpctdh\":[\"Weergave\"],\"SZw9tS\":[\"Bekijk details\"],\"95YFbG\":[\"Voorbeeld payload bekijken\"],\"j45ntU\":[\"Uitnodiging bekijken\"],\"399GLg\":[\"Bekijk release notes\"],\"D4e7re\":[\"Bekijk je reacties\"],\"rUp0hp\":[\"Je bekijkt \",[\"0\"]],\"P0bGkp\":[\"Zichtbare kolommen\"],\"S3T9oe\":[\"Zichtbaar voor iedereen in \",[\"workspaceName\"]],\"fedNgo\":[\"Zichtbaar voor iedereen in deze werkruimte\"],\"754W/v\":[\"Zichtbaar voor iedereen in deze werkruimte. Laat uit om het persoonlijk te houden.\"],\"RdG06l\":[\"Bezoekersgegevens\"],\"KAXSwC\":[\"Spraak\"],\"lEx4m3\":[\"Spraakinvoer houdt rekening met de opnamelimiet van het gratis abonnement.\"],\"Ln6Gy/\":[\"Wachten tot gesprekken zijn afgerond voordat een rapport wordt gegenereerd.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Loopt de installatie met je door en stelt volgende stappen voor.\"],\"oKfSzq\":[\"Dit ook op jouw event?\"],\"q7LnaV\":[\"Zelf een event organiseren met dembrane?\"],\"La34Yq\":[\"dembrane gebruiken op jouw volgende event?\"],\"0/aCt7\":[\"Volg live opnames, transcriptievoortgang en fouten in dit project terwijl ze gebeuren.\"],\"OtLbE1\":[\"Bekijk de video voor een introductie tot organisaties, workspaces en projecten.\"],\"participant.alert.microphone.access.issue\":[\"We kunnen je niet horen. Probeer je microfoon te wisselen of een beetje dichter bij het apparaat te komen.\"],\"kSJ1rO\":[\"We konden je betaalmethode niet belasten\"],\"Ul0g2u\":[\"We konden tweestapsverificatie niet uitschakelen. Probeer het opnieuw met een nieuwe code.\"],\"sM2pBB\":[\"We konden tweestapsverificatie niet inschakelen. Controleer je code en probeer het opnieuw.\"],\"mW8QSA\":[\"We konden de pagina die je zocht niet vinden. Misschien is hij verplaatst.\"],\"UStbqQ\":[\"We konden deze organisatie niet laden. Probeer het zo meteen opnieuw.\"],\"viuoK1\":[\"We konden het gebruik van deze organisatie niet laden.\"],\"huDAZ9\":[\"We konden de werkruimtes van deze organisatie niet laden. Sommige opties ontbreken mogelijk. Probeer te vernieuwen.\"],\"Ay7FNv\":[\"We konden dit project niet laden. Controleer je verbinding en probeer het opnieuw.\"],\"Z2y7ap\":[\"We konden deze werkruimte niet laden. Probeer het zo meteen opnieuw.\"],\"zPjLTr\":[\"We konden het gebruik van deze werkruimte niet laden.\"],\"y5BiQM\":[\"We konden je organisaties niet laden. Controleer je verbinding en probeer het opnieuw.\"],\"+jHAFm\":[\"We konden je openstaande uitnodigingen niet laden. Probeer het zo meteen opnieuw.\"],\"gNHeDV\":[\"We konden je betaalmethode niet bijwerken. Je oude methode is nog actief. Probeer het opnieuw.\"],\"participant.modal.echo.info.reason\":[\"We hebben iets meer context nodig om u te helpen ECHO effectief te gebruiken. Ga door met opnemen zodat we betere suggesties kunnen geven.\"],\"GC6z0d\":[\"We hebben een verificatielink naar <0>\",[\"email\"],\" gestuurd. Klik erop om het instellen van je account af te ronden.\"],\"9i8m90\":[\"We hebben je een verificatielink gestuurd. Klik erop om het instellen van je account af te ronden.\"],\"81dqga\":[\"We zetten samen het project op, draaien op de dag zelf met je mee en helpen je daarna het rapport te schrijven.\"],\"S+HYhm\":[\"We konden je methode nog steeds niet belasten. Werk deze bij en probeer het opnieuw.\"],\"L9hUjh\":[\"We nemen binnen een dag contact op. Liever zelf een moment kiezen?\"],\"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.\"],\"FXjsEJ\":[\"We horen graag van je. Of je nu een idee hebt voor iets nieuws, een vertaling zag die niet klopt, of gewoon wilt delen hoe het gaat. Bug gevonden? Gebruik <0>Probleem melden om die met schermafbeeldingen te sturen.\"],\"XolQc4\":[\"We horen graag van je. Of je nu een idee hebt voor iets nieuws, een vertaling zag die niet klopt, of gewoon wilt delen hoe het gaat. Bug gevonden? Gebruik Probleem melden in de zijbalk om die met schermafbeeldingen te sturen.\"],\"participant.test.microphone.description\":[\"We testen je microfoon om de beste ervaring voor iedereen in de sessie te garanderen.\"],\"+eLc52\":[\"We horen wat stilte. Probeer harder te spreken zodat je stem duidelijk blijft.\"],\"PH7tM1\":[\"We hebben organisaties toegevoegd zodat je projecten kunt ordenen en delen met collega's. Alles wat je eerder had, is er nog. We hebben alleen een naam voor je organisatie nodig.\"],\"Yc3tsw\":[\"We hebben een verificatielink naar <0>\",[\"0\"],\" gestuurd. Open de e-mail en klik op de link om verder te gaan.\"],\"fylXkT\":[\"Zwak netwerk\"],\"7cUq8g\":[\"Zwak wachtwoord\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks zijn geautomatiseerde berichten die van een app naar een andere worden verzonden wanneer iets gebeurt. Denk aan ze als een \\\"notificatiesysteem\\\" voor uw andere tools.\"],\"3rkRxG\":[\"Webhooks zijn niet ingeschakeld voor deze omgeving.\"],\"EAioZ5\":[\"Webhooks zijn beschikbaar met een betaald abonnement.\"],\"6jfS51\":[\"Welkom\"],\"9eF5oV\":[\"Welkom terug\"],\"ZVR4oQ\":[\"Welkom terug, \",[\"displayName\"]],\"OM+lH0\":[\"Welkom bij dembrane\"],\"P3EAlh\":[\"Welkom bij dembrane chat. Selecteer de gesprekken die je wilt analyseren en vraag dan naar details, citaten en samenvattingen.\"],\"Fx+f0A\":[\"Welkom bij dembrane!\"],\"u4aLOz\":[\"Welkom in Overview Mode! Ik heb samenvattingen van al je gesprekken klaarstaan. Vraag me naar patronen, thema’s en inzichten in je data. Voor exacte quotes start je een nieuwe chat in Specific Context mode.\"],\"J2FSRx\":[\"Welkom, \",[\"displayName\"]],\"klH6ct\":[\"Welkom!\"],\"RL57XM\":[\"Wat zijn webhooks? (2 min lezen)\"],\"nCQNTt\":[\"Wat wil je te weten komen?\"],\"vv/EFG\":[\"Wat gegevens worden verzonden?\"],\"WSxXHT\":[\"Waarvoor wil je dembrane gebruiken?\"],\"3jWdsE\":[\"Waarvoor wil je dembrane gebruiken?\"],\"participant.verify.selection.title\":[\"Wat wil je verifiëren?\"],\"B5v8nx\":[\"Wat er verstuurd wordt\"],\"JJjzZE\":[\"Wat is er gebeurd? Plak hier een screenshot om hem toe te voegen\"],\"WqnI4l\":[\"Wat is het?\"],\"T91psD\":[\"Wat zou hieraan anders moeten zijn?\"],\"pVIWuw\":[\"Wat moet ECHO analyseren of genereren uit de gesprekken?\"],\"yWXuOc\":[\"Welke thema's kwamen naar voren in de gesprekken in dit project?\"],\"LfRBcL\":[\"Welke thema's kwamen naar voren?\"],\"pd3Yt/\":[\"Wat dit project deze cyclus verbruikt.\"],\"tq89gP\":[\"Wat ging er mis?\"],\"qGrqH9\":[\"Wat waren de belangrijkste momenten in dit gesprek?\"],\"FXZcgH\":[\"Wat wil je verkennen?\"],\"3ePd3I\":[\"Wat is er nieuw\"],\"k7eeqO\":[\"Wat is de belangrijkste reden?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"Wanneer heb je dembrane nodig?\"],\"KmUKwU\":[\"Wanneer ingeschakeld, zullen alle nieuwe transcripties persoonlijke informatie (namen, e-mails, telefoonnummers, adressen) worden vervangen door placeholders. Anonieme gesprekken deactiveren ook audio-afspelen, audio-download en hertranscriptie om de privacy van deelnemers te beschermen. Dit kan niet ongedaan worden gemaakt voor al bestaande gesprekken.\"],\"MEmr1I\":[\"Wanneer je het gesprek afmaakt, worden deelnemers die nog niet hebben geverifieerd gevraagd om te verifiëren of over te slaan\"],\"BaiSBQ\":[\"Staat dit aan, dan kan het supportteam van dembrane deze werkruimte in om je te helpen. Hun toegang stopt automatisch na 24 uur.\"],\"SgIrVC\":[\"Zodra deelnemers de QR-code scannen, verschijnen ze hier en bewegen ze live door de fases.\"],\"/dAMl1\":[\"Wanneer moet het rapport gegenereerd worden?\"],\"MyMufZ\":[\"Als iemand de QR-code scant, is dat één gesprek. Als 50 mensen hem tegelijk scannen, zijn dat 50 gesprekken tegelijk.\"],\"NPIwj3\":[\"Wanneer de samenvatting klaar is (bevat zowel transcript als samenvatting)\"],\"JwZibo\":[\"Waar wil je naartoe?\"],\"msYPX5\":[\"Waar wil je beginnen?\"],\"kqHiF1\":[\"Bij welke organisatie hoort deze werkruimte?\"],\"lwFEDE\":[\"Welke organisatie is eigenaar van de data van deze werkruimte? Dit bepaalt de data- en compliancecontext.\"],\"wZht80\":[\"Wie dit project kan zien en eraan kan samenwerken.\"],\"P9WL8r\":[\"Wie kan dit project zien?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Wie in je team een actuele trainingslicentie heeft. Boek een training via de Training-weergave van je organisatie.\"],\"KcnIXL\":[\"wordt in je rapport opgenomen\"],\"EpZ9+F\":[\"wens\"],\"QdkkH5\":[\"Met externe klanten\"],\"KWhZCH\":[\"Binnen mijn organisatie\"],\"ErlMoy\":[\"Werk met de nieuwe gespreksassistent, volg sessies in de live monitor en gebruik de vernieuwde transcriptieverwerking.\"],\"T5IBvE\":[\"Werk met de nieuwe gespreksassistent.\"],\"qJ0J+6\":[[\"0\"],\" stappen doorlopen\"],\"B6dzt1\":[\"Bezig met je antwoord...\"],\"NwM/eB\":[\"werkruimte\"],\"pmUArF\":[\"Werkruimte\"],\"IG4YLy\":[\"Workspace / project\"],\"SO/3gk\":[\"Toegangsopties voor werkruimtes leggen uit welke instellingen een betaald abonnement vereisen.\"],\"VmdouC\":[\"Werkruimte-account\"],\"Zqthj7\":[\"Werkruimte-acties\"],\"ZBKhLV\":[\"Werkruimte aangemaakt.\"],\"xM1hP9\":[\"Werkruimtestandaard\"],\"UlhdTP\":[\"Werkruimte verwijderd\"],\"Ep8k4i\":[\"Werkruimte is vol\"],\"Y0Fj4S\":[\"Werkruimtelogo\"],\"CozWO1\":[\"Naam van de werkruimte\"],\"dg0Efy\":[\"Naam van de werkruimte. Wordt automatisch opgeslagen.\"],\"QGaOM/\":[\"Werkruimterechten, ledentellingen en het laden van accountgegevens zijn gecorrigeerd.\"],\"wHWiPE\":[\"Werkruimte hernoemd\"],\"Knd6gz\":[\"Werkruimte-instellingen\"],\"XAW6X5\":[\"Werkruimte-instellingen | dembrane\"],\"wowvFW\":[\"Gast met alleen toegang tot de werkruimte. Niet toegevoegd aan de organisatie.\"],\"JKU2hI\":[\"werkruimtes\"],\"pmt7u4\":[\"Werkruimtes\"],\"YRelrK\":[\"Werkruimtes apart gefactureerd\"],\"vMCu+n\":[\"Werkruimtes in dit account\"],\"XLYmK5\":[\"Werkruimtes in deze organisatie waar je nog geen lid van bent. Als admin kun je jezelf toevoegen om ze te beheren.\"],\"lBVr4U\":[\"Werkruimtes die met je zijn gedeeld\"],\"++IGvT\":[\"Werkruimtes waar je lid van kunt worden\"],\"JEHySj\":[\"Werkruimtes waarvoor je bent uitgenodigd. Accepteer om te gaan samenwerken.\"],\"add.tag.filter.modal.description\":[\"Wilt u deze tag toevoegen aan uw huidige filters?\"],\"0OzGcI\":[\"Schrijf eigen hostprompts voor verificatie door deelnemers.\"],\"HLUYL3\":[\"Schrijf eigen verificatievragen, genereer uitkomsten in je projecttaal en herinner deelnemers eraan te verifiëren voor ze afronden. Configureer instellingen per rechtsgrond.\"],\"Exc/LI\":[\"Verkeerd adres? E-mail wijzigen\"],\"bmC+Ww\":[\"Verkeerde taal of toon\"],\"MNTYHt\":[\"Verkeerde bronnen\"],\"l75CjT\":[\"Ja\"],\"participant.button.finish.yes.text.mode\":[\"Ja\"],\"av/PD9\":[\"jou\"],\"kWJmRL\":[\"Jij\"],\"VHG+Js\":[\"Je hebt al toegang tot deze werkruimte.\"],\"Dl7lP/\":[\"Je bent al afgemeld of je link is ongeldig.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"Je zit op het gratis plan.\"],\"Arw/sv\":[\"Je zit op het gratis plan. Er is nog niets te betalen.\"],\"rKP2WF\":[\"Jij bent de data-eigenaar\"],\"EDIsb+\":[\"Je kunt dit altijd aanpassen in de instellingen.\"],\"fzU5ll\":[\"Je kunt dit later aanpassen in de projectinstellingen.\"],\"dWZJqc\":[\"Je kunt dit later aanpassen in de werkruimte-instellingen nadat je factuurgegevens hebt toegevoegd.\"],\"uGP87g\":[\"Je kunt dit later aanpassen in de werkruimte-instellingen.\"],\"WS92Fk\":[\"Je kunt wegnavigeren en later terugkomen. Je rapport wordt op de achtergrond verder gegenereerd.\"],\"E71LBI\":[\"Je kunt maximaal \",[\"MAX_FILES\"],\" bestanden tegelijk uploaden. Alleen de eerste \",[\"0\"],\" bestanden worden toegevoegd.\"],\"+IqtlU\":[\"Je kunt ze later opnieuw uitnodigen vanuit elke werkruimte.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"U kunt het hieronder opnieuw proberen.\"],\"96ERwL\":[\"Je kunt nog geen werkruimte aanmaken\"],\"bHCu+u\":[\"Je kunt jezelf niet uitnodigen.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"Je hebt geen toestemming om te transcriberen in dit project.\"],\"UjkUrJ\":[\"Je hebt geen toegang tot deze werkruimte.\"],\"3x5+PU\":[\"Je hebt geen rechten om werkruimtes aan te maken in die organisatie. We vallen terug op je primaire organisatie.\"],\"fkXBUO\":[\"Je hebt geen rechten om uit te nodigen voor een werkruimte in deze organisatie.\"],\"QYdixc\":[\"Je hebt een openstaande uitnodiging\"],\"ombH/9\":[\"Je hebt een openstaande uitnodiging voor \",[\"0\"],\". Open deze om lid te worden van de organisatie.\"],\"8v7ix0\":[\"Je hebt een openstaande uitnodiging voor \",[\"0\"],\". De beheerder moet een plek vrijmaken voordat je lid kunt worden.\"],\"select.all.modal.already.added\":[\"U heeft al <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversatie\"],\"other\":[\"#\",\" conversaties\"]}],\" aan deze chat toegevoegd.\"],\"7W35AW\":[\"Je hebt alle gerelateerde gesprekken al toegevoegd\"],\"participant.modal.change.mic.confirmation.text\":[\"Je hebt je microfoon gewisseld. Klik op \\\"Doorgaan\\\" om verder te gaan met de sessie.\"],\"T/Q7jW\":[\"U hebt succesvol afgemeld.\"],\"fopZ8o\":[\"Je hebt supporttoegang tot deze werkruimte. Deze stopt automatisch op \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"Je bent nog geen lid van een werkruimte in deze organisatie.\"],\"participant.modal.verify_prompt.description\":[\"Je hebt nog geen resultaten geverifieerd. Wil je verifiëren voordat je afsluit?\"],\"PjAkjf\":[\"Je hebt de werkruimte verlaten\"],\"lTDtES\":[\"Je kunt er ook voor kiezen om een ander gesprek op te nemen.\"],\"yCtSKg\":[\"Je moet inloggen met dezelfde provider die u gebruikte om u aan te melden. Als u problemen ondervindt, neem dan contact op met de ondersteuning.\"],\"t6Ti2e\":[\"Je hebt een uitnodiging van een collega nodig\"],\"snMcrk\":[\"Je lijkt offline te zijn, controleer je internetverbinding\"],\"MLw3ff\":[\"Je hebt deze run gestopt.\"],\"zlqA7w\":[\"Je probeerde \",[\"action\"],\".\"],\"N/N2Av\":[\"Je wordt als admin toegevoegd aan \",[\"0\"],\" privéwerkruimtes. Ze verschijnen daarna meteen in je zijbalk.\"],\"cehffY\":[\"Je wordt als admin toegevoegd aan \",[\"singleName\"],\". Die verschijnt daarna meteen in je zijbalk.\"],\"OR5x71\":[\"Al je projecten staan voor je klaar.\"],\"hu3KYo\":[\"Je komt in een chat waar dembrane je helpt het project vorm te geven, voordat je gesprekken verzamelt.\"],\"OQI3hm\":[\"Je verliest toegang tot deze werkruimte.\"],\"bX2FeG\":[\"Je verliest toegang tot deze werkruimte. Projecten die je hebt gemaakt blijven; je rol hier wordt verwijderd.\"],\"participant.verify.instructions.receive.artefact\":[\"Je ontvangt zo meteen \",[\"objectLabel\"],\" om te verifiëren.\"],\"gDdsRc\":[\"Je bevestigt je nieuwe betaalmethode op het volgende scherm. Er wordt niets in rekening gebracht, het bevestigt alleen de nieuwe kaart.\"],\"vkNkB8\":[\"Je staat op het punt je eigen rol te wijzigen naar <0>\",[\"0\"],\". Je verliest direct toegang tot de instellingen van de werkruimte, uitnodigingen en ledenbeheer.\"],\"KS7iJH\":[\"Je bent helemaal bij.\"],\"ADMWt4\":[\"Je bent al lid van \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"Je zit al in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"Je bent een externe medewerker in deze organisatie. Open hieronder een van de werkruimtes die met je zijn gedeeld.\"],\"bbvEPE\":[\"Je zit erin\"],\"LfpEZ9\":[\"Je logt in met het verkeerde e-mailadres\"],\"PVUJ6+\":[\"Je zit nog in geen enkele organisatie. Maak een werkruimte om een organisatie te starten, of vraag een lid om een uitnodiging.\"],\"Y3LcET\":[\"Je maakt op dit moment deel uit van geen enkele organisatie.\"],\"FQdXKc\":[\"Je hergebruikt plekken waarvoor je deze periode al hebt betaald (iemand is vertrokken), dus daar wordt nu niets voor in rekening gebracht. De verlenging houdt er rekening mee.\"],\"HnqO9D\":[\"Je bent de enige beheerder. Maak iemand anders beheerder voordat je je rol wijzigt.\"],\"AcL9Ou\":[\"Je bent uitgenodigd om samen te werken met \",[\"0\"],\" organisaties. We nemen je mee zodra je doorgaat.\"],\"cZ4+ZH\":[\"Je bent uitgenodigd om samen te werken met <0>\",[\"0\"],\". We brengen je er zo naartoe.\"],\"ePJQ19\":[\"Je bent uitgenodigd voor \",[\"0\"],\" organisaties. We nemen je mee zodra je doorgaat.\"],\"RTgVkc\":[\"Je bent uitgenodigd voor <0>\",[\"0\"],\". We brengen je er zo naartoe.\"],\"189Q0c\":[\"Je hebt de limiet van het gratis plan voor deze chat bereikt. Upgrade om verder te chatten.\"],\"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.\"],\"snxpiF\":[\"jij@voorbeeld.nl\"],\"M5ub3j\":[\"Jouw toegang\"],\"WIv0oz\":[\"Jouw toegang tot \",[\"0\"],\" eindigde op \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Jouw goedkeuring helpt ons begrijpen wat je echt denkt!\"],\"wmkjMv\":[\"Je browser blokkeert de microfoon. Geef toegang en probeer het opnieuw.\"],\"NzCkyb\":[\"Je afspraak is geboekt: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Je afspraak is geboekt.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Jouw gegevens\"],\"lRpeom\":[\"Je concept wordt niet opgeslagen.\"],\"z8F4/3\":[\"Jouw e-mailadres\"],\"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.\"],\"vaTeZ3\":[\"Je feedback en dit antwoord gaan naar het dembrane-team.\"],\"DM8bIO\":[\"Je gratis plan bevat één rapport. Upgrade om er meer te maken.\"],\"+Tx3/U\":[\"Je gratis uur voor transcriptie is opgebruikt.\"],\"aZHXuZ\":[\"Uw invoer wordt automatisch opgeslagen.\"],\"Yo3xGL\":[\"Je uitnodiging staat nog open. Probeer het opnieuw zodra de beheerder een plek vrijmaakt of de werkruimte upgradet.\"],\"aCpo/d\":[\"Je uitnodiging is al geaccepteerd, maar je bent geen lid meer van \",[\"resolvedWorkspaceName\"],\". Vraag de beheerder om je opnieuw uit te nodigen.\"],\"/Mqhsc\":[\"Je laatste betaling is niet gelukt. Je abonnement blijft actief. Werk je betaalmethode bij of probeer de betaling opnieuw om het recht te zetten.\"],\"1Uvqtx\":[\"De generatie van je laatste rapport is geannuleerd. Je meest recente voltooide rapport wordt getoond.\"],\"JgZh6f\":[\"Je logo is nog actief, maar kan op dit niveau niet worden gewijzigd.\"],\"q8yluz\":[\"Uw naam\"],\"VSneAo\":[\"Je naam, e-mailadres en huidige pagina worden meegestuurd zodat we contact kunnen opnemen.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Je eigen logo is beschikbaar met een betaald abonnement.\"],\"YEPYkg\":[\"Je eigen ledenkaart blijft bovenaan de lijst staan.\"],\"ArN1eD\":[\"Je betaalde periode is afgelopen, dus we kunnen dit abonnement hier niet meer aanzetten. Mail support@dembrane.com, dan lossen we het samen met je op.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Je abonnement is geregeld met dembrane, dus hier valt niets te betalen. Alles wat in je abonnement zit blijft beschikbaar.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Je abonnement wordt niet verlengd. Je houdt toegang tot het einde van de periode.\"],\"pYnFb6\":[\"Je opname, \",[\"0\"]],\"MBrtod\":[\"Je aanvraag is binnen.\"],\"B+9EHO\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten.\"],\"DrJCbp\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten. Je kunt ook nog een gesprek opnemen of de QR-code delen zodat anderen kunnen bijdragen.\"],\"7i36j4\":[\"Je antwoord is opgeslagen. Je kunt dit tabblad sluiten. Je kunt ook de QR-code delen zodat anderen kunnen bijdragen, of nog een gesprek opnemen.\"],\"wurHZF\":[\"Je reacties\"],\"B8Q/i2\":[\"Je weergave is gemaakt. Wacht aub terwijl we de data verwerken en analyseren.\"],\"library.views.title\":[\"Je weergaven\"],\"lWeANa\":[\"Je werkruimte staat klaar. Klik op doorgaan om samen te werken.\"],\"crrqaX\":[\"jr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/locales/uk-UA.po b/echo/frontend/src/locales/uk-UA.po index 0d708919..1cf817b0 100644 --- a/echo/frontend/src/locales/uk-UA.po +++ b/echo/frontend/src/locales/uk-UA.po @@ -53,6 +53,16 @@ msgstr "Preparing your dashboard" msgid "Welcome back" msgstr "Welcome back" +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:542 +#~ msgid "participant.button.back.microphone" +#~ msgstr "Back" + +#. js-lingui-explicit-id +#: src/components/participant/ParticipantOnboardingCards.tsx:446 +#~ msgid "participant.mic.check.button.skip" +#~ msgstr "Skip" + #: src/components/popcorn/PopcornStatus.tsx:45 msgid " · {heldBack} held back" msgstr "" @@ -2088,13 +2098,8 @@ msgid "Back" msgstr "Back" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:542 -msgid "participant.button.back.microphone" -msgstr "Back" - -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:567 -#: src/components/layout/ParticipantHeader.tsx:87 +#: src/components/participant/ParticipantOnboardingCards.tsx:419 +#: src/components/layout/ParticipantHeader.tsx:90 msgid "participant.button.back" msgstr "Back" @@ -2381,7 +2386,7 @@ msgid "participant.concrete.action.button.cancel" msgstr "Cancel" #. js-lingui-explicit-id -#: src/components/layout/ParticipantHeader.tsx:97 +#: src/components/layout/ParticipantHeader.tsx:100 msgid "participant.concrete.instructions.button.cancel" msgstr "Cancel" @@ -3038,14 +3043,13 @@ msgid "Continue" msgstr "Continue" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:554 -#: src/components/participant/MicrophoneTest.tsx:414 -msgid "participant.button.continue" +#: src/components/participant/ParticipantInitiateForm.tsx:336 +msgid "participant.ready.to.begin.button.text" msgstr "Continue" #. js-lingui-explicit-id -#: src/components/participant/ParticipantInitiateForm.tsx:336 -msgid "participant.ready.to.begin.button.text" +#: src/components/participant/MicrophoneTest.tsx:414 +msgid "participant.button.continue" msgstr "Continue" #: src/routes/organisation/OrganisationRoute.tsx:1629 @@ -7275,7 +7279,7 @@ msgid "Next" msgstr "Next" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:584 +#: src/components/participant/ParticipantOnboardingCards.tsx:436 msgid "participant.button.next" msgstr "Next" @@ -9276,7 +9280,7 @@ msgid "Reads every 2 minutes. Refresh reads now." msgstr "" #. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:418 +#: src/components/participant/ParticipantOnboardingCards.tsx:313 msgid "participant.ready.to.begin" msgstr "Ready to Begin?" @@ -10766,8 +10770,8 @@ msgstr "" #: src/features/sidebar/views/org/OrgSettingsView.tsx:31 #: src/features/sidebar/views/org/OrgHomeView.tsx:130 #: src/features/sidebar/blocks/SettingsBlock.tsx:12 -#: src/components/layout/ParticipantHeader.tsx:121 -#: src/components/layout/ParticipantHeader.tsx:122 +#: src/components/layout/ParticipantHeader.tsx:124 +#: src/components/layout/ParticipantHeader.tsx:125 msgid "Settings" msgstr "Settings" @@ -10810,8 +10814,8 @@ msgstr "" msgid "Share link" msgstr "" -#: src/components/layout/ParticipantHeader.tsx:111 -#: src/components/layout/ParticipantHeader.tsx:112 +#: src/components/layout/ParticipantHeader.tsx:114 +#: src/components/layout/ParticipantHeader.tsx:115 msgid "Share portal" msgstr "Поділитися порталом" @@ -11026,11 +11030,6 @@ msgstr "Skip" msgid "participant.button.verify_prompt.skip" msgstr "Skip" -#. js-lingui-explicit-id -#: src/components/participant/ParticipantOnboardingCards.tsx:446 -msgid "participant.mic.check.button.skip" -msgstr "Skip" - #. js-lingui-explicit-id #: src/components/conversation/SelectAllConfirmationModal.tsx:601 msgid "select.all.modal.context.limit.reached.description" diff --git a/echo/frontend/src/locales/uk-UA.ts b/echo/frontend/src/locales/uk-UA.ts index af2175d7..9b994061 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\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message from dembrane\"],\"other\":[\"Messages from dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" isn't in this workspace yet.\"],\"RZUJFH\":[[\"0\"],\" isn't in this workspace yet. Ask a workspace admin to invite this collaborator.\"],\"iOmAhc\":[[\"0\"],\" isn't in this workspace yet. Send them a workspace invite and share this project when they join.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" people aren't in this workspace yet.\"],\"E6f0Mh\":[[\"0\"],\" people aren't in this workspace yet. Ask a workspace admin to invite them.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" views\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" people were already invited. The project is shared once they join.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" already has a pending invite for another project. Share this project once they join.\"],\"zB7Coe\":[[\"email\"],\" was added to the pending list but the invite email could not be sent. Resend it from Members.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invites sent. The project is shared once they join.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Надійніше завантаження аудіо\"],\"XPY0OE\":[\"Новий помічник і монітор наживо\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"sy1BvY\":[\"Портал учасників для запису розмов.\"],\"zm7GU7\":[\"Для обробки на основі згоди потрібне посилання на політику конфіденційності. Воно має починатися з http:// або https:// і містити не більше 255 символів.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Зручніший простір для розмов\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Типове значення облікового запису\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Додавайте розмови до контексту чату, використовуйте покращені шаблони запитань і параметри транскрипції. Виправлено підтверджувальні цитати й переклади.\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Спочатку додайте розмови до свого проекту\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"5phU36\":[\"Додати зображення\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"uqLJli\":[\"Add people by email. Anyone not in the workspace yet gets an invite and access to this project when they join.\"],\"1G8+6T\":[\"Add people by email. Anyone not in this workspace yet gets a workspace invite, and the project is shared with them when they join.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"QKlADn\":[\"Added \",[\"0\"],\" people\"],\"z9TWoF\":[\"Added \",[\"granted\"],\" people\"],\"q+wngh\":[\"Added and shared\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Усі випуски на GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Усі роки\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Already invited. The project is shared once they join.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"Сталася неочікувана помилка. Зазвичай допомагає перезавантаження сторінки або повернення на головну.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"Dzr23X\":[\"Announcements\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Щось іще?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Ask a workspace admin to invite this collaborator.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Обробка й завантаження аудіо стали надійнішими, а список розмов показує зрозуміліші підсумкові кількості.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio Tip\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"WI8FHU\":[\"Автоматично обирайте відповідні розмови для чату й переходьте до джерел. Підписуйтеся на сповіщення про звіти та користуйтеся покращеним завантаженням аудіо й тексту.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"9aZHfH\":[\"Back to settings\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"g7YpV4\":[\"До цієї історії випусків\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Кращий зворотний зв’язок і простіший супровід\"],\"5DnJa6\":[\"Кращі записи, більше способів відповідати\"],\"9GKCNF\":[\"Кращі завантаження, транскрипти й пошук\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Забронюйте дзвiнок з нами\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Виправлення помилок\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Скасувати перевизначення\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Чат з окремими розмовами.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Чати отримують автоматичні назви, а контекст розмов містить дати й тривалість. Переходьте до останнього повідомлення та користуйтеся зрозумілішим завантаженням аудіо.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Чати з чеською мовою тепер відповідають чеською замість англійської.\"],\"gLvHXQ\":[\"Перевіряйте й обирайте мікрофон перед записом, бачте показники якості аудіо та користуйтеся покращеною багатомовною транскрипцією. Обирайте підсумок, нові ідеї або власні режими відповіді.\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"WQUm5N\":[\"Перевірте текст і зображення та спробуйте ще раз\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Обирайте видимі, доступні за запрошенням або приватні простори. Учасники організації завантажуються швидше, після завантаження файлів ви повертаєтеся до розмов, а підсумки й об’єднання працюють надійніше.\"],\"okLwd9\":[\"Choose from your other projects\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Зрозуміліші джерела в чаті\"],\"xOlaOX\":[\"Зрозуміліший доступ для адміністраторів\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"EhtOYz\":[\"Обробка на основі згоди активна без посилання на політику конфіденційності. Додайте його там, де встановлено правову підставу: учасники мають мати змогу прочитати політику конфіденційності.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Розмова\"],\"EiHu8M\":[\"Conversation added to chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Посилання на розмови тепер зібрані під одним заголовком Джерела. Форма зворотного зв’язку може заповнювати вашу електронну адресу.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Сторінки розмов і завантаження даних спрощено. Автоматичний вибір розмов залишає більше місця для відповідей, а оголошення створюють менше повторних сповіщень.\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Підсумки більше не зависають у відповідних випадках обробки. Розмови, призупинені через обмеження безкоштовного плану, обробляються після переходу на інший план.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Conversation tags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Відгук не збережено\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Не вдалося надіслати повідомлення. Спробуйте ще раз\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Couldn't revoke invite\"],\"LPY4VY\":[\"Couldn't send invite\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Create Library\"],\"bUyyzw\":[\"Створюй кілька звітів для кожного проєкту та задавай власні інструкції для їх написання. Заплановані звіти (бета) охоплюють усі розмови, записані до обраного часу. Створюй, зберігай і закріплюй власні шаблони чату (бета). Цей випуск також додає закріплення проєктів, налаштування профілю та підтримку української мови в чаті.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Чеські розмови, чеські відповіді\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Дата\"],\"ItMGda\":[\"Діапазон дат\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Видалені проєкти та розмови, призупинені через ліміти тарифу, більше не спричиняють повторних спроб створити підсумки.\"],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane на вашій події?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"запрошення на подію dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot був нашим попереднім проєктом. Дякуємо організаторам, учасникам і всім, хто допомагав його створювати.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Опишіть проблему\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Визначає, на якій правовій підставі GDPR обробляються персональні дані цього проєкту.\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Готово, зв'яжіться зі мною\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"N8MP2s\":[\"Завантажуйте аудіо й упорядковуйте розмови\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Завантажуйте аудіо розмов, додавайте теги з панелі й використовуйте адаптивні підсумки. Виправлено редагування та попередній перегляд порталу.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Редагуйте звіти безпосередньо\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Самостійно редагуйте звіти, простіше перевіряйте мікрофони в порталі та бачте кращі індикатори завантаження й повідомлення про помилки.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"B7flm8\":[\"Досліджуйте повторювані теми в Library\"],\"EebTQD\":[\"Досліджуй історії та погляди за допомогою шаблону чату Narratives англійською та нідерландською.\"],\"HNnM2X\":[\"Переглянути архів dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Не вдалося перепланувати. Будь ласка, оберiть час далi у майбутньому та спробуйте знову.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"2roTVj\":[\"Відгук надіслано\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Фільтрувати випуски за роком\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"SdZBYB\":[\"Знаходьте потрібні розмови для запитання\"],\"oRQsgh\":[\"Знаходьте простори й продовжуйте розмови\"],\"p2j2po\":[\"Знаходьте своє місце в чаті\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Отримуйте відповідь під час розмови\"],\"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.\"],\"Pl6LQ+\":[\"Зв'язатися з нами\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Гарна відповідь\"],\"76gPWk\":[\"Зрозуміло\"],\"hjZBYK\":[\"Є дві хвилини? П'ять необов'язкових запитань допоможуть нам підготуватися.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"З керiвництвом\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"приховати запрошення на подію dembrane\"],\"V3NvRL\":[\"Приховати запрошення на подію dembrane можна в платному плані.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Варто уваги\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Організатор\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Відгук організатора\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"I understand\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Якщо ви помітили дані, видимі стороннім, доступ, якого хтось не повинен мати, або можливу вразливість безпеки, скористайтеся нашою <0>формою повідомлення про безпеку. Вона надходить до іншої команди швидшим шляхом. У термінових випадках напишіть на <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Зображення мають бути менші за \",[\"MAX_FILE_MB\"],\" МБ\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Покращення\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Неправильно або вигадано\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Представляємо Popcorn\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invite sent to \",[\"email\"],\". The project is shared once they join.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invite sent. The project is shared once they join.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invite to workspace and share\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"1BIvTp\":[\"Італійська для основних процесів\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Приєднатися до цієї сесії порталу\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Не давайте пристроям засинати під час запису\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Працюйте під час завантаження аудіо, шукайте теги й бачте хід транскрипції. Покращене відтворення та розумніший вибір розмов спрощують аналіз.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Latest\"],\"lchnsl\":[\"Останній випуск\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"J8VWes\":[\"Залиште свою електронну пошту, щоб ми могли з вами зв'язатися.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Правова підстава\"],\"vRXsmZ\":[\"Legal Basis\"],\"CopiEV\":[\"Правову підставу збережено\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Посилання на політику конфіденційності, яку бачать учасники\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Loading\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"З’єднання MCP дають твоєму агенту змогу знаходити проєкти, шукати розмови, читати транскрипти та переглядати документацію з контролем організації та явною згодою.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"azjxk1\":[\"Не відповідає на питання\"],\"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\"],\"f8jrkd\":[\"more\"],\"2FYpfJ\":[\"Більше\"],\"JcD7qf\":[\"More actions\"],\"rAPyBz\":[\"Надійніша анонімізація та запис\"],\"MmhZK+\":[\"Надійніші підсумки розмов\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Корисніший контекст чату\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Має бути щонайменше через 10 хвилин\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"Новi розмови додано пiсля цього звiту\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"/yIxDf\":[\"Нові функції\"],\"QnAEjj\":[\"Нові функції, покращення та виправлення в dembrane.\"],\"CSz4y/\":[\"Новий вигляд, нові функції\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Розмов ще немає. Ви можете запланувати звiт зараз, i розмови будуть включенi пiсля їх додавання.\"],\"oaDwXD\":[\"Типове значення не встановлено (діє керування клієнтом)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Відгуків ще немає.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"В організації поки нікого немає.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Приміток до випусків ще немає.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"z7dMhl\":[\"Додавати можна лише зображення\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Лише адміністратори робочого простору можуть змінювати правову підставу.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Відкрити запис\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"xam4uE\":[\"Необов'язкове запитання \",[\"0\"],\" з \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Адміністратори організації можуть приєднуватися до приватних просторів зі сторінки учасників. Параметри доступу пояснюють, коли спершу потрібно приєднатися до простору.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Організації, робочі простори та проєкти\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Організовуйте роботу в просторах, запрошуйте зовнішніх співпрацівників і спостерігачів та керуйте доступом із нової бічної панелі. Переміщуйте розмови між проєктами, а проєкти між просторами.\"],\"+g4lbW\":[\"Організовуйте роботу в організаціях, робочих просторах і проєктах та чіткіше керуйте доступом.\"],\"ucgZ0o\":[\"Організація\"],\"/IX/7x\":[\"Інше\"],\"x0FjQV\":[\"Наш перший великий випуск\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Перевизначено для цього проєкту\"],\"AR/qbs\":[\"Перевизначити для цього проєкту\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Учасники можуть запитати відповідь під час запису й читати її в міру надходження. Ведучі вмикають відповіді й налаштовують інструкцію в параметрах порталу.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Учасники можуть перевіряти результати та уточнювати відповіді. Нові режими й підказки допомагають аналізу, а двофакторна автентифікація доповнює вхід.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Оберiть дату\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Обрати час зараз\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording)\"],\"Lu1j4b\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"jjdudv\":[\"Погана відповідь\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Готуйте сеанси з редагованим посібником, збирайте електронні адреси й анонімізуйте транскрипти. Оновлення також додає власні логотипи й автоматичні назви розмов.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"DHhJ7s\":[\"Попередній\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL політики конфіденційності\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Пошук проєктів і розмов із брендованими QR-кодами.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Запитання\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Оцінка\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"Z5Tlsx\":[\"Зв'яжіться зі мною\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"VJScHU\":[\"Причина\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Пристрої надійніше залишаються активними. Виправлено вступні кроки для учасників, уточнення відповідей і вибір розмов у чаті Specific Details.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"/l7qFE\":[\"Recording started\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"References\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"/PACVa\":[\"Примітки до випусків\"],\"Gm7/K+\":[\"Примітки до випусків | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Відео випуску: \",[\"0\"]],\"tF5Smn\":[\"Перезавантажити сторінку\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Видалити \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Видалити перевизначення\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Запис\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Повідомити про проблему\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Повідомляйте про проблеми зображеннями або голосом, оцінюйте відповіді чату та запитуйте відповідний план. Установіть стандартну правову підставу для робочого простору.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"6g+4DA\":[\"Повідомлення надіслано. Дякуємо\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Перепланувати на\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"kX8Fjz\":[\"Відгук про відповідь\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Повернутися на головну\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Rows per page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Запускайте транскрипцію наявної розмови знову. Також оновлено документацію нідерландською.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Saving...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Відскануйте, щоб почати нову сесію порталу\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Заплановані звіти та власні шаблони\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Знайдіть і виберіть розмови для цього чату.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Обирайте для чату всі або відфільтровані розмови й фільтруйте натисканням на тег. Завантаження записів надійніше, а повідомлення під час високого навантаження зрозуміліші.\"],\"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\"],\"qtJxoV\":[\"Вибір кількох розмов\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"Dh99yE\":[\"Оберiть до 2 напрямкiв для вашого звiту\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Надіслати повідомлення\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Налаштовуйте перевірку результатів\"],\"Z8lGw6\":[\"Поділитися\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Поділитися порталом\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Share with \",[\"0\"],\" people\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Share with whole workspace\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Подiлiться своїм голосом, вiдсканувавши QR-код\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Коли ти ділишся приватним проєктом із людиною, яка ще не є учасником, тепер можна надіслати запрошення замість отримання помилки. Доступ надається після приєднання до робочого простору.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Показати QR-код\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Показувати запрошення\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" з \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"dE/7ox\":[\"Зручніший запис і швидші запитання\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanish\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Починайте запис без дублікатів розмов, бачте справжній час початку й використовуйте збережені шаблони запитань в Ask. Оновлення на бічній панелі показують кількість непрочитаних.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Гаразд\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"5dzzI6\":[\"Вимкнення доступне в платному плані.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"Системне типове значення\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Текстові внески та форми для подальшого зв’язку.\"],\"CPN34F\":[\"Thank you for participating!\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Дякуємо, ми зв'яжемося з вами протягом дня.\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Це не схоже на адресу електронної пошти.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"Це все, дякую\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"Перший великий випуск установлює для проєкту Business Source License 1.1.\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"Library чіткіше показує повторювані теми. Шаблони чату залишаються доступними, розмови мають прямі посилання, а за завантаженням легше стежити.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"Сторінка подяки завершується карткою, яка запрошує учасників провести власну подію з dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Встановлено обробку на основі згоди без посилання на політику конфіденційності. Додайте його, щоб налаштування залишалося дійсним: учасники мають мати змогу прочитати політику конфіденційності.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Цей портал зараз не приймає нові сесії.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Цей проєкт наслідуватиме успадковане налаштування: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Не подобається\"],\"Nuw8ty\":[\"Подобається\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Час\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"qgwLj6\":[\"Занадто довго або незрозуміло\"],\"lcsUaI\":[\"Надто багато повідомлень. Зачекайте кілька хвилин і спробуйте ще раз\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Транскрибуйте розмову повторно\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"5jqJzi\":[\"Анонімізація транскриптів і налаштування повторної транскрипції працюють узгодженіше. Тривалість запису залишається правильною після паузи й відновлення.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Перетворюй розмови на слайди наживо. Запускай живу сесію або аналіз на запит, презентуй групі та перевіряй джерела висновків.\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Перетворюйте розмови свого проєкту на живі слайди для спільного перегляду.\\n\\n- Стежте за новими темами під час розмов.\\n- Презентуйте висновки та перевіряйте розмови, на яких вони ґрунтуються.\\n- Запустіть сеанс наживо або аналіз за потреби.\\n\\nТакож: нові шаблони чату, підключення агентів і покращення для мобільних пристроїв.\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"До \",[\"MAX_FILES\"],\" зображень\"],\"lLehih\":[\"До \",[\"MAX_MESSAGE_CHARS\"],\" символів\"],\"ia8YsC\":[\"Незабаром\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Використати успадковане значення\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Використовуйте італійську для чату, звітів, транскрипції та вступних карток учасників. Повного перекладу інтерфейсу цей випуск не містив.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Перевіряйте результати й уточнюйте відповіді\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Переглянути примітки до випусків\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Хочете це на своїй події?\"],\"q7LnaV\":[\"Хочете провести подію з dembrane?\"],\"La34Yq\":[\"Хочете використати dembrane на своїй наступній події?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Перегляньте відео, щоб познайомитися з організаціями, робочими просторами та проєктами.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"mW8QSA\":[\"Ми не знайшли сторінку, яку ви шукали. Можливо, її перемістили.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Ми зв'яжемося з вами протягом дня. Хочете самі обрати час?\"],\"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.\"],\"FXjsEJ\":[\"Ми будемо раді почути вас. Якщо у вас є ідея, ви помітили невдалий переклад або просто хочете розповісти, як усе минає. Знайшли помилку? Скористайтеся кнопкою <0>Повідомити про проблему, щоб надіслати її зі знімками екрана.\"],\"XolQc4\":[\"Ми будемо раді почути вас. Якщо у вас є ідея, ви помітили невдалий переклад або просто хочете розповісти, як усе минає. Знайшли помилку? Скористайтеся кнопкою Повідомити про проблему на бічній панелі, щоб надіслати її зі знімками екрана.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Ласкаво просимо в режим Огляду! Я завантажив підсумки всіх ваших розмов. Запитуйте мене про закономірності, теми та висновки у ваших даних. Для точних цитат розпочніть нову бесіду в режимі Конкретного Контексту.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Що сталося? Вставте сюди знімок екрана, щоб додати його\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"Що пішло не так?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Працюйте з новим розмовним помічником, стежте за сеансами в моніторі наживо й використовуйте оновлену обробку транскрипції.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Робочий простір / проєкт\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Типове значення робочого простору\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Налаштування робочого простору\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Пишіть власні інструкції перевірки, генеруйте результати мовою проєкту й нагадуйте учасникам перевірити їх перед завершенням. Налаштовуйте кожну правову підставу.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Неправильна мова або тон\"],\"MNTYHt\":[\"Неправильні джерела\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"You can change this later in workspace settings after you add billing details.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"vy@pryklad.ua\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Ваша електронна пошта\"],\"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.\"],\"vaTeZ3\":[\"Ваш відгук і ця відповідь надходять команді dembrane.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"VSneAo\":[\"Ваше ім'я, електронна пошта та поточна сторінка додаються, щоб ми могли з вами зв'язатися.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"DrJCbp\":[\"Вашу відповідь записано. Тепер ви можете закрити цю вкладку. Ви також можете записати ще одну розмову або поділитися QR-кодом, щоб інші могли долучитися.\"],\"7i36j4\":[\"Вашу відповідь записано. Тепер ви можете закрити цю вкладку. Ви також можете поділитися QR-кодом, щоб інші могли долучитися, або записати ще одну розмову.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"You are not authenticated\":[\"You are not authenticated\"],\"You don't have permission to access this.\":[\"You don't have permission to access this.\"],\"Resource not found\":[\"Resource not found\"],\"Server error\":[\"Server error\"],\"Something went wrong\":[\"Something went wrong\"],\"We're preparing your workspace.\":[\"We're preparing your workspace.\"],\"Preparing your dashboard\":[\"Preparing your dashboard\"],\"Welcome back\":[\"Welcome back\"],\"participant.button.back.microphone\":[\"Back\"],\"participant.mic.check.button.skip\":[\"Skip\"],\"HO+GhS\":[\" · \",[\"heldBack\"],\" held back\"],\"ELsePE\":[\" · failed\"],\"library.generate.duration.message\":[\" Generating library can take up to an hour.\"],\"uDvV8j\":[\" Submit\"],\"aMNEbK\":[\" Unsubscribe from Notifications\"],\"participant.modal.echo.info.title.generic\":[\"\\\"ECHO\\\" available soon\"],\"participant.modal.echo.info.title.go.deeper\":[\"\\\"Explore\\\" available soon\"],\"HaeOJo\":[\"\\\"made with dembrane\\\" stays on the screen.\"],\"participant.modal.echo.info.title.concrete\":[\"\\\"Verify\\\" available soon\"],\"XGun3K\":[\"(direct workspace access)\"],\"ls1N1w\":[\"(missing)\"],\"B/gRsg\":[\"(none)\"],\"NzluOx\":[\"(optional)\"],\"GNqfpI\":[\"(Partner)\"],\"3lXqzm\":[\"(unknown)\"],\"dDUgzP\":[\"(You)\"],\"sqIqzz\":[[\"0\",\"plural\",{\"one\":[\"(\",\"#\",\" workspace)\"],\"other\":[\"(\",\"#\",\" workspaces)\"]}]],\"6uAkgs\":[[\"0\",\"plural\",{\"one\":[\"#\",\" agreement\"],\"other\":[\"#\",\" agreements\"]}]],\"7TGH6l\":[[\"0\",\"plural\",{\"one\":[\"#\",\" audio stopped\"],\"other\":[\"#\",\" audio stopped\"]}]],\"VWtG3I\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation could not be added to this chat.\"],\"other\":[\"#\",\" conversations could not be added to this chat.\"]}]],\"+cZTZi\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation will be hidden along with it.\"],\"other\":[\"#\",\" conversations will be hidden along with it.\"]}]],\"V/J+NZ\":[[\"0\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}]],\"uHGFwN\":[[\"0\",\"plural\",{\"one\":[\"#\",\" live\"],\"other\":[\"#\",\" live\"]}]],\"pkIIls\":[[\"0\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"cEPfGu\":[[\"0\",\"plural\",{\"one\":[\"#\",\" offline\"],\"other\":[\"#\",\" offline\"]}]],\"4Qph0N\":[[\"0\",\"plural\",{\"one\":[\"#\",\" payment\"],\"other\":[\"#\",\" payments\"]}]],\"71onWg\":[[\"0\",\"plural\",{\"one\":[\"#\",\" project\"],\"other\":[\"#\",\" projects\"]}]],\"Tqs9eY\":[[\"0\",\"plural\",{\"one\":[\"#\",\" selected\"],\"other\":[\"#\",\" selected\"]}]],\"e6iRhF\":[[\"0\",\"plural\",{\"one\":[\"#\",\" tag\"],\"other\":[\"#\",\" tags\"]}]],\"uACelL\":[[\"0\",\"plural\",{\"one\":[\"#\",\" transcribing\"],\"other\":[\"#\",\" transcribing\"]}]],\"hC6J5L\":[[\"0\",\"plural\",{\"one\":[\"#\",\" with errors\"],\"other\":[\"#\",\" with errors\"]}]],\"fZQUHc\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word added\"],\"other\":[\"#\",\" words added\"]}]],\"qLX2qo\":[[\"0\",\"plural\",{\"one\":[\"#\",\" word removed\"],\"other\":[\"#\",\" words removed\"]}]],\"zxwWT7\":[[\"0\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"Bt5adm\":[[\"0\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation:\"],\"other\":[\"Focusing on \",\"#\",\" conversations:\"]}]],\"gK37YM\":[[\"0\",\"plural\",{\"one\":[\"Message from dembrane\"],\"other\":[\"Messages from dembrane\"]}]],\"ZGPwH7\":[[\"0\",\"plural\",{\"one\":[\"Move \",\"#\",\" project to another workspace.\"],\"other\":[\"Move \",\"#\",\" projects to another workspace.\"]}]],\"e+yL+K\":[[\"0\",\"plural\",{\"one\":[\"Show what changes (\",\"#\",\" field)\"],\"other\":[\"Show what changes (\",\"#\",\" fields)\"]}]],\"select.all.modal.tags\":[[\"0\",\"plural\",{\"one\":[\"Tag:\"],\"other\":[\"Tags:\"]}]],\"kdJmhV\":[[\"0\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation:\"],\"other\":[\"Using \",\"#\",\" conversations:\"]}]],\"J/hVSQ\":[[\"0\"]],\"Ovt54W\":[[\"0\"],\" (default)\"],\"r/Wlfo\":[[\"0\"],\" / seat / month × \",[\"1\"],\", billed yearly. Excludes VAT.\"],\"bBa8T+\":[[\"0\"],\" / seat × \",[\"1\"],\". Excludes VAT.\"],\"eysOsc\":[[\"0\"],\" / seat × \",[\"1\"],\". Not charged after this period.\"],\"UJVL32\":[[\"0\"],\" accounts, \",[\"1\"],\" workspaces, \",[\"2\"],\" active\"],\"xfMOtJ\":[[\"0\"],\" across all\"],\"RKutZY\":[[\"0\"],\" active\"],\"select.all.modal.added.count\":[[\"0\"],\" added\"],\"q87k+2\":[[\"0\"],\" added from your organisation\"],\"RnxanU\":[[\"0\"],\" calls this month\"],\"C2sVdo\":[[\"0\"],\" conversations\"],\"9Q4Q7S\":[[\"0\"],\" conversations · \",[\"phrases\"],\" phrases · \",[\"validated\"],\" validated\"],\"2Th9D6\":[[\"0\"],\" Conversations • Edited \",[\"1\"]],\"yQYU7s\":[[\"0\"],\" deleted\"],\"6Re9LE\":[[\"0\"],\" from dembrane\"],\"1LjQoy\":[[\"0\"],\" held back\"],\"VNUbEm\":[[\"0\"],\" isn't in this workspace yet.\"],\"RZUJFH\":[[\"0\"],\" isn't in this workspace yet. Ask a workspace admin to invite this collaborator.\"],\"iOmAhc\":[[\"0\"],\" isn't in this workspace yet. Send them a workspace invite and share this project when they join.\"],\"COnw8D\":[[\"0\"],\" logo\"],\"KmVMRe\":[[\"0\"],\" loses access immediately. To connect it again, start over from the agent.\"],\"select.all.modal.not.added.count\":[[\"0\"],\" not added\"],\"tiL2vY\":[[\"0\"],\" of \",[\"1\"],\" calls this month (free plan)\"],\"nqIXFG\":[[\"0\"],\" of \",[\"1\"],\" members are trained.\"],\"uQcaBv\":[[\"0\"],\" of \",[\"1\"],\" trained\"],\"lOn63U\":[[\"0\"],\" people aren't in this workspace yet.\"],\"E6f0Mh\":[[\"0\"],\" people aren't in this workspace yet. Ask a workspace admin to invite them.\"],\"IAy/YD\":[[\"0\"],\" phrases\"],\"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\"],\"z9suu0\":[[\"0\"],\" total rises to \",[\"1\"],\" when \",[\"pendingInvites\"],\" pending \",[\"2\"],\" accepted\"],\"9y5CrY\":[[\"0\"],\" validated\"],\"1/+09d\":[[\"0\"],\" views\"],\"D5tQMO\":[[\"0\"],\" wants MCP access to dembrane\"],\"Sx2eFn\":[[\"0\"],\" workspaces · \",[\"1\"],\" paid seats · \",[\"2\"],\" free observers · \",[\"3\"],\" in \",[\"4\"]],\"Y7cydQ\":[[\"0\"],\" workspaces, \",[\"1\"],\" seats pooled\",[\"2\"]],\"UJhAzj\":[[\"0\"],\", workspace id \",[\"1\"]],\"DtMhBU\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}]],\"1dY9WP\":[[\"accessCount\",\"plural\",{\"one\":[\"#\",\" person\"],\"other\":[\"#\",\" people\"]}],\" in \",[\"0\"]],\"VvuSoW\":[[\"alreadyPending\"],\" people were already invited. The project is shared once they join.\"],\"ZbBmkS\":[[\"clientName\"],\" and the company running it will receive the conversation content you allow.\"],\"7ONDLH\":[[\"compedCount\",\"plural\",{\"one\":[\"#\",\" comped\"],\"other\":[\"#\",\" comped\"]}]],\"nC/4NM\":[[\"conversationCount\"],\" Conversations • Edited \",[\"0\"]],\"BXWuuj\":[[\"conversationCount\"],\" selected\"],\"q8xwQo\":[[\"conversations\"],\" conversations with a transcript, about \",[\"minutes\"],\" minutes of talk. Ready.\"],\"lEaS4c\":[[\"count\"],\" history entries\"],\"QZiK6/\":[[\"currentCadence\"],\" min\"],\"TusXkS\":[[\"days\"],\" days\"],\"j8KSnb\":[[\"discountPct\"],\"% discount applied\"],\"0jXKsc\":[[\"email\"],\" already has a pending invite for another project. Share this project once they join.\"],\"zB7Coe\":[[\"email\"],\" was added to the pending list but the invite email could not be sent. Resend it from Members.\"],\"oU6g2E\":[[\"empty\",\"plural\",{\"one\":[\"#\",\" conversation has no transcript yet, so it was left out.\"],\"other\":[\"#\",\" conversations have no transcript yet, so they were left out.\"]}]],\"library.conversations.to.be.analyzed\":[[\"finishedConversationsCount\",\"plural\",{\"one\":[\"Currently \",\"#\",\" conversation is ready to be analyzed.\"],\"other\":[\"Currently \",\"#\",\" conversations are ready to be analyzed.\"]}]],\"Lnd5u/\":[[\"from\"],\" → \",[\"to\"]],\"Z5IbhM\":[[\"host\"],\" will read your answers before the call and brings a draft offer.\"],\"XrsLMx\":[[\"invalidCount\"],\" addresses need attention\"],\"GxhS2s\":[[\"inviterName\"],\" invited you to join \",[\"resolvedWorkspaceName\"]],\"rR3Y66\":[[\"liveProjectCount\",\"plural\",{\"one\":[\"Delete the \",\"#\",\" project in this workspace before deleting the workspace itself.\"],\"other\":[\"Delete the \",\"#\",\" projects in this workspace before deleting the workspace itself.\"]}]],\"YtOXS1\":[[\"name\"],\"'s conversation\"],\"lJ6xri\":[[\"name\"],\"'s transcript excerpt\"],\"P9UcSP\":[[\"names\"],\" and \",[\"extra\"],\" more\"],\"s95FYX\":[[\"nextCadence\"],\" min\"],\"GE8hF/\":[[\"overflow\"],\" more people\"],\"tTf9sn\":[[\"overLimit\",\"plural\",{\"one\":[\"#\",\" conversation did not fit in this chat. Start another chat to cover the rest.\"],\"other\":[\"#\",\" conversations did not fit in this chat. Start another chat to cover the rest.\"]}]],\"nBVNW0\":[[\"pendingInvites\"],\" invite(s) pending. Counted once accepted.\"],\"lEeV+7\":[[\"person\"],\" will lose access to every workspace in this organisation. Direct-only workspace invites stay intact.\"],\"be9jwp\":[[\"pickedCount\",\"plural\",{\"one\":[\"Focusing on \",\"#\",\" conversation\"],\"other\":[\"Focusing on \",\"#\",\" conversations\"]}]],\"Ln0wt8\":[[\"pickedCount\",\"plural\",{\"one\":[\"Using \",\"#\",\" conversation\"],\"other\":[\"Using \",\"#\",\" conversations\"]}]],\"TVD5At\":[[\"readingNow\"],\" reading now\"],\"/+py6Q\":[[\"seats\"],\" seats\"],\"ArGmEy\":[[\"selectedCount\"],\" of \",[\"totalCount\"],\" fields selected. Accept applies only the ticked ones.\"],\"odzwX/\":[[\"sent\"],\" invites sent\"],\"l8fzDs\":[[\"sent\"],\" invites sent. The project is shared once they join.\"],\"dmKaRr\":[[\"sentCount\"],\" invites sent.\"],\"qzj8O/\":[[\"tag\"],\" (preselected)\"],\"ifWKVu\":[[\"totalActive\",\"plural\",{\"one\":[\"#\",\" active\"],\"other\":[\"#\",\" active\"]}]],\"8LKbAw\":[[\"totalOrganisations\",\"plural\",{\"one\":[\"#\",\" organisation\"],\"other\":[\"#\",\" organisations\"]}]],\"oJQHsS\":[[\"totalWorkspaces\",\"plural\",{\"one\":[\"#\",\" workspace\"],\"other\":[\"#\",\" workspaces\"]}]],\"library.conversations.still.processing\":[[\"unfinishedConversationsCount\"],\" still processing.\"],\"ZpJ0wx\":[\"*Transcription in progress.*\"],\"lDyo+I\":[\"/seat/mo · billed annually\"],\"u5M/5B\":[\"/seat/mo · billed monthly\"],\"RuXuwk\":[\"+\",[\"0\"],\" more\"],\"ynBObK\":[\"+\",[\"hiddenCount\"],\" conversations\"],\"VAhv7y\":[\"€\",[\"0\"],\" each, beyond the included \",[\"1\"]],\"MhZM6i\":[\"€\",[\"0\"],\" per extra participant\"],\"+Tssgi\":[\"€150 / seat / month\"],\"NPPhXn\":[\"€20 / seat / month\"],\"XlCmuS\":[\"€75 / seat / month\"],\"LeFXS1\":[\"0 Aspects\"],\"r3PXp+\":[\"1 address needs attention\"],\"N0QWsI\":[\"1 h recording\"],\"2BWxOx\":[\"1 history entry\"],\"vp5vfW\":[\"1 hour\"],\"5pm7gt\":[\"1 view\"],\"AeSuqs\":[\"1. You provide a URL where you want to receive notifications\"],\"9u4NIb\":[\"16 to 40.\"],\"WehR9U\":[\"2 months ago\"],\"gGr93M\":[\"2 to 5.\"],\"L9boOH\":[\"2. When a conversation or report event happens, we automatically send the data to your URL\"],\"VaA9mu\":[\"24 hours\"],\"RkmegJ\":[\"250 to 1000.\"],\"7ZrpGs\":[\"3 days\"],\"lxBOZP\":[\"3 months ago\"],\"WiUXLq\":[\"3. Your system receives the data and can act on it (e.g., save to a database, send an email, update a spreadsheet)\"],\"c5EE1L\":[\"50 to 250.\"],\"rV+scO\":[\"6 to 15.\"],\"34Qhax\":[\"8 hours\"],\"aFDk6y\":[\"A couple of quick questions and you're in.\"],\"Ddr+Kq\":[\"A dembrane staff app_user id. The server checks the @dembrane.com address.\"],\"iqgpeQ\":[\"A downgrade applies the matrix downgrade effects and notifies workspace admins. A paid tier puts the account on dembrane-managed billing.\"],\"thilZ0\":[\"A downgrade limits features immediately.\"],\"wsTrfq\":[\"A first version will appear here when it is ready.\"],\"D+aQ7R\":[\"A friendly name to identify this webhook\"],\"GrwZLh\":[\"A Help us translate link invites community translations. Full Italian interface translation is not included.\"],\"HHPCqV\":[\"A live page in your Library, and live slides for the room, both made from your conversations while a session runs. Early beta: they may change or be removed.\"],\"KEXSHH\":[\"Надійніше завантаження аудіо\"],\"XPY0OE\":[\"Новий помічник і монітор наживо\"],\"z9VxrW\":[\"A new report will be automatically generated and published at the scheduled time.\"],\"sy1BvY\":[\"Портал учасників для запису розмов.\"],\"zm7GU7\":[\"Для обробки на основі згоди потрібне посилання на політику конфіденційності. Воно має починатися з http:// або https:// і містити не більше 255 символів.\"],\"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.\"],\"lN8IO2\":[\"A rough number or \\\"not sure\\\". Either is useful.\"],\"fzZoY8\":[\"A sample session, not your data. Yours will look like this.\"],\"Ky83tq\":[\"A seat is one member. Add or remove members in each workspace's People tab; your next charge follows automatically.\"],\"hyYKSp\":[\"A seat is one member. Seats stay available until the plan ends; changes won't be charged.\"],\"SpaKQm\":[\"A separate data-ownership and billing context. It can be handed off to that organisation later with no data movement.\"],\"GhjsDN\":[\"A short blurb shown on the organisation overview.\"],\"F9QjSt\":[\"A short note on what this project is about. You can edit it later.\"],\"dNbbpo\":[\"Зручніший простір для розмов\"],\"j2mO8+\":[\"a workspace\"],\"kO7Ugp\":[\"About the suggested project update: \",[\"hostNote\"]],\"2rz0sA\":[\"About you\"],\"g3UF2V\":[\"Accept\"],\"Q74FZp\":[\"Accept and join\"],\"JAvG0l\":[\"Accepted terms\"],\"LuXP9q\":[\"Access\"],\"rOvy9I\":[\"Access controls explain when you need to join a workspace first.\"],\"qLcf0w\":[\"Access ends on\"],\"5RckdQ\":[\"Access expires after\"],\"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\"],\"K3wUdw\":[\"Типове значення облікового запису\"],\"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\"],\"XJOV1Y\":[\"Activity\"],\"m16xKo\":[\"Add\"],\"4USg1N\":[\"Add \",[\"0\"],\" to \",[\"1\"],\" as <0>\",[\"2\"],\"?\"],\"/Eep1N\":[\"Add a conversation directly to chat context.\"],\"uyE3Y1\":[\"Add a member and pick their access.\"],\"o1Svup\":[\"Add a name and a prompt before applying.\"],\"kKuKkg\":[\"Add a name, description, and framing.\"],\"5xxrhm\":[\"Add a note\"],\"Cf2umO\":[\"Add a project goal before saving.\"],\"pVTvYj\":[\"add a workspace\"],\"1m+3Z3\":[\"Add additional context (Optional)\"],\"Se1KZw\":[\"Add all that apply\"],\"L1uMzn\":[\"Add another\"],\"LvDRbs\":[\"Add by email\"],\"FXfXPD\":[\"Add conversation tags from the dashboard.\"],\"XXmtxs\":[\"Додавайте розмови до контексту чату, використовуйте покращені шаблони запитань і параметри транскрипції. Виправлено підтверджувальні цитати й переклади.\"],\"select.all.modal.title.add\":[\"Add Conversations to Context\"],\"8T7YRB\":[\"Спочатку додайте розмови до свого проекту\"],\"LL1rvo\":[\"Add Custom Topic\"],\"0qHnFM\":[\"Add goal text before applying.\"],\"5phU36\":[\"Додати зображення\"],\"1xDwr8\":[\"Add key terms or proper nouns to improve transcript quality and accuracy.\"],\"ndpRPm\":[\"Add new recordings to this project. Files you upload here will be processed and appear in conversations.\"],\"uqLJli\":[\"Add people by email. Anyone not in the workspace yet gets an invite and access to this project when they join.\"],\"1G8+6T\":[\"Add people by email. Anyone not in this workspace yet gets a workspace invite, and the project is shared with them when they join.\"],\"ymW+mN\":[\"Add people from your organisation\"],\"Ralayn\":[\"Add Tag\"],\"add.tag.filter.modal.title\":[\"Add Tag to Filters\"],\"IKoyMv\":[\"Add Tags\"],\"b6Sm+u\":[\"Add to \",[\"0\"],\"?\"],\"jo1zkp\":[\"Add to chat\"],\"add.tag.filter.modal.add\":[\"Add to Filters\"],\"NffMsn\":[\"Add to this chat\"],\"P4Egjx\":[\"Add to workspaces\"],\"6Xm4X2\":[\"Add Topic\"],\"AHaRrL\":[\"Add translations\"],\"yFRVHT\":[\"Add verification prompt\"],\"QN2F+7\":[\"Add Webhook\"],\"UZ07em\":[\"Add Your First Webhook\"],\"x2dB2O\":[\"add your logo\"],\"hp8OtS\":[\"Added\"],\"select.all.modal.added\":[\"Added\"],\"QKlADn\":[\"Added \",[\"0\"],\" people\"],\"z9TWoF\":[\"Added \",[\"granted\"],\" people\"],\"q+wngh\":[\"Added and shared\"],\"Na90E+\":[\"Added emails\"],\"uVX6Vk\":[\"Added to workspace\"],\"yg5kon\":[\"Added you to \",[\"okCount\"],\" workspaces\"],\"ZncK2m\":[\"Added you to \",[\"okCount\"],\". \",[\"0\"],\" couldn't be added, try again.\"],\"lQmOCQ\":[\"Added you to 1 workspace\"],\"54QrMC\":[\"Adding \",[\"pendingCount\"],\" more will put this workspace over its seat cap. Overage seats are billed at the workspace's tier rate.\"],\"select.all.modal.add.without.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to the chat\"],\"select.all.modal.add.with.filters\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" with the following filters:\"],\"select.all.modal.add.without.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\"\"],\"select.all.modal.add.with.filters.more\":[\"Adding <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" more conversation\"],\"other\":[\"#\",\" more conversations\"]}],\" with the following filters:\"],\"select.all.modal.loading.title\":[\"Adding Conversations\"],\"Du6bPw\":[\"Address\"],\"NY/x1b\":[\"Address line 1\"],\"cormHa\":[\"Address line 2\"],\"CA/Ul9\":[\"Adjust the base font size for the interface\"],\"U3pytU\":[\"Admin\"],\"84oArf\":[\"Admin dashboard\"],\"HJ47wa\":[\"Admin here via organisation role\"],\"uYQEe4\":[\"Admin, dembrane\"],\"eC58+P\":[\"Admins\"],\"CLlKPV\":[\"Admins can reach every workspace in this organisation. Members and externals only see the workspaces they've been given access to.\"],\"sxkWRg\":[\"Advanced\"],\"OaKXud\":[\"Advanced (Tips and best practices)\"],\"JiIKww\":[\"Advanced Settings\"],\"iEQQyu\":[\"Agent\"],\"ftJZVq\":[\"Agent run failed\"],\"6iJVJD\":[\"Agentic\"],\"vaeE5W\":[\"Agentic - Tool-driven execution\"],\"I1JKlv\":[\"Agentic chat\"],\"N40H+G\":[\"All\"],\"cF7bEt\":[\"All actions\"],\"O1367B\":[\"All collections\"],\"gvykaX\":[\"All Conversations\"],\"u/fl/S\":[\"All files were uploaded successfully.\"],\"zG6Ooi\":[\"All projects\"],\"ynXPFB\":[\"All read\"],\"52imBJ\":[\"Усі випуски на GitHub\"],\"W/4/mV\":[\"All seats are taken on this tier. Remove a member or external, or upgrade the workspace tier to invite more people.\"],\"XQ7aEI\":[\"All seats are taken. Free a seat or upgrade to invite more.\"],\"X3FPsl\":[\"All seats taken\"],\"NGO2th\":[\"All Templates\"],\"IOEBQh\":[\"All tiers\"],\"dYoI9C\":[\"All visible conversations selected\"],\"AWdiC+\":[\"All workspaces\"],\"wm3Zlr\":[\"Усі роки\"],\"h7peZQ\":[\"Allow\"],\"Ro8+2I\":[\"Allow dembrane staff to access this workspace for support\"],\"6Yg3n+\":[\"Allow MCP access\"],\"TyWqnD\":[\"Allow MCP access in \",[\"0\"]],\"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\"],\"CopMGJ\":[\"Already invited. The project is shared once they join.\"],\"3lBGEC\":[\"Already used in this chat\"],\"KRrfG3\":[\"Also allow it to change project settings\"],\"Xc9emY\":[\"Always on, it lives on our website\"],\"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.\"],\"raDt88\":[\"An AI assistant you connect, and the company that runs it, will receive the conversations and projects you allow. dembrane is not responsible for what they do with that data. You can revoke a connection at any time.\"],\"1gf/FC\":[\"An assembly.\"],\"jIoHDG\":[\"An email notification will be sent to \",[\"0\"],\" participant\",[\"1\"],\". Do you want to proceed?\"],\"8q/YVi\":[\"An error occurred while loading the Portal. Please contact the support team.\"],\"XyOToQ\":[\"An error occurred.\"],\"iRgQMM\":[\"An event or a workshop.\"],\"zqhMd0\":[\"Сталася неочікувана помилка. Зазвичай допомагає перезавантаження сторінки або повернення на головну.\"],\"F4cOH1\":[\"Analysis Language\"],\"ZlwDi6\":[\"Analytics\"],\"1x2m6d\":[\"Analyze these elements with depth and nuance. Please:\\n\\nFocus on unexpected connections and contrasts\\nGo beyond obvious surface-level comparisons\\nIdentify hidden patterns that most analyses miss\\nMaintain analytical rigor while being engaging\\nUse examples that illuminate deeper principles\\nStructure the analysis to build understanding\\nDraw insights that challenge conventional wisdom\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"Dzr23X\":[\"Announcements\"],\"w6zk79\":[\"Announcements no longer create repeated notification popups.\"],\"n9aGa5\":[\"Announcements without an expiry date are visible again.\"],\"AWZZ+1\":[\"Anonymise personal information in transcripts. Anonymised conversations disable audio playback and download.\"],\"J8yrvq\":[\"Anonymise transcripts\"],\"QgPWYr\":[\"Anonymised transcripts have clearer labels.\"],\"M8cgTa\":[\"Anonymize transcript\"],\"gd1W+U\":[\"Anonymize Transcripts\"],\"YdiKaK\":[\"anonymized conversation\"],\"iPiP6k\":[\"Anonymized conversation\"],\"D9CFV5\":[\"Anonymous\"],\"Pg5/xn\":[\"Anonymous participant\"],\"SEllfL\":[\"Anonymous visitor\"],\"t2jB92\":[\"Another admin or owner will need to restore you.\"],\"6GojWN\":[\"Any tag\"],\"FnbCx1\":[\"Anyone in your organisation can find this workspace. Admins can join; members can request access.\"],\"ZpsmSQ\":[\"Anyone with the link can watch. No login, and no transcripts.\"],\"7IKc8P\":[\"Anything else you might need?\"],\"isAHo8\":[\"Anything else you'd like to share\"],\"kR5k2j\":[\"Щось іще?\"],\"N1Wkmw\":[\"Anything we could have done better?\"],\"sMMWxH\":[\"Anything you want to add\"],\"aAIQg2\":[\"Appearance\"],\"9+QMn9\":[\"Applied. The canvas now shows this design and keeps it fresh.\"],\"HMzKuc\":[\"Applies this wording and refresh behavior to the existing canvas.\"],\"DB8zMK\":[\"Apply\"],\"4TwsNi\":[\"Apply template\"],\"AhHy/i\":[\"Applying a template shows a confirmation with Undo.\"],\"5swDY2\":[\"Approaching a limit this month\"],\"z0ccuc\":[\"Approaching limit: \",[\"0\"],\" / 32,000 characters\"],\"Z7ZXbT\":[\"Approve\"],\"participant.concrete.action.button.approve\":[\"Approve\"],\"m14CS3\":[\"Approve for 24 hours\"],\"1kA9Tv\":[\"Approve support access\"],\"conversation.verified.approved\":[\"Approved\"],\"tq+4rb\":[\"Are you sure you want to delete the webhook \\\"\",[\"0\"],\"\\\"? This action cannot be undone.\"],\"uqhbrg\":[\"Are you sure you want to delete this chat? This action cannot be undone.\"],\"Q5Z2wp\":[\"Are you sure you want to delete this conversation? This action cannot be undone.\"],\"yrk3z3\":[\"Are you sure you want to delete this custom topic? This cannot be undone.\"],\"YF1Re1\":[\"Are you sure you want to delete this project? This action cannot be undone.\"],\"ELQ+fw\":[\"Are you sure you want to delete this report? This action cannot be undone.\"],\"aUsm4A\":[\"Are you sure you want to delete this tag? This will remove the tag from existing conversations that contain it.\"],\"e3BGhi\":[\"Are you sure you want to delete this template? This cannot be undone.\"],\"participant.modal.finish.message.text.mode\":[\"Are you sure you want to finish the conversation?\"],\"sOql0x\":[\"Are you sure you want to generate the library? This will take a while and overwrite your current views and insights.\"],\"UXCOMn\":[\"Are you sure you want to regenerate the summary? You will lose the current summary.\"],\"ZmeZPn\":[\"Are you sure you want to remove your avatar?\"],\"wQ5jM6\":[\"Are you sure you want to remove your custom logo? The default dembrane logo will be used instead.\"],\"Wh64Gd\":[\"Arranged with dembrane\"],\"F+vBv0\":[\"Ask\"],\"VttPAe\":[\"Ask | dembrane\"],\"Djkxtl\":[\"Ask a question about the conversations in this project, or get help setting it up. Any change is proposed for review first, and nothing is saved until it's approved.\"],\"2QOQAV\":[\"Ask a workspace admin for an invite, or pick a different workspace from your list.\"],\"Z6YTnr\":[\"Ask a workspace admin to invite this collaborator.\"],\"jPTnVt\":[\"Ask about the app.\"],\"7edAaq\":[\"Ask about these\"],\"9pDK3A\":[\"Ask about your conversations...\"],\"lCenB6\":[\"Ask for Email?\"],\"Rjlwvz\":[\"Ask for Name?\"],\"+8Zvos\":[\"Ask for participant email addresses after a conversation ends.\"],\"KmS8XG\":[\"Ask in chat when you want a live view of the conversations. The first canvas will stay here.\"],\"ZwM3p2\":[\"ask more in chat\"],\"6S+qQR\":[\"Ask participants for their email\"],\"I+vZ9W\":[\"Ask participants for their name\"],\"4WAt+h\":[\"Ask your admin\"],\"84NoFa\":[\"Aspect\"],\"HkigHK\":[\"Aspects\"],\"kaEPzR\":[\"Assign\"],\"d/bvvp\":[\"Assistant\"],\"MPY6SL\":[\"Assistant context\"],\"aYfeOI\":[\"Assistant memory\"],\"bU39dx\":[\"At least 8 characters\"],\"iF1OFS\":[\"At least one topic must be selected to enable Verify\"],\"quMOkF\":[\"At the end of this period\"],\"8Fp5MP\":[\"At your busiest moment, how many conversations will be running at once?\"],\"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\"],\"9+kvhX\":[\"Audio and text uploads feed into conversation analysis.\"],\"kHN5Zx\":[\"Audio download not available for anonymized conversations\"],\"N2tS3I\":[\"Audio is coming in\"],\"SLvg/d\":[\"Audio playback not available for anonymized conversations\"],\"3z8PNB\":[\"Audio playback, transcription and automatic conversation selection are improved.\"],\"7xo9jH\":[\"Обробка й завантаження аудіо стали надійнішими, а список розмов показує зрозуміліші підсумкові кількості.\"],\"oyIxJL\":[\"Audio processing and uploads are more robust.\"],\"IOBCIN\":[\"Audio Tip\"],\"HzJSSc\":[\"Audio upload buttons and dialogs respond correctly to clicks.\"],\"0ih2hV\":[\"Audio uploads handle VPN connections more reliably.\"],\"tQsOBQ\":[\"Audio uploads return you to the conversation list.\"],\"OCG9c0\":[\"Audio was coming in but stopped. They may have lost connection or locked their phone.\"],\"y2W2Hg\":[\"Audit logs\"],\"aL1eBt\":[\"Audit logs exported to CSV\"],\"mS51hl\":[\"Audit logs exported to JSON\"],\"z8CQX2\":[\"Authenticator code\"],\"R+PyK8\":[\"Auto-generate titles\"],\"voAvDv\":[\"Auto-generate Titles\"],\"Wrpmw7\":[\"Auto-generated or enter manually\"],\"OFsXNQ\":[\"Automatic conversation selection leaves more room for chat answers.\"],\"wcnfVG\":[\"Automatic conversation titles remain visible when a name is removed.\"],\"mA167s\":[\"Automatic summaries, conversation merging and durations work more reliably.\"],\"8kH9im\":[\"Automatic titles and draft tags\"],\"dY4Vk3\":[\"Automatically generate a short topic-based title for each conversation after summarization. The title describes what was discussed, not who participated. The participant's original name is preserved separately, if they provided one.\"],\"F95AYw\":[\"Automatically save transcripts to your CRM or database\"],\"WI8FHU\":[\"Автоматично обирайте відповідні розмови для чату й переходьте до джерел. Підписуйтеся на сповіщення про звіти та користуйтеся покращеним завантаженням аудіо й тексту.\"],\"+OjHg0\":[\"Automatically select relevant conversations for your question.\"],\"zUbSgC\":[\"Automatically send conversation data to your other tools and services when events occur.\"],\"AUb80i\":[\"Available on a paid plan\"],\"KKfW2W\":[\"Avatar removed\"],\"jSKImf\":[\"Avatar updated\"],\"vhjbKr\":[\"Away\"],\"iH8pgl\":[\"Back\"],\"participant.button.back\":[\"Back\"],\"BT2r2q\":[\"Back to dembrane\"],\"aBqveh\":[\"Back to live\"],\"7rgUr5\":[\"Back to my workspaces\"],\"/9nVLo\":[\"Back to Selection\"],\"9aZHfH\":[\"Back to settings\"],\"UNaXdI\":[\"Back to templates\"],\"IWTC0l\":[\"Back to workspaces\"],\"1u1/HA\":[\"Back to your workspaces\"],\"Nzwli2\":[\"Base\"],\"wVO5q4\":[\"Basic (Essential tutorial slides)\"],\"epXTwc\":[\"Basic Settings\"],\"g7YpV4\":[\"До цієї історії випусків\"],\"NZKqfK\":[\"Before you connect an agent\"],\"YBt9YP\":[\"Beta\"],\"dashboard.dembrane.concrete.beta\":[\"Beta\"],\"dashboard.dembrane.verify.beta\":[\"Beta\"],\"Zz7XBz\":[\"Beta features\"],\"omCN5G\":[\"Кращий зворотний зв’язок і простіший супровід\"],\"5DnJa6\":[\"Кращі записи, більше способів відповідати\"],\"9GKCNF\":[\"Кращі завантаження, транскрипти й пошук\"],\"K9cTJe\":[\"Billed annually\"],\"aIkeAd\":[\"Billed monthly\"],\"rKaO4m\":[\"Billed on its own plan, not your organisation's. Manage it from this workspace's billing.\"],\"IHgGGv\":[\"Billed separately\"],\"4FkKL6\":[\"Billed separately, not part of the organisation's plan.\"],\"jtq36d\":[\"Billed under your organisation's plan, alongside your other workspaces.\"],\"R+w/Va\":[\"Billing\"],\"17Ox+q\":[\"Billing details\"],\"UQPSlS\":[\"Billing details saved.\"],\"ZQhgRe\":[\"Billing is managed by your organisation\"],\"/2TrP/\":[\"Billing mode\"],\"MkvsWx\":[\"Book a call\"],\"KKLfx1\":[\"Забронюйте дзвiнок з нами\"],\"kFl92P\":[\"Book a certified training to keep using dembrane in high-risk settings.\"],\"YgG3yv\":[\"Brainstorm Ideas\"],\"xHijXF\":[\"Breakdown · \",[\"0\"],\" active\"],\"EpQC5j\":[\"Breakdown by tier\"],\"16exrD\":[\"Brief\"],\"7Ic570\":[\"Bring your own LLM\"],\"t06RRh\":[\"Виправлення помилок\"],\"4eBtkM\":[\"Build custom dashboards with real-time conversation data\"],\"G46Sdr\":[\"by \",[\"by\"]],\"IqudIv\":[\"By deleting this project, you will delete all the data associated with it. This action cannot be undone. Are you absolutely sure?\"],\"aeGLaK\":[\"By status\"],\"0rwwOn\":[\"By tag\"],\"URPLGF\":[\"can edit\"],\"6++86c\":[\"can read\"],\"OoV4VL\":[\"Can you tell us more?\"],\"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\"],\"UKcgfh\":[\"Скасувати перевизначення\"],\"Bu+BBn\":[\"Cancel plan\"],\"HoYkSd\":[\"Cancel request\"],\"lrdoAi\":[\"Cancel schedule\"],\"iypQhn\":[\"Cancel selection\"],\"XzQibx\":[\"Cancel training\"],\"D2vAZP\":[\"Cancel your plan\"],\"vv7kpg\":[\"Cancelled\"],\"AreLja\":[\"Cancelling stops your plan from renewing. You keep \",[\"0\"],\" until your current billing period ends, then you move to Free.\"],\"RKD99R\":[\"Cannot add empty conversation\"],\"SL9Qao\":[\"Cannot reschedule within 10 minutes of the scheduled time\"],\"Zty/IJ\":[\"Canvas\"],\"GZiMWH\":[\"Canvas freshness updated\"],\"RP1RaW\":[\"Canvas preview\"],\"J5lsfs\":[\"Canvas settings\"],\"vkf71G\":[\"capability gap\"],\"kryGs+\":[\"Card\"],\"SHhA6n\":[\"catch up \",[\"0\"]],\"wNBLz0\":[\"Certified training for teams using dembrane in high-risk settings. A separate product, billed per session.\"],\"o+XJ9D\":[\"Change\"],\"rlgQn8\":[\"Change \",[\"person\"],\"'s organisation role from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"tdSXvq\":[\"Change \",[\"person\"],\"'s role on \",[\"wsName\"],\" from <0>\",[\"0\"],\" to <1>\",[\"1\"],\"?\"],\"/S0CT+\":[\"Change anyway\"],\"U8sdJ+\":[\"Change in workspace settings\"],\"+DEogc\":[\"Change language\"],\"7KtLzo\":[\"Change organisation role?\"],\"GptGxg\":[\"Change password\"],\"Ts/A07\":[\"Change payment method\"],\"Xffg0O\":[\"change project settings\"],\"ImM7Hj\":[\"Change role\"],\"qpV0fp\":[\"Change tier\"],\"XbjzC/\":[\"Change workspace role?\"],\"mtseAM\":[\"Change your own role?\"],\"X0m2J4\":[\"Change your password from settings without contacting support.\"],\"gItvqL\":[\"Changemaker plan takes it off\"],\"+sCya1\":[\"Changes applied. You can fine-tune them anytime in project settings.\"],\"u0IJto\":[\"Changes will be saved automatically\"],\"xF/jsW\":[\"Changing language during an active chat may lead to unexpected results. It's recommended to start a new chat after changing the language. Are you sure you want to continue?\"],\"+ZOTlN\":[\"Changing the voice re-reads every conversation.\"],\"AHZflp\":[\"Chat\"],\"OqbSPC\":[\"Chat | dembrane\"],\"9cnnXB\":[\"Chat context includes conversation dates and durations.\"],\"KNCmqW\":[\"Chat created\"],\"pB+sJr\":[\"Chat deleted\"],\"qlK5jV\":[\"Chat isn't available on your access level. Reach out to your workspace admin to request an upgrade.\"],\"qUVihD\":[\"Chat limit reached\"],\"tDlhkF\":[\"Chat name\"],\"qROGJJ\":[\"Chat no longer sends duplicate messages accidentally.\"],\"VcmnNx\":[\"Chat templates stay visible while you work.\"],\"nsBRp+\":[\"Chat warns before sending a message over the character limit.\"],\"5YLyJ8\":[\"Чат з окремими розмовами.\"],\"8Q+lLG\":[\"Chats\"],\"chat.accordion.skeleton.title\":[\"Chats\"],\"project.sidebar.chat.title\":[\"Chats\"],\"Dv3TPp\":[\"Чати отримують автоматичні назви, а контекст розмов містить дати й тривалість. Переходьте до останнього повідомлення та користуйтеся зрозумілішим завантаженням аудіо.\"],\"ZScceP\":[\"Chats receive automatic titles.\"],\"iFHfAI\":[\"Chats set to Czech answer in Czech instead of English.\"],\"uKHYRK\":[\"Чати з чеською мовою тепер відповідають чеською замість англійської.\"],\"gLvHXQ\":[\"Перевіряйте й обирайте мікрофон перед записом, бачте показники якості аудіо та користуйтеся покращеною багатомовною транскрипцією. Обирайте підсумок, нові ідеї або власні режими відповіді.\"],\"+e4Yxz\":[\"Check microphone access\"],\"participant.button.check.microphone.access\":[\"Check microphone access\"],\"WQUm5N\":[\"Перевірте текст і зображення та спробуйте ще раз\"],\"v4fiSg\":[\"Check your email\"],\"mGd0TP\":[\"Checked \",[\"checkedAgo\"],\". A first update will appear when there is enough to show.\"],\"fhPONC\":[\"Checked \",[\"checkedAgo\"],\". Nothing new since your last conversation. Updated \",[\"updatedAgo\"],\".\"],\"ZaaxYO\":[\"Checking live conversations\"],\"pMF40U\":[\"Checking your session.\"],\"KFa1f3\":[\"Choose a logo file\"],\"MgLGKD\":[\"Choose a methodology\"],\"4Jd65a\":[\"Choose an organisation first\"],\"0hjkQk\":[\"Choose discoverable, invite-only or private workspaces.\"],\"d5ey9z\":[\"Обирайте видимі, доступні за запрошенням або приватні простори. Учасники організації завантажуються швидше, після завантаження файлів ви повертаєтеся до розмов, а підсумки й об’єднання працюють надійніше.\"],\"okLwd9\":[\"Choose from your other projects\"],\"lrPU2/\":[\"Choose Summarize, Brainstorm Ideas or Custom reply modes.\"],\"Aoxltn\":[\"Choose when you want to receive notifications\"],\"mgiYV1\":[\"Choose your preferred language for the interface\"],\"DakUDF\":[\"Choose your preferred theme for the interface\"],\"3wV73y\":[\"City\"],\"xCJdfg\":[\"Clear\"],\"yYxB17\":[\"Clear all\"],\"u8JHrO\":[\"Clear filters\"],\"V8yTm6\":[\"Clear search\"],\"eIdJyh\":[\"Cleared \",[\"cleared\"],\" of \",[\"total\"],\" conversations\"],\"0ZbLOL\":[\"Зрозуміліші джерела в чаті\"],\"xOlaOX\":[\"Зрозуміліший доступ для адміністраторів\"],\"B2pdef\":[\"Click \\\"Upload Files\\\" when you're ready to start the upload process.\"],\"TmA1Yd\":[\"Click a conversation tag to add it to your filters.\"],\"cwMTjO\":[\"Click to edit\"],\"jcSz6S\":[\"Click to see all \",[\"totalCount\"],\" conversations\"],\"oL+Urh\":[\"Click to sort\"],\"VbcOhD\":[\"Client discount %\"],\"1vOl9f\":[\"Client organisation\"],\"WXNW/R\":[\"Client orgs from partners\"],\"bIj+VB\":[\"Client-managed\"],\"dcBdC4\":[\"Clipboard buttons work in Safari, and your chosen interface language is remembered.\"],\"+d+tJS\":[\"Clone from another project\"],\"nCnTY0\":[\"Clone from Project\"],\"BPrdpc\":[\"Clone project\"],\"9U86tL\":[\"Clone Project\"],\"yz7wBu\":[\"Close\"],\"select.all.modal.close\":[\"Close\"],\"RRo5cD\":[\"Close and go to dembrane\"],\"bQfDiL\":[\"Cloud Act Safe\"],\"sShXu3\":[\"Colleagues you invite can explore conversations, share insights, and build reports with you.\"],\"Y+lkZA\":[\"Collecting people's stories without you being there, like an audio-based survey.\"],\"q+hNag\":[\"Collection\"],\"jEu4bB\":[\"Columns\"],\"AUYALh\":[\"Coming soon\"],\"bJHBId\":[\"Common use cases:\"],\"xDz9mh\":[\"Compact footnotes keep conversation sources within reach.\"],\"Wqc3zS\":[\"Compare & Contrast\"],\"CfO59/\":[\"Compare & Contrast Insights\"],\"2Jg8b0\":[\"Comped trial. €0 revenue.\"],\"bUEr/M\":[\"Comped trial. Expires \",[\"0\"],\". €0 revenue.\"],\"bD8I7O\":[\"Complete\"],\"qqWcBV\":[\"Completed\"],\"XdO6hR\":[\"Completed on\"],\"YmlJMO\":[\"Configure settings for each legal basis.\"],\"participant.mic.settings.modal.second.confirm.button\":[\"Confirm\"],\"7VpPHA\":[\"Confirm\"],\"s/uNVb\":[\"Confirm and send\"],\"JRQitQ\":[\"Confirm new password\"],\"yjkELF\":[\"Confirm New Password\"],\"xnWESi\":[\"Confirm password\"],\"puQ8+/\":[\"Confirm Publishing\"],\"vz1fGK\":[\"Confirm reschedule\"],\"L0k594\":[\"Confirm your password to generate a new secret for your authenticator app.\"],\"iSLIjg\":[\"Connect\"],\"FT1CJE\":[\"Connect your agent\"],\"0Nvhtt\":[\"Connect your agent | dembrane\"],\"5n2gq8\":[\"Connected agents\"],\"JhzMcO\":[\"Connecting to report services...\"],\"wX/BfX\":[\"Connection healthy\"],\"participant.modal.s3check.title\":[\"Connection issue\"],\"e+3QyQ\":[\"Connection revoked\"],\"WimHuY\":[\"Connection unhealthy\"],\"l9fkrm\":[\"Consent\"],\"EhtOYz\":[\"Обробка на основі згоди активна без посилання на політику конфіденційності. Додайте його там, де встановлено правову підставу: учасники мають мати змогу прочитати політику конфіденційності.\"],\"mpby9d\":[\"Contact support\"],\"E5Shm/\":[\"Contact the admin if this was unexpected.\"],\"4b3oEV\":[\"Content\"],\"M73whl\":[\"Context\"],\"VHSco4\":[\"Context added:\"],\"JX3KT4\":[\"Contextual suggestions\"],\"xGVfLh\":[\"Continue\"],\"participant.ready.to.begin.button.text\":[\"Continue\"],\"participant.button.continue\":[\"Continue\"],\"F1pfAy\":[\"conversation\"],\"YyNOE7\":[\"Розмова\"],\"EiHu8M\":[\"Conversation added to chat\"],\"UL2RVZ\":[\"Conversation citations appear together under one Sources heading.\"],\"yo+cs6\":[\"Посилання на розмови тепер зібрані під одним заголовком Джерела. Форма зворотного зв’язку може заповнювати вашу електронну адресу.\"],\"HVt1q8\":[\"Conversation dates show when recording began, rather than when the page opened.\"],\"zoQtTL\":[\"Conversation durations and project cloning are more reliable.\"],\"participant.conversation.ended\":[\"Conversation Ended\"],\"E14kXV\":[\"Conversation names appear in the Library and the portal's end screen works correctly.\"],\"oMLs8t\":[\"Conversation pages and data loading are streamlined.\"],\"bRjeED\":[\"Сторінки розмов і завантаження даних спрощено. Автоматичний вибір розмов залишає більше місця для відповідей, а оголошення створюють менше повторних сповіщень.\"],\"OtdHFE\":[\"Conversation removed from chat\"],\"zTKMNm\":[\"Conversation Status\"],\"Rdt7Iv\":[\"Conversation Status Details\"],\"77Vr/m\":[\"Conversation status includes upload progress.\"],\"J2pUSq\":[\"Підсумки більше не зависають у відповідних випадках обробки. Розмови, призупинені через обмеження безкоштовного плану, обробляються після переходу на інший план.\"],\"ym9Tli\":[\"Conversation summaries no longer hang in the affected processing cases.\"],\"7Ljafh\":[\"Conversation tags\"],\"zaWnya\":[\"Conversation tags are easier to read.\"],\"a7zH70\":[\"conversations\"],\"EnJuK0\":[\"Conversations\"],\"72XGHt\":[\"Conversations cleared\"],\"iQeG0i\":[\"Conversations paused by free-plan limits are summarised after an upgrade.\"],\"72TERk\":[\"Conversations use the updated Dembrane-26-07 transcription pipeline.\"],\"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.\"],\"NmPNJJ\":[\"Copy code\"],\"x7uIlL\":[\"Copy invite link\"],\"y1eoq1\":[\"Copy link\"],\"H4brGj\":[\"Copy link to clipboard\"],\"AjrNNs\":[\"Copy report content\"],\"vAkFou\":[\"Copy secret\"],\"v3StFl\":[\"Copy Summary\"],\"/4gGIX\":[\"Copy to clipboard\"],\"RTxUjI\":[\"Copy to Clipboard\"],\"E6nRW7\":[\"Copy URL\"],\"OvEjsP\":[\"Copying...\"],\"/GF06U\":[\"Could not add your conversations to this chat\"],\"wcXkqW\":[\"Could not apply all the tag changes.\"],\"5XIW2B\":[\"Could not apply the changes. Nothing was saved.\"],\"1kNETE\":[\"Could not carry over your selection. Pick again below.\"],\"Exvn8R\":[\"Could not complete that action.\"],\"leuP7L\":[\"Could not confirm payment. Refresh to retry.\"],\"inHtAw\":[\"Could not copy to clipboard. Please try again.\"],\"X+pWr+\":[\"Could not create template\"],\"qg6spM\":[\"Could not create the organisation\"],\"D4A5VY\":[\"Could not create this canvas\"],\"kzqg8O\":[\"Could not create this methodology\"],\"BiXtZw\":[\"Could not delete template\"],\"qFM9uZ\":[\"Could not generate a summary. Please try again.\"],\"2w0edS\":[\"Could not go live\"],\"WbwQgZ\":[\"Could not load methodologies.\"],\"RYJyLk\":[\"Could not load payments. Check auth and backend logs.\"],\"3ewci6\":[\"Could not load the library.\"],\"S+kUD0\":[\"Could not load the rollup. Check auth and backend logs.\"],\"mNTNj8\":[\"Could not load this project's goal.\"],\"2gcFEX\":[\"Could not open the conversation list. Try again.\"],\"WSxAYE\":[\"Could not preview this canvas right now.\"],\"M+bqpm\":[\"Could not refresh popcorn\"],\"iFyAlt\":[\"Could not refresh this canvas\"],\"pt1Hk0\":[\"Could not rerun popcorn\"],\"MDWzM5\":[\"Could not run popcorn\"],\"nx4kaN\":[\"Could not save\"],\"vFB5Q8\":[\"Відгук не збережено\"],\"gPqG+l\":[\"Could not save popcorn settings\"],\"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.\"],\"BMDNcQ\":[\"Не вдалося надіслати повідомлення. Спробуйте ще раз\"],\"FbEB4k\":[\"Could not stop live\"],\"hpYy7A\":[\"Could not update template\"],\"Ld3JrX\":[\"Could not update this canvas\"],\"0Mj7CF\":[\"Could not update this project's methodology\"],\"/P90WH\":[\"Couldn't add \",[\"failed\"],\" members. Add them from workspace settings.\"],\"n5jG23\":[\"Couldn't add 1 member. Add them from workspace settings.\"],\"KFEjpC\":[\"Couldn't add person\"],\"RbXh2U\":[\"Couldn't change visibility\"],\"DjWv8n\":[\"Couldn't copy the link.\"],\"QYq+2z\":[\"Couldn't join right now\"],\"TOvPOV\":[\"Couldn't load live activity\"],\"CLBne9\":[\"Couldn't load memories. Refresh to try again.\"],\"SnOYvu\":[\"Couldn't load organisation (\",[\"0\"],\")\"],\"KYcw2y\":[\"Couldn't load organisation members. Try refreshing, and if it keeps failing, contact support.\"],\"Vw2vHe\":[\"Couldn't load pending invites.\"],\"8a9fbX\":[\"Couldn't load usage (\",[\"0\"],\")\"],\"Fwc3py\":[\"Couldn't load workspace settings (\",[\"0\"],\")\"],\"edGmsx\":[\"Couldn't load workspaces. Close and reopen to retry.\"],\"4ufrJH\":[\"Couldn't refresh usage. Try again.\"],\"PMx835\":[\"Couldn't remove this memory\"],\"b5ALMv\":[\"Couldn't request training\"],\"SUJwLx\":[\"Couldn't revoke invite\"],\"LPY4VY\":[\"Couldn't send invite\"],\"JNCzPW\":[\"Country\"],\"hYgDIe\":[\"Create\"],\"VW1ecc\":[\"Create a new webhook from scratch\"],\"oJfYM5\":[\"Create a research brief from recent conversations\"],\"1hMWR6\":[\"Create account\"],\"3T8ziB\":[\"Create an account\"],\"lJ+m2/\":[\"Create an account to join\"],\"5VjGj6\":[\"Create and manage multiple reports in one project.\"],\"/EJK2h\":[\"create another report\"],\"NaGyxm\":[\"Create custom chat templates (beta), or duplicate and edit a built-in template.\"],\"library.create\":[\"Create Library\"],\"bUyyzw\":[\"Створюй кілька звітів для кожного проєкту та задавай власні інструкції для їх написання. Заплановані звіти (бета) охоплюють усі розмови, записані до обраного часу. Створюй, зберігай і закріплюй власні шаблони чату (бета). Цей випуск також додає закріплення проєктів, налаштування профілю та підтримку української мови в чаті.\"],\"T7gFri\":[\"Create new organisation\"],\"library.create.view.modal.title\":[\"Create new view\"],\"55yNvT\":[\"Create organisation\"],\"vPAex+\":[\"Create password\"],\"Q7h9s/\":[\"Create project\"],\"bsfMt3\":[\"Create Report\"],\"A5hiCy\":[\"Create template\"],\"library.create.view\":[\"Create View\"],\"3D0MXY\":[\"Create View\"],\"dkAPxi\":[\"Create Webhook\"],\"FdtSNC\":[\"Create workspace\"],\"WqpzRx\":[\"Create workspace | dembrane\"],\"d+F6q9\":[\"Created\"],\"NCIYDF\":[\"Created by\"],\"45O6zJ\":[\"Created on\"],\"QxmQob\":[\"Creating in <0>\",[\"0\"],\"\"],\"/VoM7g\":[\"Crop Avatar\"],\"udBqWc\":[\"Crop Image\"],\"8LMgB6\":[\"Crop logo\"],\"6dfVdc\":[\"Crop Logo\"],\"SyljFb\":[\"Crop your logo to a 3:1 horizontal aspect ratio (recommended e.g. 600×200px).\"],\"Hp1l6f\":[\"Current\"],\"yOrQ4N\":[\"Current logo\"],\"Pn2B7/\":[\"Current password\"],\"A+zoTy\":[\"Current plan\"],\"a+EVO+\":[\"Current rate\"],\"8Tg/JR\":[\"Custom\"],\"puMv5a\":[\"Custom chat templates save and share correctly again.\"],\"o1nIYK\":[\"Custom Filename\"],\"GrXJvi\":[\"Custom Logo\"],\"jthSbr\":[\"Custom logo settings now explain the recommended 3:1 aspect ratio.\"],\"iv5fAO\":[\"Custom title prompt\"],\"yGoz+a\":[\"Custom workspace logo shown to participants.\"],\"gBLSqc\":[\"Custom workspace logo shown to participants. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"1OE7Ts\":[\"Czech (only ECHO features, Transcription and Summaries)\"],\"RRwgJO\":[\"Чеські розмови, чеські відповіді\"],\"TNZKpI\":[\"Danger\"],\"Zz6Cxn\":[\"Danger zone\"],\"wqCnxg\":[\"Dashboard URL (direct link to conversation overview)\"],\"S3EU+A\":[\"Data owner email\"],\"+kPwoM\":[\"Data ownership\"],\"mYGY3B\":[\"Дата\"],\"ItMGda\":[\"Діапазон дат\"],\"Zpu3D+\":[\"Dates that work, context, anything else\"],\"jbq7j2\":[\"Decline\"],\"a1Rv+M\":[\"Decline invite\"],\"bdg17D\":[\"Decline request\"],\"OhcpqZ\":[\"Decline request?\"],\"BfuTZd\":[\"Decline the invite to \",[\"subjectName\"],\"? You can ask them to send it again later.\"],\"vrNxDR\":[\"Decline this access request? The requester won't be notified and would need to request access again.\"],\"I8GEft\":[\"Deep Dive\"],\"ovBPCi\":[\"Default\"],\"ucTqrC\":[\"Default - No tutorial (Only privacy statements)\"],\"K/78Yl\":[\"Delegate multi-step analysis with live tool execution\"],\"cnGeoo\":[\"Delete\"],\"project.sidebar.chat.delete\":[\"Delete\"],\"Tf88pC\":[\"Delete \",[\"0\"],\"?\"],\"YFpLoV\":[\"Delete chat\"],\"2GCE3m\":[\"Delete conversation\"],\"2DzmAq\":[\"Delete Conversation\"],\"j5pYC4\":[\"Delete custom topic\"],\"mp235G\":[\"Delete project\"],\"++iDlT\":[\"Delete Project\"],\"rUWrSE\":[\"Delete report\"],\"qr0gpK\":[\"Delete tag\"],\"DFjdv0\":[\"Delete template\"],\"NUXYj2\":[\"Delete this project in \",[\"0\"],\"? All conversations and data are permanently removed.\"],\"Ja/2b5\":[\"Delete this workspace\"],\"ooWc3n\":[\"Delete this workspace. Members lose access immediately and all conversations and data are permanently removed.\"],\"zdyslo\":[\"Delete Webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"Jb6/SB\":[\"Delete…\"],\"L7H6O4\":[\"Deleted · \",[\"0\"]],\"17dnn7\":[\"Видалені проєкти та розмови, призупинені через ліміти тарифу, більше не спричиняють повторних спроб створити підсумки.\"],\"+m7PfT\":[\"Deleted successfully\"],\"InIP7b\":[\"Deleting a organisation is a support-assisted operation. Email <0>support@dembrane.com and we'll walk through it with you — all workspaces must be empty and deleted first.\"],\"mKs3Hd\":[\"dembrane\"],\"tcMw+r\":[\"dembrane - the default\"],\"hEVZlB\":[\"dembrane на вашій події?\"],\"qaj55O\":[\"dembrane B.V. \",[\"0\"],\", all rights reserved.\"],\"qFd3qy\":[\"dembrane can make mistakes. Please double-check responses.\"],\"lBw0Yf\":[\"dembrane default\"],\"SzrR5+\":[\"запрошення на подію dembrane\"],\"nzP4fT\":[\"dembrane events\"],\"B4fAxf\":[\"dembrane is not responsible for what a third party does with that content.\"],\"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\"],\"zPKc5G\":[\"dembrane/pilot був нашим попереднім проєктом. Дякуємо організаторам, учасникам і всім, хто допомагав його створювати.\"],\"cFCKYZ\":[\"Deny\"],\"HpYpx4\":[\"Опишіть проблему\"],\"Fs/0D5\":[\"Describe what the language model should extract or summarize from the conversation...\"],\"Nu4oKW\":[\"Description\"],\"Uf+1DF\":[\"Destination workspace\"],\"ney/NP\":[\"Визначає, на якій правовій підставі GDPR обробляються персональні дані цього проєкту.\"],\"2rgVKb\":[\"Determines under which GDPR legal basis personal data is processed. This affects the information shown to participants and data subject rights.\"],\"NMz7xK\":[\"Develop a strategic framework that drives meaningful outcomes. Please:\\n\\nIdentify core objectives and their interdependencies\\nMap out implementation pathways with realistic timelines\\nAnticipate potential obstacles and mitigation strategies\\nDefine clear metrics for success beyond vanity indicators\\nHighlight resource requirements and allocation priorities\\nStructure the plan for both immediate action and long-term vision\\nInclude decision gates and pivot points\\n\\nNote: Focus on strategies that create sustainable competitive advantages, not just incremental improvements.\"],\"rGCttu\":[\"Didn't expect this? You can safely ignore this page.\"],\"ch15wD\":[\"Didn't get it? Check spam or junk first. The message comes from dembrane.com.\"],\"hsGK8G\":[\"Didn't get it? Check your spam or junk folder. The email comes from dembrane.com.\"],\"qERl58\":[\"Disable 2FA\"],\"yrMawf\":[\"Disable two-factor authentication\"],\"E/QGRL\":[\"Disabled\"],\"bzSI52\":[\"Discard\"],\"Xrxdv5\":[\"Discard this project?\"],\"gemv7o\":[\"Discard this workspace?\"],\"H6Ma8Z\":[\"Discount\"],\"Ix7Qp4\":[\"Discoverable in this organisation\"],\"1QfxQT\":[\"Dismiss\"],\"J6hrEy\":[\"Dismissed\"],\"K0Wh2e\":[\"Dismissed. Nothing was changed.\"],\"pfa8F0\":[\"Display name\"],\"fDGgw4\":[\"Do I need this?\"],\"qPwbNF\":[\"Do you plan to use dembrane in health, education, recruitment, critical infrastructure management, law enforcement or justice contexts?\"],\"JeOjN4\":[\"Do you want to stay in the loop?\"],\"TvY/XA\":[\"Documentation\"],\"EeZ0kf\":[\"Doe\"],\"fF5rOt\":[\"Does not update on its own.\"],\"VjXLEl\":[\"Does not update on its own. Updated \",[\"updatedAgo\"],\".\"],\"DPfwMq\":[\"Done\"],\"9bIbDI\":[\"Готово, зв'яжіться зі мною\"],\"K98xdM\":[\"Downgrade to Free now\"],\"mzI/c+\":[\"Download\"],\"5YVf7S\":[\"Download all conversation transcripts generated for this project.\"],\"SCWfsz\":[\"Download all transcripts\"],\"8fQs2Z\":[\"Download as\"],\"hX9DE4\":[\"Download audio\"],\"hTiEnc\":[\"Download Audio\"],\"N8MP2s\":[\"Завантажуйте аудіо й упорядковуйте розмови\"],\"h9oGl9\":[\"Download audio from conversations.\"],\"NJkTm9\":[\"Завантажуйте аудіо розмов, додавайте теги з панелі й використовуйте адаптивні підсумки. Виправлено редагування та попередній перегляд порталу.\"],\"KMdYRY\":[\"Download PDF\"],\"wEiqju\":[\"Download QR code\"],\"+bBcKo\":[\"Download transcript\"],\"5XW2u5\":[\"Download Transcript Options\"],\"LeCjrC\":[\"DPA\"],\"6Wy9H3\":[\"Draft next actions and organize them by priority\"],\"yboQcK\":[\"Drafting a note you can send to the dembrane team\"],\"hUO5BY\":[\"Drag audio files here or click to select files\"],\"KGi3u9\":[\"Drag to reorder\"],\"pBB+yW\":[\"Drops to the free tier. They can subscribe to a paid plan anytime.\"],\"euc6Ns\":[\"Duplicate\"],\"lkz6PL\":[\"Duration\"],\"KIjvtr\":[\"Dutch\"],\"gMbUE3\":[\"Dutch documentation is updated.\"],\"FOwxqK\":[\"Dutch-speaking hosts see the Dutch What's new walkthrough.\"],\"oUKP8j\":[\"E-invoice\"],\"hBOGLr\":[\"e.g. \\\"Focus on sustainability themes\\\" or \\\"What do participants think about the new policy?\\\"\"],\"pO9dOq\":[\"e.g. \\\"Use short noun phrases like 'Urban Green Spaces' or 'Youth Employment'. Avoid generic titles.\\\"\"],\"9nchXg\":[\"e.g. Client Alpha\"],\"o8kQWN\":[\"e.g. Client Alpha, Q1 Research\"],\"Ys/6OK\":[\"e.g. Client onboarding interviews, Q1 product research\"],\"MR17iW\":[\"e.g. Climate Listening, Q1 Research\"],\"xnZ8L2\":[\"e.g. investigating the report issue you emailed about\"],\"jYJhQk\":[\"e.g. We are a research agency. Reports go to municipal clients, so keep summaries formal and in Dutch.\"],\"sHNbQq\":[\"e.g. Weekly stakeholder digest\"],\"ffuZIY\":[\"e.g., Slack Notifications, Make Workflow\"],\"Cs04r/\":[\"Each new member is billed per seat on your plan.\"],\"3erSkM\":[\"Earlier runs\"],\"8KA8wD\":[\"Early features you can try on this project before they are ready for everyone.\"],\"participant.button.echo\":[\"ECHO\"],\"ePK91l\":[\"Edit\"],\"9WkyHF\":[\"Edit Conversation\"],\"Y/3VME\":[\"Edit Custom Topic\"],\"/8fAkm\":[\"Edit file name\"],\"IYfHCP\":[\"Edit freshness settings\"],\"qDZ8v9\":[\"Edit goal\"],\"X14Q1S\":[\"Edit methodology\"],\"G1Sb51\":[\"Edit mode\"],\"niSWGL\":[\"Edit options\"],\"G2KpGE\":[\"Edit Project\"],\"DdevVt\":[\"Edit Report Content\"],\"UHTUfP\":[\"Edit reports before publishing them.\"],\"4uk9v2\":[\"Редагуйте звіти безпосередньо\"],\"nedzic\":[\"Edit reports directly in dembrane.\"],\"yZyG0D\":[\"Самостійно редагуйте звіти, простіше перевіряйте мікрофони в порталі та бачте кращі індикатори завантаження й повідомлення про помилки.\"],\"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\"],\"0GlhwE\":[\"Edit your display name and upload, crop or remove your profile picture.\"],\"5MB4fU\":[\"Editing a conversation no longer triggers the affected save error.\"],\"O3oNi5\":[\"Email\"],\"ATGYL1\":[\"Email address\"],\"LimKOG\":[\"Email verification\"],\"QdCcsg\":[\"Email verification | dembrane\"],\"g2N9MJ\":[\"email@work.com\"],\"xIxm0t\":[\"Embed code\"],\"Np9EbC\":[\"Embed in a webpage\"],\"tKlWWY\":[\"Emoji\"],\"WYEHn9\":[\"Emoji shown next to the topic e.g. 💡 🔍 📊\"],\"TiAvLQ\":[\"emptied out\"],\"N2S1rs\":[\"Empty\"],\"ru50wd\":[\"Empty or deleted conversations no longer break chat context.\"],\"PaQ3df\":[\"Enable\"],\"DCRKbe\":[\"Enable 2FA\"],\"D3AnH0\":[\"Enable Explore\"],\"4KKbfZ\":[\"Enable participation\"],\"G3dSLc\":[\"Enable Report Notifications\"],\"ZUS4uO\":[\"Enable this feature to allow participants to request AI-powered responses during their conversation. Participants can click \\\"Explore\\\" after recording their thoughts to receive contextual feedback, encouraging deeper reflection and engagement. A cooldown period applies between requests.\"],\"dashboard.dembrane.feature.verify.description\":[\"Enable this feature to allow participants to verify and approve \\\"outcomes\\\" from their submissions. This helps crystallize key ideas, concerns, or summaries. After the conversation, you can filter for discussions with verified outcomes and review them in the overview.\"],\"C027jd\":[\"Enable transcript anonymization\"],\"329BBO\":[\"Enable two-factor authentication\"],\"x35ZEt\":[\"Enable Verify\"],\"RxzN1M\":[\"Enabled\"],\"237hSL\":[\"Ended\"],\"ajxGoy\":[\"Ends on \",[\"endDate\"],\", then moves to Free\"],\"lYGfRP\":[\"English\"],\"GboWYL\":[\"Enter a key term or proper noun\"],\"TSHJTb\":[\"Enter a name for the new conversation\"],\"KovX5R\":[\"Enter a name for your cloned project\"],\"DRYPFp\":[\"Enter a secret key\"],\"34YqUw\":[\"Enter a valid code to turn off two-factor authentication.\"],\"QbilUm\":[\"Enter a valid email address\"],\"CyH1Uk\":[\"Enter current password\"],\"2FPsPl\":[\"Enter filename (without extension)\"],\"VpwcSk\":[\"Enter new password\"],\"oIn7d4\":[\"Enter the 6-digit code from your authenticator app.\"],\"q1OmsR\":[\"Enter the current six-digit code from your authenticator app.\"],\"NgaR6B\":[\"Enter your password\"],\"42tLXR\":[\"Enter your query\"],\"HRbyGE\":[\"Entered by the participant on the portal\"],\"FiGRkg\":[\"Entered details\"],\"SlfejT\":[\"Error\"],\"Ne0Dr1\":[\"Error cloning project\"],\"AEkJ6x\":[\"Error creating report\"],\"edh3aY\":[\"Error loading project\"],\"4kVRov\":[\"Error occurred\"],\"hmk+3M\":[\"Error uploading \\\"\",[\"0\"],\"\\\": \",[\"1\"]],\"OPndva\":[\"Estimated cost\"],\"0PkibI\":[\"Estimated total: €\",[\"estimated\"]],\"sIs2jw\":[\"EU hosted LLMs included\"],\"inuQyd\":[\"Event help from the dembrane team\"],\"tst44n\":[\"Events\"],\"VFClUG\":[\"Events to Listen For\"],\"IwE6dT\":[\"Every 15 minutes\"],\"QFwKaB\":[\"Every 5 minutes\"],\"NsoFw9\":[\"Every 60 minutes\"],\"oBSH3S\":[\"Every call an agent made in this organisation, newest first.\"],\"nk1/Ah\":[\"Every connected agent in \",[\"0\"],\" stops working immediately. Members keep their connections and they resume if you turn this back on.\"],\"lQiaDg\":[\"Every member's connection that names this organisation.\"],\"VQ1d9z\":[\"Every week for a year\"],\"aBiYpV\":[\"Everyone can find it. Admins join directly; members can ask.\"],\"Mzb7Rk\":[\"Everyone in \",[\"0\"],\" can find and open this project.\"],\"PwqyQw\":[\"Everyone in your organisation\"],\"nvU1pM\":[\"Everyone on the roster is trained.\"],\"participant.alert.microphone.access.success\":[\"Everything looks good – you can continue.\"],\"jqsg/I\":[\"Example Webhook Payload\"],\"p9TUoT\":[\"Exceeds seat cap. Overage billing applies.\"],\"sQpDn6\":[\"Exit fullscreen\"],\"FATwZw\":[\"Expand workspaces\"],\"Rsjgm0\":[\"Experimental\"],\"M1RnFv\":[\"Expired\"],\"KnN1Tu\":[\"Expires\"],\"vHL8v0\":[\"Expiring soon\"],\"8tjQCz\":[\"Explore\"],\"participant.echo.explore\":[\"Explore\"],\"B7flm8\":[\"Досліджуйте повторювані теми в Library\"],\"EebTQD\":[\"Досліджуй історії та погляди за допомогою шаблону чату Narratives англійською та нідерландською.\"],\"HNnM2X\":[\"Переглянути архів dembrane/pilot\"],\"6jZGjE\":[\"Exploring\"],\"sAod0Q\":[\"Exploring \",[\"conversationCount\"],\" conversations\"],\"GS+Mus\":[\"Export\"],\"2KAI4N\":[\"Export CSV\"],\"tZXz25\":[\"Extend 24h\"],\"bVhrVt\":[\"External\"],\"3xOpcO\":[\"External of \",[\"0\"]],\"8f/4pG\":[\"External of partner\"],\"FMB83I\":[\"Externals\"],\"uRzQpN\":[\"Externals are not added to your organisation. They can only see the workspaces you select here.\"],\"W3lkzg\":[\"Externals only exist inside a workspace. Pick at least one to send the invite.\"],\"KVTM6i\":[\"Extra participants\"],\"7Bj3x9\":[\"Failed\"],\"bh2Vob\":[\"Failed to add conversation to chat\"],\"ajvYcJ\":[\"Failed to add conversation to chat\",[\"0\"]],\"g5wCZj\":[\"Failed to add conversations to context\"],\"pmwvUt\":[\"Failed to approve outcome. Please try again.\"],\"UcQWAA\":[\"Failed to clear conversations\"],\"RBpcoc\":[\"Failed to copy chat. Please try again.\"],\"uvu6eC\":[\"Failed to copy transcript. Please try again.\"],\"UQ6LqT\":[\"Failed to create custom topic\"],\"bHJ//P\":[\"Failed to create project\"],\"nVOWis\":[\"Failed to delete chat\"],\"ZiNeUi\":[\"Failed to delete custom topic\"],\"7QAutA\":[\"Failed to delete project\"],\"BVzTya\":[\"Failed to delete response\"],\"REIHSi\":[\"Failed to delete tag\"],\"Gu9mXj\":[\"Failed to finish conversation. Please try again.\"],\"vx5bTP\":[\"Failed to generate \",[\"label\"],\". Please try again.\"],\"Fa1ewI\":[\"Failed to generate the summary. Please try again later.\"],\"Z77bMM\":[\"Failed to load webhooks\"],\"T7KYJY\":[\"Failed to mark all announcements as read\"],\"eGHX/x\":[\"Failed to mark announcement as read\"],\"PECaxL\":[\"Failed to mark announcement as unread\"],\"CN1kl1\":[\"Failed to move project\"],\"kC1ABz\":[\"Failed to move projects\"],\"FBluE+\":[\"Failed to reconnect. Please try reloading the page.\"],\"SVtMXb\":[\"Failed to regenerate the summary. Please try again later.\"],\"h49o9M\":[\"Failed to reload. Please try again.\"],\"rv8mO7\":[\"Failed to remove avatar\"],\"kE1PiG\":[\"Failed to remove conversation from chat\"],\"+piK6h\":[\"Failed to remove conversation from chat\",[\"0\"]],\"P9wLTJ\":[\"Failed to remove logo\"],\"IMUHg3\":[\"Не вдалося перепланувати. Будь ласка, оберiть час далi у майбутньому та спробуйте знову.\"],\"SmP70M\":[\"Failed to retranscribe conversation. Please try again.\"],\"kClMar\":[\"Failed to revise outcome. Please try again.\"],\"wMEdO3\":[\"Failed to stop recording on device change. Please try again.\"],\"FBpxE9\":[\"Failed to stop run\"],\"6xOp3l\":[\"Failed to submit agentic message\"],\"qTUnxX\":[\"Failed to update custom topic\"],\"BpuK7o\":[\"Failed to update legal basis\"],\"Avee+B\":[\"Failed to update name\"],\"gnm1CH\":[\"Failed to update pin\"],\"tOcErW\":[\"Failed to update settings\"],\"S1McZh\":[\"Failed to upload avatar\"],\"RW4V7P\":[\"Failed to upload logo\"],\"3O1Mz4\":[\"Fair password\"],\"participant.modal.echo.info.title\":[\"Feature available soon\"],\"YirHq7\":[\"Feedback\"],\"radRmd\":[\"Feedback portal\"],\"2roTVj\":[\"Відгук надіслано\"],\"87gcCP\":[\"File \\\"\",[\"0\"],\"\\\" exceeds the maximum size of \",[\"1\"],\".\"],\"ena+qV\":[\"File \\\"\",[\"0\"],\"\\\" has an unsupported format. Only audio files are allowed.\"],\"LkIAge\":[\"File \\\"\",[\"0\"],\"\\\" is not a supported audio format. Only audio files are allowed.\"],\"RW2aSn\":[\"File \\\"\",[\"0\"],\"\\\" is too small (\",[\"1\"],\"). Minimum size is \",[\"2\"],\".\"],\"+aBwxq\":[\"File size: Min \",[\"0\"],\", Max \",[\"1\"],\", up to \",[\"MAX_FILES\"],\" files\"],\"UkgMPE\":[\"Filename from uploaded file\"],\"5g0xbt\":[\"Filter audit logs by action\"],\"9clinz\":[\"Filter audit logs by collection\"],\"O39Ph0\":[\"Filter by action\"],\"DiDNkt\":[\"Filter by collection\"],\"3AFOMQ\":[\"Filter by name or id\"],\"q8rWRy\":[\"Фільтрувати випуски за роком\"],\"MRk67a\":[\"Find contradictions and suggest follow-up questions\"],\"SdZBYB\":[\"Знаходьте потрібні розмови для запитання\"],\"oRQsgh\":[\"Знаходьте простори й продовжуйте розмови\"],\"p2j2po\":[\"Знаходьте своє місце в чаті\"],\"participant.button.stop.finish\":[\"Finish\"],\"participant.button.finish.text.mode\":[\"Finish\"],\"participant.button.finish\":[\"Finish\"],\"participant.modal.finish.title.text.mode\":[\"Finish Conversation\"],\"4dQFvz\":[\"Finished\"],\"jtvljU\":[\"Finishing\"],\"V1EGGU\":[\"First name\"],\"njVNhY\":[\"Fixture\"],\"Fsd1Wl\":[\"Focus\"],\"ca28MY\":[\"Focus on conversations\"],\"2CludW\":[\"Focusing on:\"],\"IaFUVX\":[\"Follow ongoing sessions in the live monitor.\"],\"URFuH+\":[\"Follow source citations from chat answers.\"],\"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\"],\"uSo910\":[\"For example: keep the members' own words, skip anything about named staff.\"],\"mSoJxU\":[\"For internal use\"],\"c08s58\":[\"For invoices, a shared contract, to discuss a partnership, or anything custom, email <0>support@dembrane.com.\"],\"YP/rFm\":[\"for the dembrane team\"],\"GcibpE\":[\"For you\"],\"z7J3FU\":[\"Forecast\"],\"UXY498\":[\"Forgetting a saved memory\"],\"glx6on\":[\"Forgot your password?\"],\"rWsDiJ\":[\"Framing\"],\"2POOFK\":[\"Free\"],\"5UC+gU\":[\"Free organisations have a monthly limit of \",[\"freeTierMonthlyCalls\"],\" calls.\"],\"OLL8bQ\":[\"Free plan allows 1 report per workspace\"],\"GAy5hu\":[\"Free plan allows 1 workspace per organisation\"],\"NXMsm8\":[\"Free-plan limits and upgrade options are clearer.\"],\"/L+Kwy\":[\"Free, read-only. Sees projects, conversations, and reports. Cannot chat or generate reports.\"],\"nLC6tu\":[\"French\"],\"2Ui6bR\":[\"friction\"],\"OwIqiD\":[\"Full screen\"],\"k/Ywl4\":[\"Full transcript (when available)\"],\"3qkggm\":[\"Fullscreen\"],\"Weq9zb\":[\"General\"],\"ziAjHi\":[\"Generate\"],\"EIdJgG\":[\"Generate a new report\"],\"QsUhrf\":[\"Generate a Report\"],\"GRy59I\":[\"Generate a summary first\"],\"RW9Woq\":[\"Generate conversation titles automatically, with an option to turn this off.\"],\"MWSGhX\":[\"Generate library\"],\"5SWGxv\":[\"Generate now\"],\"GWUJ9X\":[\"Generate now instead\"],\"QqIxfi\":[\"Generate secret\"],\"gitFA/\":[\"Generate Summary\"],\"+cSW/S\":[\"Generated conversation titles contain one title instead of a list of suggestions.\"],\"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\"],\"Hd0xjq\":[\"Отримуйте відповідь під час розмови\"],\"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.\"],\"Pl6LQ+\":[\"Зв'язатися з нами\"],\"ZDIydz\":[\"Get started\"],\"4/PUV0\":[\"get started.\"],\"erZjsz\":[\"Give \",[\"0\"],\" from dembrane admin access to this workspace for 24 hours? Access ends automatically.\"],\"G2IKZF\":[\"Give chat responses a thumbs up or thumbs down.\"],\"TAXdgS\":[\"Give me a list of 5-10 topics that are being discussed.\"],\"VhC879\":[\"Give the session a title\"],\"CKyk7Q\":[\"Go back\"],\"participant.concrete.artefact.action.button.go.back\":[\"Go back\"],\"DXr0zk\":[\"Go Fullscreen\"],\"iWpEwy\":[\"Go home\"],\"2qtCQl\":[\"Go live\"],\"y0SPQU\":[\"Go to billing\"],\"mPlqH9\":[\"Go to chats\"],\"s15CIR\":[\"Go to conversations\"],\"10Xyas\":[\"Go to dashboard\"],\"4+0/e5\":[\"Go to host guide\"],\"BVMldh\":[\"Go to library\"],\"SAshCc\":[\"Go to monitor\"],\"A3oCMz\":[\"Go to new conversation\"],\"S8lgYE\":[\"Go to overview\"],\"Zo4Spg\":[\"Go to portal editor\"],\"jH97zI\":[\"Go to project home\"],\"QvyaLZ\":[\"Go to report\"],\"1WuwiM\":[\"Go to settings\"],\"EEZvNu\":[\"Goal\"],\"mc61Qc\":[\"Goal saved\"],\"VIfUjY\":[\"Гарна відповідь\"],\"76gPWk\":[\"Зрозуміло\"],\"hjZBYK\":[\"Є дві хвилини? П'ять необов'язкових запитань допоможуть нам підготуватися.\"],\"Lr2Goo\":[\"Grant licenses\"],\"ALoP4W\":[\"Group by\"],\"+h3keC\":[\"Guide how titles are generated. Titles describe the topic of the conversation, not the participant.\"],\"2XucLv\":[\"Guide report writing with your own instructions.\"],\"uMjvI3\":[\"Guide the report\"],\"myXGZW\":[\"З керiвництвом\"],\"ZqBGoi\":[\"Has verified artifacts\"],\"0zo6ap\":[\"Have you completed a training?\"],\"OwUS8p\":[\"have your recordings transcribed\"],\"c3XJ18\":[\"Help\"],\"BbjkPc\":[\"Help me figure it out\"],\"55zzNI\":[\"Help setting up your project.\"],\"1zZ1IK\":[\"Hi\"],\"v6a4UH\":[\"Hi \",[\"firstName\"]],\"D+zLDD\":[\"Hidden\"],\"eBAQFo\":[\"Hidden from organisation members. Organisation admins can still find and join.\"],\"G1UUQY\":[\"Hidden gem\"],\"vLyv1R\":[\"Hide\"],\"eHo/Jc\":[\"Hide data\"],\"CdQHTK\":[\"Hide detail\"],\"lqv0Dk\":[\"Hide projects\"],\"g4tIdF\":[\"Hide revision data\"],\"dN/wNN\":[\"Hide steps\"],\"umJNCH\":[\"Hide the changes\"],\"SGJRXz\":[\"приховати запрошення на подію dembrane\"],\"V3NvRL\":[\"Приховати запрошення на подію dembrane можна в платному плані.\"],\"+WN0mu\":[\"High-demand messages explain longer waits for responses.\"],\"gtEbeW\":[\"Варто уваги\"],\"tn75xn\":[\"Highlight specific Concept\"],\"3l+JGi\":[\"History note\"],\"i0qMbr\":[\"Home\"],\"Ai2U7L\":[\"Організатор\"],\"Elg25+\":[\"host guide\"],\"bGCQQ9\":[\"Host guide\"],\"7PTDfe\":[\"Host guides are saved with the project and print with a white background.\"],\"EW9rvn\":[\"Відгук організатора\"],\"y9DTlP\":[\"Hosts can enable replies and customise their prompt in portal settings.\"],\"yY8wAv\":[\"Hours\"],\"zvDeDZ\":[\"Hours from now\"],\"EmxJlb\":[\"How Ask works and what it can do.\"],\"lgXx7l\":[\"How it works:\"],\"DTQkD6\":[\"How many recordings do you expect in your first year?\"],\"QcjEte\":[\"How should the phrases sound?\"],\"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\"],\"yubW2e\":[\"However you would say it. A date, a season, or that you do not know yet.\"],\"/c3Xl4\":[\"https://www.youtube.com/watch?v=XSFAF3uSvMg\"],\"ACVscB\":[\"I applied the canvas.\"],\"wJCEin\":[\"I applied the goal.\"],\"L5eful\":[\"I have lots of big events coming up\"],\"Q53s6K\":[\"I have read and accept the <0>terms\"],\"IVvH44\":[\"I need a specific language to be supported\"],\"UTbk9h\":[\"I need strict privacy guarantees\"],\"participant.button.i.understand\":[\"I understand\"],\"5ZRfjk\":[\"I understand\"],\"9kV0Mi\":[\"I understand that \",[\"0\"],\" and its provider will receive this data\"],\"E/xz+n\":[\"I will know in a week or two\"],\"sfIOlH\":[\"IBAN\"],\"S0kLOH\":[\"ID\"],\"KbXMDK\":[\"Identify recurring themes, topics, and arguments that appear consistently across conversations. Analyze their frequency, intensity, and consistency. Expected output: 3-7 aspects for small datasets, 5-12 for medium datasets, 8-15 for large datasets. Processing guidance: Focus on distinct patterns that emerge across multiple conversations.\"],\"QSzGDE\":[\"Idle\"],\"IroOSC\":[\"Якщо ви помітили дані, видимі стороннім, доступ, якого хтось не повинен мати, або можливу вразливість безпеки, скористайтеся нашою <0>формою повідомлення про безпеку. Вона надходить до іншої команди швидшим шляхом. У термінових випадках напишіть на <1>privacy@dembrane.com\"],\"participant.verify.instructions.approve.artefact\":[\"If you are happy with the \",[\"objectLabel\"],\" click \\\"Approve\\\" to show you feel heard.\"],\"qtM5OH\":[\"If you need something different, we will draft an offer for your use case.\"],\"mHvgOU\":[\"If you were expecting access, please ask the person who invited you to send it again.\"],\"AGaPk/\":[\"If you're not sure, you probably don't need it yet. Webhooks are an advanced feature typically used by developers or teams with custom integrations. You can always set them up later.\"],\"hDVOQQ\":[\"If you're setting up webhook integrations, we'd love to learn about your use case. We're also building observability features including audit logs and delivery tracking.\"],\"kSoYmo\":[\"If you're trying to join an existing organization, you should not create a new one. Some reasons that you may accidentally end up here are:\"],\"X2yiuT\":[\"Image style\"],\"QYnqWe\":[\"Зображення мають бути менші за \",[\"MAX_FILE_MB\"],\" МБ\"],\"zyr//t\":[\"Improve my setup\"],\"dylF+L\":[\"Покращення\"],\"HZwrFJ\":[\"In which organisations\"],\"NoNwIX\":[\"Inactive\"],\"Gp4Yi6\":[\"Inbox\"],\"Au/WJO\":[\"Include portal link\"],\"hTwp/C\":[\"Included hours used up\"],\"LYjZNH\":[\"Included hours used up this month\"],\"JEvKqp\":[\"Неправильно або вигадано\"],\"8aA4We\":[\"inherited from organisation\"],\"C6W6w6\":[\"Initial\"],\"fr30H3\":[\"Innovator or higher\"],\"sQpkks\":[\"insight \",[\"0\"]],\"3hJypY\":[\"Insights\"],\"MSVCjk\":[\"Instructions for generating the verification outcome\"],\"fN5mkr\":[\"Integrations & Export\"],\"udXXBF\":[\"interview\"],\"bK5I8j\":[\"Представляємо Popcorn\"],\"crUYYp\":[\"Invalid code. Please request a new one.\"],\"jLr8VJ\":[\"Invalid credentials.\"],\"B2Tpo0\":[\"Invalid email\"],\"R7p7+o\":[\"Invalid invite link\"],\"KhBSE/\":[\"Invitation\"],\"oFgGAT\":[\"Invitations waiting for you. Accept to get started.\"],\"MFKlMB\":[\"Invite\"],\"UwSCxN\":[\"Invite declined\"],\"D1TqRz\":[\"Invite external collaborators and observers with their own access roles.\"],\"ynskdH\":[\"Invite members to collaborate on projects and conversations in this workspace.\"],\"3iGwJw\":[\"Invite only\"],\"W6+yFb\":[\"Invite people\"],\"iLWFzs\":[\"Invite people to \",[\"orgName\"]],\"lOslCN\":[\"Invite resent\"],\"7Nlmb6\":[\"Invite revoked\"],\"gfMuvV\":[\"Invite sent\"],\"5LFLMg\":[\"Invite sent to \",[\"email\"],\". The project is shared once they join.\"],\"2AL6ct\":[\"Invite sent.\"],\"rL7peH\":[\"Invite sent. The project is shared once they join.\"],\"CTWPKj\":[\"Invite to a workspace, or just the organisation.\"],\"RXHza3\":[\"Invite to this workspace, or just the organisation.\"],\"fxXOSv\":[\"Invite to workspace and share\"],\"d+Y+rP\":[\"Invite your team\"],\"GA5TFo\":[\"Invite-only workspace\"],\"M4oozP\":[\"invited by \",[\"0\"]],\"voFazH\":[\"Invites expire after 7 days. Ask \",[\"inviterName\"],\" to send a new one.\"],\"ec+Yhb\":[\"Invoice amount, EUR\"],\"Nv38Sl\":[\"Invoice recorded as paid.\"],\"DTZqjh\":[\"Invoiced offline, no Mollie mandate.\"],\"F7nA5/\":[\"Invoices\"],\"L7OkFI\":[\"Invoicing\"],\"1xMiTU\":[\"IP Address\"],\"7eZuvg\":[\"Is this for your organisation's internal use, or for an external organisation?\"],\"6u5tk8\":[\"Is this workspace for your organisation's internal use, or for an external organisation that owns its data?\"],\"eeAl1v\":[\"Issue invoice\"],\"08FN6B\":[\"Issue payment link\"],\"Gglww2\":[\"It has its own plan and seats, not \",[\"0\"],\"'s pooled plan. Changes here only affect this workspace.\"],\"AHycQe\":[\"It is asking to\"],\"participant.conversation.error.deleted\":[\"It looks like the conversation was deleted while you were recording. We've stopped the recording to prevent any issues. You can start a new one anytime.\"],\"library.not.available.message\":[\"It looks like the library is not available for your account. Please request access to unlock this feature.\"],\"participant.outcome.error.description\":[\"It looks like we couldn't load this outcome. This might be a temporary issue. You can try reloading or go back to select a different topic.\"],\"5dxEAB\":[\"It looks like you don't have a report for this project yet. Generate one to get an overview of your conversations.\"],\"ZYXJus\":[\"It may have already been used or expired. If your email is verified, log in to continue.\"],\"MbKzYA\":[\"It sounds like more than one person is speaking. Taking turns will help us hear everyone clearly.\"],\"8zS9Sh\":[\"It will send you back to \",[\"0\"],\".\"],\"nfvG6u\":[\"Italian (only ECHO features, Transcription and Summaries)\"],\"1BIvTp\":[\"Італійська для основних процесів\"],\"KFXip/\":[\"John\"],\"r6wcTL\":[\"john@doe.com\"],\"0wdd7X\":[\"Join\"],\"ADF305\":[\"Join \",[\"0\"],\" as <0>admin? It'll show in your sidebar right after.\"],\"C6DnOz\":[\"Join \",[\"0\"],\" as an admin first to add others.\"],\"q1E+AA\":[\"Join \",[\"0\"],\"?\"],\"agqQk1\":[\"Join \",[\"subjectFromUrl\"],\" | dembrane\"],\"cCweOd\":[\"Join as admin\"],\"TCEFVm\":[\"Join as admin?\"],\"j4IJHz\":[\"Join first\"],\"eI7D2K\":[\"Join for support\"],\"oopH2X\":[\"Join for support (24h)\"],\"Q31z/2\":[\"Join our Slack community\"],\"s/jfrO\":[\"Join this organisation to discover workspaces and collaborate with your team.\"],\"iVHzoM\":[\"Приєднатися до цієї сесії порталу\"],\"BICpzG\":[\"Join this workspace as an admin to help with support. The customer must have turned on staff support access. Your access ends automatically after 24 hours.\"],\"gePQ/O\":[\"Join this workspace to collaborate on conversations, share insights, and build reports together.\"],\"IKAMA9\":[\"Joined \",[\"subjectName\"]],\"Glgamf\":[\"Joined as admin\"],\"l4EwDk\":[\"Joined the conversation\"],\"NiZZRh\":[\"Jump to\"],\"vKhj0S\":[\"Jump to the latest chat message on tablet and desktop.\"],\"uocCon\":[\"Just a moment\"],\"xOTzt5\":[\"just now\"],\"TXB5vy\":[\"Just one.\"],\"mmEyCQ\":[\"Just previewed. Give it a moment.\"],\"Ulg4y+\":[\"Just read. 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\"],\"1KXAJa\":[\"Не давайте пристроям засинати під час запису\"],\"II//jO\":[\"Keep this canvas fresh\"],\"KwiMrX\":[\"Keep working while audio uploads in the background.\"],\"ff6h/m\":[\"Працюйте під час завантаження аудіо, шукайте теги й бачте хід транскрипції. Покращене відтворення та розумніший вибір розмов спрощують аналіз.\"],\"0BWuwA\":[\"Keeps the tier until the date below, then reverts to Free unless they subscribe.\"],\"4q0kY7\":[\"Key terms\"],\"dymfAn\":[\"Key terms tell transcription how to spell the names and words that matter in this project.\"],\"JTQzX8\":[\"Kickback %\"],\"vXIe7J\":[\"Language\"],\"swJ0V2\":[\"Last audio\"],\"rTwgPH\":[\"Last month\"],\"1ZaQUH\":[\"Last name\"],\"wpsw3r\":[\"Last read \",[\"startedLabel\"]],\"0K/D0Q\":[\"Last saved \",[\"0\"]],\"K7P0jz\":[\"Last Updated\"],\"QEU41f\":[\"Last updated \",[\"0\"]],\"JGvwnU\":[\"Last used\"],\"wL3cK8\":[\"Latest\"],\"lchnsl\":[\"Останній випуск\"],\"wv+L3B\":[\"Latest report\"],\"zwWKhA\":[\"Learn more\"],\"ay5uke\":[\"Learn more about webhooks\"],\"ffCwpJ\":[\"Leave empty to keep existing\"],\"wpBe20\":[\"Leave now\"],\"qvRaz1\":[\"Leave workspace\"],\"J8VWes\":[\"Залиште свою електронну пошту, щоб ми могли з вами зв'язатися.\"],\"UlKSMd\":[\"Left\"],\"Mx+KL8\":[\"Правова підстава\"],\"vRXsmZ\":[\"Legal Basis\"],\"CopiEV\":[\"Правову підставу збережено\"],\"nc/jNe\":[\"Legal entity name\"],\"oK9656\":[\"Let's go!\"],\"8zGcQ2\":[\"Let's hear your first conversation.\"],\"qnAazR\":[\"Let's talk about the canvas \\\"\",[\"0\"],\"\\\".\"],\"OQ/Al+\":[\"Let's talk about this canvas.\"],\"VxapXh\":[\"library\"],\"exYcTF\":[\"Library\"],\"library.title\":[\"Library\"],\"T50lwc\":[\"Library creation is in progress\"],\"gkv8iG\":[\"License Plate\"],\"u/z4+7\":[\"License revoked\"],\"snyG+w\":[\"Licenses\"],\"/NleHL\":[\"Licenses granted\"],\"JbbFA4\":[\"Lifetime cap\"],\"yzF66j\":[\"Link\"],\"edWbV6\":[\"Link copied\"],\"H+AO1D\":[\"Посилання на політику конфіденційності, яку бачать учасники\"],\"g4/qsV\":[\"List my conversations\"],\"k3d/oJ\":[\"List the conversations in this project.\"],\"+L0OEa\":[\"Listing conversations\"],\"gWVReV\":[\"Listing documentation pages\"],\"dF6vP6\":[\"Live\"],\"KQbzS6\":[\"Live · next read in \",[\"0\"]],\"Zo+W8d\":[\"Live · reading \",[\"reading\"],\" of \",[\"0\"],\"…\"],\"++qOvH\":[\"Live · reading now…\"],\"YsLnZq\":[\"Live · the last read is late\"],\"oQDoxO\":[\"Live & recent\"],\"uH9GEL\":[\"Live agent execution mode\"],\"participant.live.audio.level\":[\"Live audio level:\"],\"wkXRp+\":[\"live monitor\"],\"UT9l7v\":[\"Live monitoring\"],\"UzSkVF\":[\"Live participant flow\"],\"O0rtUS\":[\"Live participant funnel: scanned, setting up, on recording page, live, and finished counts\"],\"n9yU9X\":[\"Live Preview\"],\"hQE9uK\":[\"Live recordings, transcription progress, and errors show up here as participants start recording in the portal.\"],\"HDSK+o\":[\"live slides for the room\"],\"wRMJuQ\":[\"Live slides for the room, made from this project's conversations.\"],\"kfOJzm\":[\"Live stream disconnected. Updating on a slower poll until it reconnects.\"],\"PPSKvH\":[\"Live stream interrupted. Falling back to polling.\"],\"bQ48ji\":[\"live until \",[\"0\"],\", reads every \",[\"every\"],\" min\"],\"ebUN7C\":[\"Live, \",[\"0\"],\" phrases so far\"],\"qZoOxM\":[\"live, reads every \",[\"every\"],\" min\"],\"FSqzsC\":[\"Living canvas and popcorn\"],\"yQ2kGp\":[\"Load more\"],\"yQE2r9\":[\"Loading\"],\"participant.verify.instructions.loading\":[\"Loading\"],\"yQ9yN3\":[\"Loading actions...\"],\"participant.concrete.loading.artefact\":[\"Loading artefact\"],\"JOvnq+\":[\"Loading audit logs…\"],\"y+JWgj\":[\"Loading collections...\"],\"92/9LJ\":[\"Loading indicators and error messages give clearer feedback.\"],\"YyMToN\":[\"Loading members\"],\"IG63hz\":[\"Loading methodology\"],\"FUK4WT\":[\"Loading microphones...\"],\"Xan9/v\":[\"Loading projects...\"],\"GtQzAW\":[\"Loading this chat...\"],\"H+bnrh\":[\"Loading transcript...\"],\"3SKW0s\":[\"Loading verify topics…\"],\"eRq8Ag\":[\"Loading workspaces…\"],\"+yD+Wu\":[\"loading...\"],\"Z3FXyt\":[\"Loading...\"],\"Pwqkdw\":[\"Loading…\"],\"G2fuEb\":[\"Locked\"],\"pefb7Y\":[\"Locked conversation, upgrade to view\"],\"z32CuS\":[\"Locked to match the invite. To use a different address, ask the admin to re-invite that email.\"],\"sQia9P\":[\"Log in\"],\"L3Q5Lc\":[\"Log in to \",[\"resolvedWorkspaceName\"],\" to continue.\"],\"KC88rc\":[\"Log out and use the invited email\"],\"7Zt++i\":[\"Logging this with the dembrane team\"],\"z0t9bb\":[\"Login\"],\"LM/dWU\":[\"Login | dembrane\"],\"iG7KNr\":[\"Logo\"],\"2cm4WM\":[\"Logo removed\"],\"MjfaMh\":[\"Logo updated\"],\"nOhz3x\":[\"Logout\"],\"FTbR8B\":[\"Longest first\"],\"jWXlkr\":[\"Longest First\"],\"zVeM7b\":[\"Looking at the conversations…\"],\"tL2lBI\":[\"loop\"],\"IbyUFf\":[\"Low battery\"],\"tX9/Xs\":[\"make a workspace private\"],\"QqxHAZ\":[\"Make it private to share with specific people only. Private projects require the innovator plan or above.\"],\"icpEdc\":[\"Make private\"],\"pCYZVV\":[\"Make visible to the whole workspace\"],\"wckWOP\":[\"Manage\"],\"lXmPSL\":[\"Manage attendees\"],\"z0ndiD\":[\"Manage billing accounts, payments and workspace upgrade requests.\"],\"hB02vO\":[\"Manage members\"],\"WLAeKT\":[\"Manage organisation billing\"],\"mrenWs\":[\"Manage templates\"],\"2VeSf/\":[\"Manage training\"],\"C0hP/3\":[\"Manage workspace ownership, including internal and external data owners.\"],\"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.\"],\"IthddP\":[\"MCP access\"],\"TJA2es\":[\"MCP access | dembrane\"],\"TEPD/v\":[\"MCP access for \",[\"0\"],\" is off\"],\"OltKPi\":[\"MCP access for \",[\"0\"],\" is on\"],\"3cBKsf\":[\"З’єднання MCP дають твоєму агенту змогу знаходити проєкти, шукати розмови, читати транскрипти та переглядати документацію з контролем організації та явною згодою.\"],\"KV3Br0\":[\"MCP is a bridge that lets an AI assistant such as Claude, ChatGPT or Le Chat read your dembrane conversations and projects. It can see everything you can see, in the organisations you allow.\"],\"buUzBj\":[\"MCP URL\"],\"VxyuRJ\":[\"Meeting Notes\"],\"NwiNTb\":[\"member\"],\"OvoEq7\":[\"Member\"],\"deUR+U\":[\"Member removed\"],\"GnG6Oy\":[\"members\"],\"wlQNTg\":[\"Members\"],\"ZE0Hwt\":[\"Members of \",[\"0\"],\" will be able to connect AI agents to what they can already see here. The agent and the company running it receive that content.\"],\"v8o+Rn\":[\"Memory\"],\"u418B7\":[\"Memory removed\"],\"ltnOth\":[\"Message from the dembrane team\"],\"YcaR2g\":[\"Message is too long (maximum 32,000 characters). Please attach conversations or shorten your message.\"],\"08d+3x\":[\"Messages from \",[\"0\"],\" - \",[\"1\"],\"%\"],\"q0XhmI\":[\"Methodologies\"],\"m8tKkP\":[\"Methodology\"],\"hml7oE\":[\"Methodology created\"],\"l1/lbT\":[\"Methodology saved\"],\"e6I7Ej\":[\"Methodology updated\"],\"ADm81a\":[\"Mic blocked\"],\"+WoTL8\":[\"Mic checked\"],\"B+1PXy\":[\"Microphone access is still denied. Please check your settings and try again.\"],\"azjxk1\":[\"Не відповідає на питання\"],\"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\"],\"f8jrkd\":[\"more\"],\"2FYpfJ\":[\"Більше\"],\"JcD7qf\":[\"More actions\"],\"rAPyBz\":[\"Надійніша анонімізація та запис\"],\"MmhZK+\":[\"Надійніші підсумки розмов\"],\"YJLckp\":[\"More than 1000.\"],\"MDHqSE\":[\"More than 40.\"],\"UdGNo8\":[\"Корисніший контекст чату\"],\"QWdKwH\":[\"Move\"],\"3qp1VW\":[\"Move \\\"\",[\"0\"],\"\\\" to \",[\"targetWorkspaceName\"],\"? Members of the current workspace will lose access.\"],\"ZU6coV\":[\"Move \",[\"0\"],\" from \",[\"1\"],\" to \",[\"tier\"],\"?\"],\"8Pgx5L\":[\"Move \",[\"name\"],\" off dembrane-managed billing. Choose what happens to their plan.\"],\"CyKTz9\":[\"Move Conversation\"],\"vSmX52\":[\"Move conversations between projects and projects between workspaces in bulk.\"],\"cK3qrq\":[\"Move history\"],\"nthowT\":[\"Move project\"],\"WnyjBv\":[\"Move projects\"],\"7TYQRA\":[\"Move this project to the selected workspace?\"],\"fwyWPz\":[\"Move this project, with its conversations and reports, into a workspace you administer. You need to be an admin or owner of the destination workspace.\"],\"wUTBdx\":[\"Move to Another Project\"],\"zCpAZ1\":[\"Move to another workspace\"],\"Ksvwy+\":[\"Move to Project\"],\"5MzfrX\":[\"Multi-step analysis.\"],\"MK3wTj\":[\"Multilingual transcription and longer conversation replies are improved.\"],\"uzUz9i\":[\"Multiple languages\"],\"j7HfhZ\":[\"Має бути щонайменше через 10 хвилин\"],\"5hOInR\":[\"My access\"],\"en+4fS\":[\"My templates\"],\"6YtxFj\":[\"Name\"],\"e3/ja4\":[\"Name A-Z\"],\"8/brI5\":[\"Name is required\"],\"aFFbp6\":[\"Name it after the client, engagement, or purpose.\"],\"KxAfaR\":[\"Name it after the topic, engagement, or question you're exploring.\"],\"ztAdhw\":[\"Name updated\"],\"vfJR5V\":[\"Name your organisation to get started. You can invite members right after, or join other organisations later from settings.\"],\"5cahWP\":[\"Name your organisation. You can invite people next, or do it later from settings.\"],\"pfbjQ0\":[\"Name your workspace.\"],\"c5Xt89\":[\"Name Z-A\"],\"WcgzjF\":[\"name@example.com\"],\"CLjxnx\":[\"name@example.com, name2@example.com\"],\"AQjK0x\":[\"Named ways of working your team can reuse.\"],\"4VZ8gL\":[\"Names on the legend\"],\"O6KinN\":[\"Narratives\"],\"0l5mYK\":[\"Need more access? Ask the person who invited you to add you to the organisation or another workspace.\"],\"fAUSZy\":[\"Needs attention\"],\"qqeAJM\":[\"Never\"],\"isRobC\":[\"New\"],\"mdHOWX\":[\"New chat about this canvas\"],\"00MiO6\":[\"New chat modes and question suggestions support analysis.\"],\"Wmq4bZ\":[\"New Conversation Name\"],\"u2uElg\":[\"Новi розмови додано пiсля цього звiту\"],\"library.new.conversations\":[\"New conversations have been added since the creation of the library. Create a new view to add these to the analysis.\"],\"/yIxDf\":[\"Нові функції\"],\"QnAEjj\":[\"Нові функції, покращення та виправлення в dembrane.\"],\"CSz4y/\":[\"Новий вигляд, нові функції\"],\"UPRdvV\":[\"New methodology\"],\"MVaH2c\":[\"New organisation\"],\"/nT6AE\":[\"New password\"],\"7vhWI8\":[\"New Password\"],\"gKi+a/\":[\"New project\"],\"wzIR5D\":[\"New project | dembrane\"],\"C5tnUD\":[\"New projects no longer add dembrane as a default transcription term.\"],\"z6wcHz\":[\"New Report\"],\"ZfVx+G\":[\"New tier\"],\"curoK5\":[\"New workspace\"],\"cTUByn\":[\"Newest first\"],\"+RfVvh\":[\"Newest First\"],\"hXzOVo\":[\"Next\"],\"participant.button.next\":[\"Next\"],\"participant.verify.selection.button.next\":[\"Next\"],\"participant.verify.instructions.button.next\":[\"Next\"],\"1vEADD\":[\"Next invoice\"],\"ljNSDv\":[\"Next: pick a time\"],\"1UzENP\":[\"No\"],\"participant.button.finish.no.text.mode\":[\"No\"],\"oPoLg+\":[\"No access\"],\"VHfLAW\":[\"No accounts\"],\"riwuXX\":[\"No actions found\"],\"bZK9dL\":[\"No agent calls yet.\"],\"kfldmn\":[\"No agents connected yet.\"],\"Em+3Ls\":[\"No audit logs match the current filters.\"],\"Xmk0PY\":[\"No billing account yet. Email <0>support@dembrane.com and we'll set one up.\"],\"PVAfDk\":[\"No billing accounts match the current filters.\"],\"xz3y0A\":[\"No canvases yet\"],\"d2Jf1f\":[\"No change\"],\"project.sidebar.chat.empty.description\":[\"No chats found. Start a chat using the \\\"Ask\\\" button.\"],\"9nWRSv\":[\"No chats match your search.\"],\"r3iaI0\":[\"No chats yet.\"],\"Qqhl3R\":[\"No collections found\"],\"zsslJv\":[\"No content\"],\"1pZsdx\":[\"No conversations available to create library\"],\"library.no.conversations\":[\"No conversations available to create library. Please add some conversations to get started.\"],\"EtMtH/\":[\"No conversations found.\"],\"BuikQT\":[\"No conversations found. Start a conversation using the participation invite link from the <0><1>project overview.\"],\"PNz5nE\":[\"No conversations match these filters.\"],\"select.all.modal.no.conversations\":[\"No conversations were processed. This may happen if all conversations are already in context or don't match the selected filters.\"],\"YnWe3z\":[\"No conversations yet.\"],\"GKpO3x\":[\"Розмов ще немає. Ви можете запланувати звiт зараз, i розмови будуть включенi пiсля їх додавання.\"],\"oaDwXD\":[\"Типове значення не встановлено (діє керування клієнтом)\"],\"dl4q4O\":[\"no expiry\"],\"7Ad0TM\":[\"No explicit shares. Workspace admins still have access.\"],\"Fb9N7E\":[\"No external-led organisations yet.\"],\"cZ8DR9\":[\"Відгуків ще немає.\"],\"cqoc0B\":[\"No further charges\"],\"bl3Q4e\":[\"No goal yet. Set one here, or let the assistant interview you in chat.\"],\"wuFH13\":[\"No invites went out. Check the list below.\"],\"rwtE4m\":[\"No logo set. dembrane default will be used.\"],\"4TVVsS\":[\"No matches\"],\"IntpVZ\":[\"No matches found\"],\"JuBV6F\":[\"No members yet.\"],\"A4D9sY\":[\"No methodologies yet.\"],\"gr5hJS\":[\"No microphone was available. Check that one is connected and not in use elsewhere.\"],\"UfnqDf\":[\"No name\"],\"jfhDAK\":[\"No new feedback detected yet. Please continue your discussion and try again soon.\"],\"XOpCfj\":[\"No new invites needed. Check the list below.\"],\"nZsRCa\":[\"No one added yet\"],\"VylT70\":[\"No one else in this organisation yet\"],\"xp1ZnX\":[\"No one here yet.\"],\"wca+1p\":[\"No one is auto-blocked for non-payment. Watch failed charges here and follow up.\"],\"6iedjR\":[\"No one matches that filter.\"],\"RJSUJO\":[\"В організації поки нікого немає.\"],\"ZwZtAi\":[\"No one on this organisation yet.\"],\"/+Nxaa\":[\"No one shared yet\"],\"sAu4UE\":[\"No one's on the workspace yet.\"],\"/ksKg9\":[\"No organisation role. Access via workspace invites.\"],\"laeweW\":[\"No payments match the filter.\"],\"iV2Or0\":[\"No payments yet.\"],\"cqfchi\":[\"No PDF available for this invoice.\"],\"qPbs1l\":[\"No pending invites\"],\"X0DUuO\":[\"No project activity this period.\"],\"T3TyGx\":[\"No projects found \",[\"0\"]],\"y29l+b\":[\"No projects found for search term\"],\"YzI8q2\":[\"No projects match.\"],\"m0I2ba\":[\"No recent activity\"],\"9Y/ZE7\":[\"No referral agreements yet.\"],\"Cu/Lih\":[\"Приміток до випусків ще немає.\"],\"ctlSnm\":[\"No report found\"],\"1iQvuD\":[\"No reports yet\"],\"Ev2r9A\":[\"No results\"],\"pm345e\":[\"No selectable conversations\"],\"deovLP\":[\"No summary yet\"],\"WRRjA9\":[\"No tags found\"],\"LcBe0w\":[\"No tags have been added to this project yet. Add a tag using the text input above to get started.\"],\"KE6RCJ\":[\"No templates match {searchQuery}\"],\"ndv8BV\":[\"No trainings match your filters.\"],\"JmSs4s\":[\"No trainings yet.\"],\"bhqKwO\":[\"No Transcript Available\"],\"vq+6l+\":[\"No transcript exists for this conversation yet. Please check back later.\"],\"iSip01\":[\"No transcripts yet. You can run popcorn now; the screen fills as conversations land.\"],\"/uoEXj\":[\"No usage yet this cycle.\"],\"OdkUBk\":[\"No valid audio files were selected. Please select audio files only (MP3, WAV, OGG, etc).\"],\"tNWcWM\":[\"No verification topics are configured for this project.\"],\"pdWSGS\":[\"No verify topics available.\"],\"Z9sn1g\":[\"No version yet\"],\"+uY23Q\":[\"No webhooks configured\"],\"/PUkCU\":[\"No webhooks found\"],\"AtHA/x\":[\"No workspace access yet\"],\"nnCUYC\":[\"No workspace picked. They'll be added to \",[\"orgName\"],\" and can request workspace access themselves.\"],\"wn5bQU\":[\"No workspace role change. Add this person to the organisation, then re-invite from the workspace.\"],\"tPEiUj\":[\"No workspaces from this organisation are shared with you right now.\"],\"pxmfsY\":[\"No workspaces match \\\"\",[\"search\"],\"\\\".\"],\"xZSB25\":[\"None scheduled\"],\"PjeFWm\":[\"Not a valid email.\"],\"select.all.modal.not.added\":[\"Not Added\"],\"OJx3wK\":[\"Not available\"],\"1JEsYY\":[\"Not enabled by an admin of \",[\"0\"]],\"PBxg/E\":[\"Not now\"],\"Ua2NxX\":[\"Not on managed billing. Set to managed to invoice this account at the \",[\"tier\"],\" tier, with no automatic Mollie charges.\"],\"07Vguj\":[\"Not renewing\"],\"vaVAp0\":[\"Not scheduled\"],\"MTqQMG\":[\"Not set\"],\"mu1gVr\":[\"Not started\"],\"PVe0o5\":[\"Not sure yet.\"],\"kBpuXT\":[\"Not this one\"],\"vbpAZQ\":[\"Not trained\"],\"/hpEcX\":[\"note\"],\"1DBGsz\":[\"Notes\"],\"RYtZxa\":[\"Notes for our team\"],\"budBGD\":[\"Notes the assistant keeps about how you like to work, saved during your chats. Only you see these. Remove anything you don't want it to keep.\"],\"NdAad3\":[\"Notes the assistant saved about this project from chats. Everyone who chats in this project shares them.\"],\"WAy8m5\":[\"Notes the assistant saved about this workspace from chats. Everyone in the workspace shares them.\"],\"DZMptz\":[\"Nothing from dembrane right now.\"],\"DN72IZ\":[\"Nothing here for you yet.\"],\"yFnB+H\":[\"nothing here yet\"],\"0IdomT\":[\"Nothing is sent until you send it. Edit anything below first.\"],\"we3tJT\":[\"Nothing matches the filter.\"],\"610qM/\":[\"Nothing saved yet. The assistant adds notes here as people chat.\"],\"6rAlvZ\":[\"Nothing saved yet. The assistant adds notes here as you chat.\"],\"yebagU\":[\"Notify participants when a report is published.\"],\"hGA9Wy\":[\"Observer\"],\"phUtHZ\":[\"Observers (free)\"],\"k9cwCQ\":[\"Observers are free and read-only, and only for external-client workspaces. They can view the workspace but cannot chat, generate reports, or edit. To let them do more, change their role to External.\"],\"RfY3gN\":[\"Observers are free, read-only guests. To give edit access, remove them and re-invite as a member.\"],\"JIE4kF\":[\"Observers are only available in workspaces for an external client. Pick only external-client workspaces, or choose a different role.\"],\"Bdtwnw\":[\"off\"],\"az8lvo\":[\"Off\"],\"YMP58l\":[\"Off numbers the conversations. On shows the name typed on the phone, which may be a person's.\"],\"6Aih4U\":[\"Offline\"],\"n6QD94\":[\"Oldest first\"],\"9+6THi\":[\"Oldest First\"],\"Fdp03t\":[\"on\"],\"Z5HWHd\":[\"On\"],\"Hktelz\":[\"On dembrane-managed billing. Switching to self-serve keeps the tier and shows the customer the checkout to set up card payment.\"],\"er1mH/\":[\"On recording page\"],\"participant.verify.instructions.revise.artefact\":[\"Once you have discussed, hit \\\"revise\\\" to see the \",[\"objectLabel\"],\" change to reflect your discussion.\"],\"participant.verify.instructions.read.aloud\":[\"Once you receive the \",[\"objectLabel\"],\", read it aloud and share out loud what you want to change, if anything.\"],\"lKCG/O\":[\"One big event at the end of the year\"],\"O3G8il\":[\"One day in October\"],\"qvLmaf\":[\"One lowercase letter\"],\"+P5Okg\":[\"One number\"],\"m5rZjl\":[\"One symbol\"],\"MKUgK1\":[\"One uppercase letter\"],\"qitPxp\":[\"One-off\"],\"J6n7sl\":[\"Ongoing\"],\"conversation.ongoing\":[\"Ongoing\"],\"yAVA7C\":[\"Ongoing conversations\"],\"a//PzZ\":[\"Only change this setting in consultation with the responsible person(s) for data protection within your organisation.\"],\"z7dMhl\":[\"Додавати можна лише зображення\"],\"uaB4AS\":[\"Only organisation admins and owners can create workspaces. Ask an admin on your organisation to create one, or to promote you first.\"],\"0WLwiw\":[\"Only people already in this workspace can be added. Invite them to the workspace first if they aren't here yet.\"],\"xbDpkO\":[\"Only the people you add or invite can see it.\"],\"K/CPkL\":[\"Only when recording an invoice already paid out-of-band.\"],\"fKQbMI\":[\"Only workspace admins and the people you invite can open this project.\"],\"BKONOC\":[\"Лише адміністратори робочого простору можуть змінювати правову підставу.\"],\"C/Sx14\":[\"Only workspace admins can change these settings. Ask an admin if something needs updating.\"],\"4UuIbT\":[\"Only you can see this workspace.\"],\"participant.alert.microphone.access.failure\":[\"Oops! It looks like microphone access was denied. No worries, though! We've got a handy troubleshooting guide for you. Feel free to check it out. Once you've resolved the issue, come back and visit this page again to check if your microphone is ready.\"],\"1TNIig\":[\"Open\"],\"mM0CFq\":[\"Open \",[\"label\"]],\"e8gyri\":[\"Open account actions\"],\"tcgf5/\":[\"Open all\"],\"yCDcIF\":[\"Open chat documentation\"],\"uIKeEf\":[\"Open conversation\"],\"3iEiGI\":[\"Open conversations through direct links.\"],\"EUQ7ko\":[\"Open documentation\"],\"aRGGej\":[\"Open for participation\"],\"CD3rbs\":[\"Open host guide\"],\"f04uGY\":[\"Open in library\"],\"c9rlQI\":[\"Open Mollie dashboard\"],\"iZD9CK\":[\"Open organisation\"],\"lYgDz/\":[\"Open presenter view\"],\"KI70Do\":[\"Відкрити запис\"],\"urJv1o\":[\"Open tabs recover after a new deployment instead of getting stuck on an old page.\"],\"FBPD+d\":[\"Open the \",[\"0\"],\" from here.\"],\"OG3wju\":[\"Open the chat\"],\"828iLy\":[\"Open the original invitation email and click the link from there, or ask the inviter to send a new invite.\"],\"YF3eVi\":[\"Open the public page\"],\"FZ5fed\":[\"Open the troubleshooting guide\"],\"m9eUZO\":[\"Open to the workspace\"],\"l+3bjq\":[\"Open transcript\"],\"participant.button.open.troubleshooting.guide\":[\"Open troubleshooting guide\"],\"f/LR+l\":[\"Open What's new from the sidebar and watch the organisation, workspace and project walkthrough.\"],\"Gc/l1s\":[\"Open workspace\"],\"F7e1nt\":[\"Open workspace actions\"],\"Hak8r6\":[\"Open your authenticator app and enter the current six-digit code.\"],\"rPRgw+\":[\"Opt-in to experimental features and help shape dembrane. These features might change or be removed at any time.\"],\"LLAa/9\":[\"Optional\"],\"ZFIvWo\":[\"Optional (falls back to English)\"],\"V44CS4\":[\"Optional field on the start page\"],\"bkndzy\":[\"Optional field on the thank you page\"],\"xam4uE\":[\"Необов'язкове запитання \",[\"0\"],\" з \",[\"1\"]],\"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\"],\"rlfKu+\":[\"Organisation admins can join private workspaces from the members page.\"],\"93UwXg\":[\"Адміністратори організації можуть приєднуватися до приватних просторів зі сторінки учасників. Параметри доступу пояснюють, коли спершу потрібно приєднатися до простору.\"],\"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.\"],\"OMujDz\":[\"Organisation members load faster.\"],\"m9HLnV\":[\"Organisation name\"],\"IvGxhL\":[\"Organisation not found\"],\"B38pCE\":[\"Organisation only\"],\"kzWAph\":[\"Organisation usage\"],\"GoZkew\":[\"Organisations\"],\"usabod\":[\"Organisations | dembrane\"],\"qdq0Jp\":[\"Organisations created by people who are external collaborators of a partner. A signal they may want their own plan.\"],\"Y3LC1c\":[\"Організації, робочі простори та проєкти\"],\"+4woA3\":[\"Organise projects into workspaces within your organisation.\"],\"pEAPjl\":[\"Організовуйте роботу в просторах, запрошуйте зовнішніх співпрацівників і спостерігачів та керуйте доступом із нової бічної панелі. Переміщуйте розмови між проєктами, а проєкти між просторами.\"],\"+g4lbW\":[\"Організовуйте роботу в організаціях, робочих просторах і проєктах та чіткіше керуйте доступом.\"],\"ucgZ0o\":[\"Організація\"],\"/IX/7x\":[\"Інше\"],\"x0FjQV\":[\"Наш перший великий випуск\"],\"GC75c7\":[\"Outcome approved successfully!\"],\"QLXrh9\":[\"Outcome reloaded successfully!\"],\"LJg1UW\":[\"Outcome revised successfully!\"],\"df3S+R\":[\"Outcome updated!\"],\"1fjbvD\":[\"outcomes\"],\"ZU3zZC\":[\"Outcomes\"],\"NTkmOk\":[\"Overage billing applies\"],\"6KkwPT\":[\"Перевизначено для цього проєкту\"],\"AR/qbs\":[\"Перевизначити для цього проєкту\"],\"6/dCYd\":[\"Overview\"],\"/fAXQQ\":[\"Overview - Themes & patterns\"],\"oDAEQq\":[\"Ownership\"],\"OwPQJt\":[\"Ownership is locked. Contact support to transfer.\"],\"HSAzUy\":[\"Owning organisation\"],\"Wu++6g\":[\"Page Content\"],\"8F1i42\":[\"Page not found\"],\"6+Py7/\":[\"Page Title\"],\"v4nCHK\":[\"Paid\"],\"uneeEC\":[\"partially completed\"],\"v8fxDX\":[\"Participant\"],\"h3AUOJ\":[\"Participant Email\"],\"WdEzKM\":[\"Participant Emails\"],\"Uc9fP1\":[\"Participant Features\"],\"hRcUJQ\":[\"Participant name\"],\"rMCv1T\":[\"Participant name and email\"],\"Nqs/bT\":[\"Participant onboarding cards have clearer wording and corrected translations.\"],\"CmOBUh\":[\"Participant updates subscription\"],\"DbvvEo\":[\"Participant verification\"],\"MZHPuB\":[\"Participants\"],\"fVlUox\":[\"Participants can request a reply during a recording.\"],\"Ya1KaH\":[\"Учасники можуть запитати відповідь під час запису й читати її в міру надходження. Ведучі вмикають відповіді й налаштовують інструкцію в параметрах порталу.\"],\"HxF3Iz\":[\"Participants can verify outcomes and refine replies.\"],\"ezpFHx\":[\"Учасники можуть перевіряти результати та уточнювати відповіді. Нові режими й підказки допомагають аналізу, а двофакторна автентифікація доповнює вхід.\"],\"JT0fPF\":[\"Participants receive a reminder to verify before ending a conversation.\"],\"y4n1fB\":[\"Participants will be able to select tags when creating conversations\"],\"yIBVHx\":[\"partner\"],\"71zZ31\":[\"Partner\"],\"q7+cNu\":[\"Partner organisation\"],\"LkuJMH\":[\"Partner workspace, billed on its own and not part of the organisation's plan.\"],\"qC5k4V\":[\"Partner workspace, billed separately from the organisation.\"],\"8ZsakT\":[\"Password\"],\"zJx6Vx\":[\"Password changed\"],\"PxRsoo\":[\"Password does not meet the requirements.\"],\"lpIMne\":[\"Passwords do not match\"],\"PiZs9N\":[\"Paste it into any page. It stays live.\"],\"PTSHeg\":[\"Pause reading\"],\"KXsZLF\":[\"Pause updates\"],\"URAE3q\":[\"Paused\"],\"XaA5fF\":[\"Paused.\"],\"6Dmao4\":[\"Paused. Updated \",[\"updatedAgo\"],\".\"],\"OaEEAM\":[\"Pay now\"],\"VwkrOQ\":[\"Paying revenue\"],\"VESsDr\":[\"Paying revenue this month\"],\"pJxzaT\":[\"Payment failed\"],\"/CNehZ\":[\"Payment link amount, EUR\"],\"GfJaff\":[\"Payment link issued.\"],\"ENEPLY\":[\"Payment method\"],\"sni5ir\":[\"Payment reference\"],\"Kd2B1D\":[\"Payment went through. Your plan is up to date.\"],\"S48xcO\":[\"pending\"],\"UbRKMZ\":[\"Pending\"],\"EaYDGF\":[\"Pending access requests\"],\"V1wW5o\":[\"Pending action\"],\"sU2oO4\":[\"Pending invites\"],\"GC714A\":[\"Pending invites | dembrane\"],\"gPRsPw\":[\"people\"],\"1wdjme\":[\"People\"],\"t9qtWL\":[\"People with access\"],\"Uoqcz2\":[\"Per-recipient results:\"],\"hkffer\":[\"Per-workspace access\"],\"SrVzRe\":[\"Percent\"],\"NtQvjo\":[\"Period\"],\"D0meML\":[\"person\"],\"t4wIPl\":[\"Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"zmwvG2\":[\"Phone\"],\"B8mlc2\":[\"Оберiть дату\"],\"8hUAfY\":[\"Pick a time\"],\"rwgOir\":[\"Обрати час зараз\"],\"635Oq4\":[\"Pick a time with \",[\"host\"],\".\"],\"PYDbNJ\":[\"Pick an account\"],\"hZjgId\":[\"Pick at least one workspace to send the invite.\"],\"NCubup\":[\"Pick from your organisation, or type an email to invite.\"],\"m+EMny\":[\"Pick one\"],\"6v5aT9\":[\"Pick the approach that fits your question\"],\"U1Tudq\":[\"Pilot limit reached\"],\"qVkGWK\":[\"Pin\"],\"u8qC4w\":[\"Pin project\"],\"S+WiJ3\":[\"Pin templates here for quick access.\"],\"YIuMHE\":[\"Pin up to three projects to the top of your project list.\"],\"w1aJIz\":[\"Pin your most-used templates directly in chat.\"],\"kNiQp6\":[\"Pinned\"],\"LdWQ+0\":[\"Pinned is full (max 5)\"],\"EC6BHi\":[\"Pinned projects\"],\"RimR35\":[\"Pinned templates\"],\"afV5A2\":[\"Plan ends\"],\"Iqh0Uv\":[\"Planned\"],\"lWy5a1\":[\"Plans\"],\"PI95wJ\":[\"Plans, gathers, and checks its work across many conversations.\"],\"PKrSWk\":[\"Please accept the terms to continue.\"],\"participant.alert.microphone.access\":[\"Please allow microphone access to start the test.\"],\"SQSc5o\":[\"Please check back later or contact the project owner for more information.\"],\"T8REcf\":[\"Please check your inputs for errors.\"],\"n6oAnk\":[\"Please enable participation to enable sharing\"],\"fwrPh4\":[\"Please enter a valid email.\"],\"ZhyvmA\":[\"Please log in to continue.\"],\"MXEkrp\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording)\"],\"Lu1j4b\":[\"Please record your response by clicking the \\\"Record\\\" button below. You may also choose to respond in text by clicking the text icon.\\n**Please keep this screen lit up**\\n(black screen = not recording).\\nThis transcript will be anonymized and your host will not be able to listen to your recording.\"],\"library.processing.request\":[\"Please wait while we process your request. You requested to create the library on \",[\"0\"]],\"04DMtb\":[\"Please wait while we process your retranscription request. You will be redirected to the new conversation when ready.\"],\"6MncU0\":[\"plus workspace admins\"],\"rhEYMw\":[\"PNG, JPEG, or WebP. Will be cropped to a circle.\"],\"jjdudv\":[\"Погана відповідь\"],\"w/RgmN\":[\"Popcorn\"],\"y8SDrp\":[\"Popcorn could not be loaded. Try again in a moment.\"],\"QcoM20\":[\"Popcorn shows a room its own words while it is still talking: live slides from this project's conversations, for a big screen. It is early, and you can turn it off again in the project settings.\"],\"gL/sdV\":[\"Popular\"],\"uRFMMc\":[\"Portal Content\"],\"ivjxif\":[\"Portal description\"],\"oNb5Ox\":[\"portal editor\"],\"694+8E\":[\"Portal editor\"],\"qVypVJ\":[\"Portal Editor\"],\"OZYxCC\":[\"Portal finish message\"],\"FNuwSz\":[\"Portal language\"],\"gKSdKz\":[\"Portal open for new conversations\"],\"XfoCxn\":[\"Portal Overview\"],\"fSWnrh\":[\"Portal previews and supporting images display correctly.\"],\"qLWG8R\":[\"Portal title\"],\"D5roJB\":[\"Portal tutorial\"],\"U4aiMW\":[\"Postal code\"],\"cWkKWE\":[\"praise\"],\"E7dbXD\":[\"Prefer talking? Press record and just say it.\"],\"m/aSQ0\":[\"Prepare sessions with an editable host guide next to the QR code.\"],\"HVcm1v\":[\"Готуйте сеанси з редагованим посібником, збирайте електронні адреси й анонімізуйте транскрипти. Оновлення також додає власні логотипи й автоматичні назви розмов.\"],\"kBa6hc\":[\"Preparing a navigation shortcut\"],\"9vB8nN\":[\"Preparing the first update.\"],\"xVEtui\":[\"Preparing this canvas\"],\"/SM3Ws\":[\"Preparing your experience\"],\"rdUucN\":[\"Preview\"],\"hyneRf\":[\"Preview: The quick brown fox jumps over the lazy dog.\"],\"DHhJ7s\":[\"Попередній\"],\"a7u1N9\":[\"Price\"],\"UoByX/\":[\"Print / Save PDF\"],\"S8ugMC\":[\"Print report\"],\"rjGI/Q\":[\"Privacy\"],\"7IDDky\":[\"URL політики конфіденційності\"],\"zwBp5t\":[\"Private\"],\"Q7R6ZJ\":[\"Private · only invited people can see this\"],\"i4YTOL\":[\"Private project\"],\"1vsuTU\":[\"Private workspace\"],\"FdLMTd\":[\"Private workspaces come with a paid plan.\"],\"1ihBUA\":[\"Private. Add people to share it.\"],\"qAGp2O\":[\"Proceed\"],\"select.all.modal.proceed\":[\"Proceed\"],\"select.all.modal.loading.description\":[\"Processing <0>\",[\"totalCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" and adding them to your chat\"],\"gzGDMM\":[\"Processing your retranscription request...\"],\"byJgGz\":[\"Procurement help\"],\"ysxgu8\":[\"project\"],\"e0NrBM\":[\"Project\"],\"Z0EW4S\":[\"Project actions\"],\"loCMRJ\":[\"Пошук проєктів і розмов із брендованими QR-кодами.\"],\"Ybdz4C\":[\"Project cards show the project's language.\"],\"eBFgFZ\":[\"project chats\"],\"2LxK9d\":[\"Project context\"],\"RYrbVH\":[\"Project created\"],\"Hie0VV\":[\"Project Created\"],\"zjTrs1\":[\"Project default: enabled. Personal information will be replaced with placeholders. Audio playback, download, and retranscription will be disabled for the new conversation.\"],\"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\"],\"ZA0drz\":[\"Project lists show accurate conversation totals.\"],\"QDjWwu\":[\"Project Meta Summary\"],\"lltun+\":[\"Project moved\"],\"OyIC0Q\":[\"Project name\"],\"3gh0L6\":[\"Project name and ID\"],\"6Z2q2Y\":[\"Project name must be at least 4 characters long\"],\"n7JQEk\":[\"Project not found\"],\"uMobxw\":[\"project overview\"],\"q0+yfq\":[\"Project Overview | dembrane\"],\"3YND3K\":[\"project settings\"],\"Wsk5pi\":[\"Project Settings\"],\"7NmoFz\":[\"Projected monthly total\"],\"gitVS9\":[\"Projected yearly total\"],\"M9H+/G\":[\"projects\"],\"+0B+ue\":[\"Projects\"],\"DK5DV3\":[\"Projects | dembrane\"],\"B1WDxD\":[\"Projects across organisation · \",[\"0\"]],\"uNGCZL\":[\"Projects moved\"],\"2ugVVF\":[\"Projects will show up here once someone on the organisation shares one with you.\"],\"W9uQXX\":[\"Prompt\"],\"3sRog+\":[\"Proposed\"],\"pAY+Io\":[\"Proposed changes\"],\"Aka3jE\":[\"Prorated for the rest of this billing period.\"],\"vA3+jQ\":[\"Protect sign-in with two-factor authentication.\"],\"nyEOdh\":[\"Provide an overview of the main topics and recurring themes\"],\"UhK148\":[\"Public page\"],\"EEYbdt\":[\"Publish\"],\"vsX8VJ\":[\"Publish this report first to show the portal link\"],\"IHzoSN\":[\"Publish this report to get a share link\"],\"u3wRF+\":[\"Published\"],\"E7YTYP\":[\"Pull out the most impactful quotes from this session\"],\"NHHXdL\":[\"Put \",[\"name\"],\" on dembrane-managed billing at the \",[\"tier\"],\" tier? No automatic Mollie charges or auto-expiry.\"],\"gCX4Z9\":[\"QR code\"],\"bfgr/e\":[\"Запитання\"],\"4PTJUv\":[\"Questions about how dembrane works, not only about your data.\"],\"XhrBin\":[\"Ran \",[\"0\"],\" steps at once\"],\"iZuzSU\":[\"Rate limited\"],\"z1U/Fh\":[\"Оцінка\"],\"wr9IYa\":[\"Re-enter new password\"],\"0ZBIgY\":[\"Re-use settings from an existing webhook\"],\"Z5Tlsx\":[\"Зв'яжіться зі мною\"],\"D2yGaZ\":[\"Reactivate\"],\"Pkpg2N\":[\"Reactivate plan\"],\"wZxwNu\":[\"Read aloud\"],\"hWUdE5\":[\"Read assistant answers as they arrive.\"],\"RajDze\":[\"read conversations, transcripts, projects and settings you can see\"],\"bwxs7k\":[\"Read every 2 minutes for\"],\"C4TjpG\":[\"Read less\"],\"8fZueG\":[\"Read more →\"],\"ZGjKp1\":[\"Read product announcements in the dashboard.\"],\"ITpS63\":[\"Read replies as they arrive.\"],\"wOfACA\":[\"Read the troubleshooting guide for transcripts and summaries\"],\"6pSHJ5\":[\"Read-only\"],\"WU7BCa\":[\"Reading \",[\"0\"],\"'s summary\"],\"tFk6c8\":[\"Reading \",[\"0\"],\"'s transcript\"],\"+nnTex\":[\"Reading \",[\"reading\"],\" of \",[\"0\"],\" conversations…\"],\"E3kwAc\":[\"Reading a conversation summary\"],\"LpWlYq\":[\"Reading a skill\"],\"9UTzRO\":[\"Reading a transcript\"],\"/Uj7Jw\":[\"Reading everything again\"],\"DYyFO2\":[\"Reading project context\"],\"ug1A83\":[\"Reading project settings\"],\"ODhB1N\":[\"Reading the conversations again\"],\"IdmBAm\":[\"Reading the documentation\"],\"XUDIDs\":[\"Reads every 2 minutes. Refresh reads now.\"],\"participant.ready.to.begin\":[\"Ready to Begin?\"],\"ShoKlK\":[\"Ready to connect your tools? Add a webhook to automatically receive conversation data when events happen.\"],\"VJScHU\":[\"Причина\"],\"Xc0UKh\":[\"reason: \",[\"0\"]],\"0f3uxy\":[\"Recent payments across all accounts\"],\"mzcrRN\":[\"recently\"],\"hpnYpo\":[\"Recommended apps\"],\"participant.button.s3check.reconnect\":[\"Reconnect\"],\"participant.button.interruption.reconnect\":[\"Reconnect\"],\"BakXLg\":[\"Reconnecting\"],\"participant.button.record\":[\"Record\"],\"462bGY\":[\"Record a voice message\"],\"s4Sz7r\":[\"Record another conversation\"],\"XmKjfh\":[\"Recording\"],\"677McA\":[\"Recording and keeping devices awake work more reliably.\"],\"1b/b8T\":[\"Recording checks the audio upload connection.\"],\"3gnwKb\":[\"Recording conference sessions.\"],\"HCC0Bp\":[\"Recording conversations you have in person, like street interviews.\"],\"yRmJ54\":[\"Recording devices stay awake more reliably.\"],\"YR6uHM\":[\"Пристрої надійніше залишаються активними. Виправлено вступні кроки для учасників, уточнення відповідей і вибір розмов у чаті Specific Details.\"],\"DKaN8g\":[\"Recording duration stays accurate after pausing and resuming.\"],\"participant.modal.interruption.title\":[\"Recording interrupted\"],\"yjom5N\":[\"Recording keeps working, so your participants are unaffected.\"],\"+pHAyZ\":[\"Recording links can prefill a title, tags and participant name.\"],\"4IbgAX\":[\"Recording page\"],\"participant.modal.pause.title\":[\"Recording Paused\"],\"/l7qFE\":[\"Recording started\"],\"POxNnV\":[\"Recording stopped at the five minute limit. Turning what you recorded into text.\"],\"kHphsJ\":[\"Recording waits for audio uploads before finishing, preventing missing transcripts on affected browsers.\"],\"view.recreate.tooltip\":[\"Recreate View\"],\"view.recreate.modal.title\":[\"Recreate View\"],\"CqnkB0\":[\"Recurring Themes\"],\"zKZCRh\":[\"Reference \",[\"reference\"]],\"9aloPG\":[\"References\"],\"P1xi25\":[\"Refine shows the correct label and cannot run while another reply is being generated.\"],\"lCF0wC\":[\"Refresh\"],\"ZMXpAp\":[\"Refresh audit logs\"],\"rOwugh\":[\"Refresh now\"],\"1STMKj\":[\"Refresh ongoing conversations\"],\"eEud7e\":[\"Refresh started\"],\"WqYAGe\":[\"Refresh will work when the canvas service is ready.\"],\"zVuxvN\":[\"Refreshing…\"],\"6exX+8\":[\"Regenerate\"],\"PpFJd2\":[\"Regenerate summary\"],\"bluvj0\":[\"Regenerate Summary\"],\"participant.regenerating.outcome\":[\"Regenerating the outcome\"],\"oYlYU+\":[\"Regenerating the summary. Please wait...\"],\"HPitDS\":[\"Register | dembrane\"],\"/PACVa\":[\"Примітки до випусків\"],\"Gm7/K+\":[\"Примітки до випусків | dembrane\"],\"UcLJ6I\":[\"Release video\"],\"GHub6e\":[\"Відео випуску: \",[\"0\"]],\"tF5Smn\":[\"Перезавантажити сторінку\"],\"participant.button.reload.page.text.mode\":[\"Reload Page\"],\"participant.button.reload\":[\"Reload Page\"],\"participant.concrete.artefact.action.button.reload\":[\"Reload Page\"],\"Lbcvrt\":[\"Remember you can always use the Feedback button for suggestions. We appreciate all your support, and thank you for using dembrane.\"],\"vqD7S+\":[\"Remind users to verify before finishing\"],\"tmHC17\":[\"Reminder sent: support access still on\"],\"t/YqKh\":[\"Remove\"],\"w61W3L\":[\"Видалити \",[\"0\"]],\"G0aZvo\":[\"Remove \",[\"0\"],\" from this workspace? They'll lose access to all projects inside it.\"],\"VoKjPv\":[\"Remove avatar\"],\"Kl7//J\":[\"Remove Email\"],\"cILfnJ\":[\"Remove file\"],\"tOkPHm\":[\"Remove from chat\"],\"1G/+Gj\":[\"Remove from organisation\"],\"18PmZk\":[\"Remove from organisation?\"],\"CJgPtd\":[\"Remove from this chat\"],\"O90CN2\":[\"Remove logo\"],\"99VIgC\":[\"Remove member\"],\"c8Kx/b\":[\"Видалити перевизначення\"],\"Gr8pvR\":[\"Remove the custom logo? The dembrane default will be used instead.\"],\"itsN5H\":[\"Remove this memory?\"],\"eps54V\":[\"Removed\"],\"nVEhnc\":[\"Removed from organisation\"],\"project.sidebar.chat.rename\":[\"Rename\"],\"6PsaMr\":[\"Rename chat\"],\"TBZOgu\":[\"Renewal\"],\"M7SqjM\":[\"Reopen\"],\"m290vd\":[\"Запис\"],\"rnkWZt\":[\"Replies to participants\"],\"XfEPZ0\":[\"Reply buttons, chat templates and the Library have corrected translations.\"],\"1jBoqr\":[\"Reply guidance\"],\"X9GEGX\":[\"Reply mode\"],\"XyN13i\":[\"Reply Prompt\"],\"w1tLX2\":[\"report\"],\"gjpdaf\":[\"Report\"],\"e/MQa5\":[\"Report already generating\"],\"Q3LOVJ\":[\"Повідомити про проблему\"],\"DUmD+q\":[\"Report Created - \",[\"0\"]],\"hh/mvZ\":[\"Report generation cancelled\"],\"LpkbUS\":[\"Report generation continues in the background with a visible status.\"],\"sSy8vA\":[\"Report generation in progress...\"],\"v7O77U\":[\"Report generation was cancelled. You can start a new report below.\"],\"RyW1HO\":[\"Report generation, retranscription, project cloning and chat history receive reliability fixes.\"],\"5LikE4\":[\"Report issues from the dashboard with images and voice recordings.\"],\"IoQrps\":[\"Повідомляйте про проблеми зображеннями або голосом, оцінюйте відповіді чату та запитуйте відповідний план. Установіть стандартну правову підставу для робочого простору.\"],\"fIBsri\":[\"Report limit reached\"],\"hIQOLx\":[\"Report Notifications\"],\"M9snPp\":[\"Report scheduled\"],\"6g+4DA\":[\"Повідомлення надіслано. Дякуємо\"],\"RVrIOm\":[\"Report subscriptions, Library generation and live indicators receive fixes.\"],\"u9r3Di\":[\"Report templates are on our roadmap.\"],\"lNo4U2\":[\"Report Updated - \",[\"0\"]],\"t9yxlZ\":[\"Reports\"],\"E1vQT6\":[\"Request \",[\"0\"],\" training\"],\"w//ise\":[\"Request a plan through the needs form and book a follow-up call.\"],\"qbXLnJ\":[\"Request a training\"],\"WdCAhr\":[\"Request access\"],\"library.request.access\":[\"Request Access\"],\"cH8Bhd\":[\"Request approved\"],\"ViqcVt\":[\"Request declined\"],\"jI02E7\":[\"Request denied.\"],\"/3O5R/\":[\"Request failed\"],\"dglEEO\":[\"Request Password Reset\"],\"8H5nRH\":[\"Request Password Reset | dembrane\"],\"1RVBJe\":[\"Request sent\"],\"OQsKlA\":[\"Request sent. The workspace admins were notified.\"],\"b44axA\":[\"Request sent. Waiting for the workspace admins.\"],\"7rVjfL\":[\"Request support access\"],\"XmXfrX\":[\"Request withdrawn.\"],\"Yx0Ud8\":[\"Requested\"],\"VRpBev\":[\"Requested and scheduled trainings. Mark a training complete to grant each attendee a one-year license.\"],\"PXQc8Y\":[\"Requester\"],\"participant.alert.microphone.access.loading\":[\"Requesting microphone access to detect available devices...\"],\"TMLAx2\":[\"Required\"],\"0Hf+6m\":[\"Requires \\\"Ask for Email?\\\" to be enabled\"],\"yz/C2/\":[\"Rerun\"],\"vETdRO\":[\"Rerun popcorn?\"],\"QqW27M\":[\"Reschedule\"],\"6eIR/n\":[\"Перепланувати на\"],\"ZSTojU\":[\"Resend invite\"],\"8WtTog\":[\"Resend invite email\"],\"OfhWJH\":[\"Reset\"],\"I9EnzM\":[\"Reset filters\"],\"KbS2K9\":[\"Reset Password\"],\"9uplIY\":[\"Reset Password | dembrane\"],\"L+rMC9\":[\"Reset to default\"],\"kX8Fjz\":[\"Відгук про відповідь\"],\"participant.button.stop.resume\":[\"Resume\"],\"1K1kvB\":[\"Resume plan\"],\"85Qjyx\":[\"Resume updates\"],\"ioYnu6\":[\"retracted\"],\"fM1Ldq\":[\"retracted for the dembrane team\"],\"AWy1Kd\":[\"Retracting a note for the dembrane team\"],\"sVzC0H\":[\"Retranscribe\"],\"ehyRtB\":[\"Retranscribe conversation\"],\"1JHQpP\":[\"Retranscribe Conversation\"],\"+gmVxi\":[\"Retranscription not available for anonymized conversations\"],\"MXwASV\":[\"Retranscription started. New conversation will be available soon.\"],\"6gRgw8\":[\"Retry\"],\"zHJTti\":[\"Retry now\"],\"H1Pyjd\":[\"Retry Upload\"],\"2fCpt5\":[\"Повернутися на головну\"],\"5k0NLb\":[\"Review\"],\"9VUzX4\":[\"Review activity for your workspace. Filter by collection or action, and export the current view for further investigation.\"],\"ECoHYI\":[\"Review again\"],\"dSCHZP\":[\"Review and edit below. This adds a check that runs against each conversation. Verification must be enabled for it to run. Nothing changes until you add it.\"],\"Tqa1v9\":[\"Review before creating.\"],\"UZVWVb\":[\"Review files before uploading\"],\"OybZ3y\":[\"Review my project settings and suggest improvements.\"],\"3lYF/Z\":[\"Review processing status for every conversation collected in this project.\"],\"JuDdMd\":[\"Review, edit, and open every conversation in this project.\"],\"participant.concrete.action.button.revise\":[\"Revise\"],\"OG3mVO\":[\"Revision #\",[\"revisionNumber\"]],\"qFXJ2F\":[\"Revision history\"],\"GXsAby\":[\"Revoke\"],\"jjsSSc\":[\"Revoke invite\"],\"HZn3qT\":[\"Revoke license\"],\"TUcQqn\":[\"Revoke the invite sent to \",[\"0\"],\"? You can invite them again later.\"],\"jERTs2\":[\"Revoke this connection?\"],\"xGiT1z\":[\"Revoked\"],\"kv1ztT\":[\"Right-click to highlight\"],\"GDvlUT\":[\"Role\"],\"QjMlvE\":[\"Role changed\"],\"jQ6I8X\":[\"Role updated\"],\"wbV5uX\":[\"Rough estimate to finish transcribing the backlog\"],\"/9oiI7\":[\"Roughly how many?\"],\"xxCtZv\":[\"Rows per page\"],\"3JjdaA\":[\"Run\"],\"CzoXi+\":[\"Run transcription again for an existing conversation.\"],\"SztYsc\":[\"Запускайте транскрипцію наявної розмови знову. Також оновлено документацію нідерландською.\"],\"RiQMUh\":[\"Running\"],\"i39IXZ\":[\"Sales invoice issued.\"],\"uMLZq+\":[\"Sample popcorn session\"],\"tfDRzk\":[\"Save\"],\"participant.concrete.action.button.save\":[\"Save\"],\"GsV2va\":[\"Save access\"],\"BnmEvM\":[\"Save as template\"],\"gjqGP0\":[\"Save billing details\"],\"IUwGEM\":[\"Save Changes\"],\"qjHQoH\":[\"Save discount\"],\"2VA/7X\":[\"Save Error!\"],\"5dVjYt\":[\"Save template\"],\"idD8Ev\":[\"Saved\"],\"nwfMv/\":[\"Saved appearance settings apply when the page first loads.\"],\"8AhhHy\":[\"Saved as this project's goal.\"],\"MOKoMy\":[\"Saved in the history. A rerun keeps these.\"],\"XvjC4F\":[\"Saving...\"],\"4zcRa6\":[\"Say it in your own words. Type, or press record and talk.\"],\"JnhbnC\":[\"Scan or click the QR code to open the feedback portal\"],\"nHeO/c\":[\"Scan the QR code or copy the secret into your app.\"],\"SGnha7\":[\"Scan to join this project\"],\"4ldzRd\":[\"Відскануйте, щоб почати нову сесію порталу\"],\"NAe+hu\":[\"Scanned\"],\"epl7MR\":[\"Scanned \",[\"0\"],\" times\"],\"iQbBJn\":[\"Scanned the QR\"],\"gmB6oO\":[\"Schedule\"],\"wCGy0o\":[\"Schedule Report\"],\"uUP8ek\":[\"Schedule reports (beta) to include all conversations recorded before the chosen time.\"],\"qtjOKf\":[\"Schedule training\"],\"4ba0NE\":[\"Scheduled\"],\"f1aPlK\":[\"Заплановані звіти та власні шаблони\"],\"PnVUnz\":[\"Screen\"],\"oOi11l\":[\"Scroll to bottom\"],\"A1taO8\":[\"Search\"],\"select.all.modal.loading.search\":[\"Search\"],\"FyLaDj\":[\"Search account, status, description\"],\"Uu9l/P\":[\"Search account, workspace, organisation, email, tier\"],\"EJ1adC\":[\"Знайдіть і виберіть розмови для цього чату.\"],\"V0wu2W\":[\"Search by organisation\"],\"a4xYoA\":[\"Search chats\"],\"OWm+8o\":[\"Search conversations\"],\"FIKhFb\":[\"Search matches your words in any order.\"],\"QU2qoc\":[\"Search name or email\"],\"6/qy61\":[\"Search partner, client, workspace\"],\"l9vi1F\":[\"Search people\"],\"S1LvJy\":[\"Search people, or type an email\"],\"hjqK3H\":[\"Search project or workspace\"],\"blFttG\":[\"Search projects\"],\"I0hU01\":[\"Search Projects\"],\"Ix2UwQ\":[\"Search projects, organisations, workspaces, settings…\"],\"RVZJWQ\":[\"Search projects...\"],\"5WYZKZ\":[\"Search results\"],\"lnWve4\":[\"Search tags\"],\"a6xC54\":[\"Search tags and clear conversation filters in one click.\"],\"pECIKL\":[\"Search templates...\"],\"select.all.modal.search.text\":[\"Search text:\"],\"nhvuQF\":[\"Search webhooks...\"],\"S2BNQs\":[\"Search workspaces\"],\"uSvNyU\":[\"Searched through the most relevant sources\"],\"mHOLEz\":[\"Searching conversations\"],\"rI5Wda\":[\"Searching conversations for \\\"\",[\"0\"],\"\\\"\"],\"DUHRPY\":[\"Searching the documentation\"],\"hoK9sq\":[\"Searching transcripts\"],\"/DtZhN\":[\"Searching transcripts for \\\"\",[\"0\"],\"\\\"\"],\"SBTElJ\":[\"Searching…\"],\"MpFIca\":[\"seats\"],\"grt0Pu\":[\"Seats\"],\"R4Xlsa\":[\"Seats full\"],\"8VEDbV\":[\"Secret\"],\"Y1y+VB\":[\"Secret copied\"],\"6/OSWK\":[\"See audio quality indicators for noise, silence and overlapping speech.\"],\"tAfXHu\":[\"see transcripts\"],\"ic1SaJ\":[\"See upgrade options\"],\"QXYt4Y\":[\"See when transcription is in progress.\"],\"0sQPzI\":[\"See you soon\"],\"XZRu52\":[\"Sees usage and invoices. No project or content access.\"],\"rG3WVm\":[\"Select\"],\"02ePaq\":[\"Select \",[\"0\"]],\"F7wP7I\":[\"Select a conversation to continue\"],\"H/diq7\":[\"Select a microphone\"],\"s5OrCL\":[\"Select a webhook to clone\"],\"NM2hyD\":[\"Select a workspace\"],\"wgNoIs\":[\"Select all\"],\"+fRipn\":[\"Select all (\",[\"remainingCount\"],\")\"],\"zg8+0Z\":[\"Select all conversations, or only the filtered conversations, for chat.\"],\"uZSxKc\":[\"Select all is available in Ask and new Specific Details chats.\"],\"Al2i3F\":[\"Обирайте для чату всі або відфільтровані розмови й фільтруйте натисканням на тег. Завантаження записів надійніше, а повідомлення під час високого навантаження зрозуміліші.\"],\"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\"],\"qtJxoV\":[\"Вибір кількох розмов\"],\"1kovRK\":[\"Select project\"],\"n4rh8x\":[\"Select Project\"],\"ekUnNJ\":[\"Select tags\"],\"CG1cTZ\":[\"Select the instructions that will be shown to participants when they start a conversation\"],\"qxzrcD\":[\"Select the type of feedback or engagement you want to encourage.\"],\"QdpRMY\":[\"Select tutorial\"],\"Dh99yE\":[\"Оберiть до 2 напрямкiв для вашого звiту\"],\"dashboard.dembrane.feature.verify.topic.select\":[\"Select which topics participants can use for \\\"Verify\\\".\"],\"GnNO41\":[\"Select who attended. Each gets a one-year license to use dembrane in high-risk settings.\"],\"participant.select.microphone\":[\"Select your microphone:\"],\"gU5H9I\":[\"Selected Files (\",[\"0\"],\"/\",[\"MAX_FILES\"],\")\"],\"participant.selected.microphone\":[\"Selected microphone:\"],\"tP/pEQ\":[\"Selection too large\"],\"select.all.modal.context.limit.reached\":[\"Selection too large. Some conversations weren't added.\"],\"gBtzlY\":[\"Self-serve\"],\"JlFcis\":[\"Send\"],\"iJyjJ8\":[\"Send \",[\"0\"],\" invites\"],\"Hvnq/n\":[\"Send invite\"],\"FCfEtD\":[\"Send invites\"],\"6M/wwR\":[\"Send note\"],\"O9oQJS\":[\"Надіслати повідомлення\"],\"4k2VbT\":[\"Send request\"],\"PIMJF6\":[\"Send Slack/Teams notifications when new conversations are completed\"],\"j73b/6\":[\"Send to dembrane\"],\"h69WC6\":[\"Sent\"],\"EhSyaK\":[\"Sent \",[\"sentCount\"],\" of \",[\"0\"],\". Check the list below.\"],\"oSzbte\":[\"sent to the dembrane team\"],\"XyiDbI\":[\"Separate (client)\"],\"OnmeuT\":[\"Separate with commas, spaces, or new lines.\"],\"NprC8U\":[\"Session Name\"],\"sf8lHS\":[\"Session title\"],\"f6+dqf\":[\"Set a workspace's default legal basis and override it for individual projects.\"],\"SpfrD/\":[\"set by \",[\"0\"],\" \",[\"relative\"]],\"Hgh3GY\":[\"Set goal\"],\"eo7QNa\":[\"Set managed\"],\"WAdU35\":[\"Set to managed\"],\"c0oPm+\":[\"Set to managed billing\"],\"FpHYiz\":[\"Set up with the assistant after creating\"],\"JfvZ6H\":[\"Set up workspace\"],\"J4TuIW\":[\"Set up your first organisation\"],\"aBwEIZ\":[\"Set up your organisation\"],\"OALBTr\":[\"Set up your workspace | dembrane\"],\"2zDY/H\":[\"Set who can see and join.\"],\"A6EhcS\":[\"Setting things up for you\"],\"XYlJJT\":[\"Setting up\"],\"Tz0i8g\":[\"Settings\"],\"participant.settings.modal.title\":[\"Settings\"],\"BVRW7i\":[\"Settings | dembrane\"],\"ENOWl3\":[\"Settings are grouped into Account & Security, Appearance and Project Defaults.\"],\"RPF/8g\":[\"Settings updated\"],\"RDjuBN\":[\"Setup\"],\"WFl+oC\":[\"Налаштовуйте перевірку результатів\"],\"Z8lGw6\":[\"Поділитися\"],\"VSwbWX\":[\"Share invite links as an alternative to email invitations.\"],\"uIZ2tg\":[\"Share link\"],\"HgtGvW\":[\"Поділитися порталом\"],\"OuFYHU\":[\"Share report\"],\"nzT4VD\":[\"Share the project, watch live activity, and jump into the main tools from one place.\"],\"AjYeE7\":[\"Share with \",[\"0\"],\" people\"],\"8styFN\":[\"Share with someone\"],\"W4nkGB\":[\"Share with whole workspace\"],\"bM7Rp3\":[\"Share with workspace\"],\"oX3zgA\":[\"Share your details here\"],\"nnWGzO\":[\"Share your ideas with our team\"],\"4o0klJ\":[\"Подiлiться своїм голосом, вiдсканувавши QR-код\"],\"jqnSi6\":[\"Shared with\"],\"YJJJo3\":[\"Shared with \",[\"0\"]],\"zIgU4M\":[\"Shared with \",[\"0\"],\" and \",[\"overflow\"],\" others\"],\"Ut2Txh\":[\"Коли ти ділишся приватним проєктом із людиною, яка ще не є учасником, тепер можна надіслати запрошення замість отримання помилки. Доступ надається після приєднання до робочого простору.\"],\"Sdetlc\":[\"Shortest first\"],\"+tz9Ky\":[\"Shortest First\"],\"8vETh9\":[\"Show\"],\"RaJ2km\":[\"Show \\\"made with dembrane\\\" on the screen\"],\"ZptNUh\":[\"Show \",[\"hidden\"],\" more\"],\"fp7sBF\":[\"Show \",[\"overflow\"],\" more\"],\"w1eody\":[\"Show audio player\"],\"pzaNzD\":[\"Show data\"],\"9Resvw\":[\"Show detail\"],\"Qc9KX+\":[\"Show IP addresses\"],\"6lGV3K\":[\"Show less\"],\"fMPkxb\":[\"Show more\"],\"Wh1pao\":[\"Show more versions\"],\"34iCWY\":[\"Show only what changed\"],\"ersE21\":[\"Show projects\"],\"s2xGKA\":[\"Показати QR-код\"],\"3bGwZS\":[\"Show references\"],\"OV2iSn\":[\"Show revision data\"],\"qB9H4B\":[\"Show steps\"],\"EgEjZz\":[\"Show the full text\"],\"hV6KNf\":[\"Показувати запрошення\"],\"GjCBss\":[\"Show your own logo to participants, available on request.\"],\"RpOvMh\":[\"Showing \",[\"0\"],\" of \",[\"1\"]],\"Tqzrjk\":[\"Showing \",[\"displayFrom\"],\"–\",[\"displayTo\"],\" of \",[\"totalItems\"],\" entries\"],\"kZ0hFY\":[[\"rangeStart\"],\"-\",[\"rangeEnd\"],\" з \",[\"total\"]],\"qVf+dV\":[\"Showing the first \",[\"0\"],\" of \",[\"shownCount\"],\" matches. Narrow the search to see the rest.\"],\"8Lpud3\":[\"Showing your most recent completed report.\"],\"WgPPx8\":[\"Shown at the top of the screen.\"],\"cKIVQR\":[\"Shown at the top of the screen. Change it any time.\"],\"HHR5pX\":[\"Shown in the organisation header and in email subject lines.\"],\"8ImxHp\":[\"Sign-in links check your access before opening an organisation or project.\"],\"DVBfkn\":[\"Six weekends across seven months\"],\"6Uau97\":[\"Skip\"],\"participant.button.verify_prompt.skip\":[\"Skip\"],\"select.all.modal.context.limit.reached.description\":[\"Skipped because the selection was too large.\"],\"TTKYZB\":[\"Skipped mic check\"],\"3Czdpd\":[\"Slack community\"],\"dE/7ox\":[\"Зручніший запис і швидші запитання\"],\"QCIy1f\":[\"Some audio in this conversation could not be transcribed. Open it to see which parts failed.\"],\"q+pJ6c\":[\"Some files were already selected and won't be added twice.\"],\"select.all.modal.skip.disclaimer\":[\"Some may be skipped (no transcript or selection too large).\"],\"Pe0Fnh\":[\"Some of the recent audio couldn't be transcribed. The recording is saved.\"],\"C6+ZRl\":[\"Someone\"],\"aQyGJc\":[\"Something else\"],\"HN/TPS\":[\"Something else.\"],\"participant.modal.s3check.message\":[\"Something is blocking your connection. Your audio will not be saved unless this is resolved.\"],\"nwtY4N\":[\"Something went wrong\"],\"participant.conversation.error.text.mode\":[\"Something went wrong\"],\"participant.conversation.error\":[\"Something went wrong\"],\"mwpVVD\":[\"Something went wrong generating your latest report.\"],\"2WNFmv\":[\"Something went wrong generating your report.\"],\"aT53wg\":[\"Something went wrong on my side. Send your message again and I'll retry.\"],\"avSWtK\":[\"Something went wrong while exporting audit logs.\"],\"q9A2tm\":[\"Something went wrong while generating the secret.\"],\"VXAsiD\":[\"Something went wrong while transcribing. Try again.\"],\"KeOwCj\":[\"Something went wrong with the conversation. Please try refreshing the page or contact support if the issue persists\"],\"7PyY8A\":[\"Something went wrong. Please open the link from your email again, or <0>start over.\"],\"participant.explore.generic.error.message\":[\"Something went wrong. Please try again by pressing the <0>Explore button, or contact support if the issue continues.\"],\"fWsBTs\":[\"Something went wrong. Please try again.\"],\"participant.go.deeper.content.policy.violation.error.message\":[\"Sorry, we cannot process this request due to an LLM provider's content policy.\"],\"f6Hub0\":[\"Sort\"],\"/AhHDE\":[\"Source \",[\"0\"]],\"sBJ5MF\":[\"Sources\"],\"JkONR3\":[\"Sources and references no longer appear empty in the affected cases.\"],\"65A04M\":[\"Spanish\"],\"wuxqZ1\":[\"Speak a question and review the text before sending it.\"],\"z5/5iO\":[\"Specific Context\"],\"mORM2E\":[\"Specific Details\"],\"Etejcu\":[\"Specific Details - Selected conversations\"],\"9Vb51U\":[\"Specific Details chat respects manual conversation selection.\"],\"uXsB4R\":[\"Staff\"],\"eicGWU\":[\"Staff only\"],\"vtV8C/\":[\"Staff-created\"],\"kyci9P\":[\"Stakeholders tab\"],\"NBA/uu\":[\"Standard access. Collaborates in the workspaces they're added to.\"],\"vv5o+Y\":[\"Standing guidance the assistant gets in every project chat in this workspace. Saves automatically.\"],\"ruoKG4\":[\"Start a chat\"],\"vPF04k\":[\"Start a new chat\"],\"8dFfPR\":[\"Start again from your agent. It will open a fresh request here.\"],\"AS7WoE\":[\"Start fresh\"],\"nYTTLF\":[\"Start in assistant chat\"],\"participant.button.start.new.conversation.text.mode\":[\"Start New Conversation\"],\"participant.button.start.new.conversation\":[\"Start New Conversation\"],\"i88wdJ\":[\"Start over\"],\"nFxnZX\":[\"Start recording without an extra ready-to-record confirmation.\"],\"jBYlO5\":[\"Починайте запис без дублікатів розмов, бачте справжній час початку й використовуйте збережені шаблони запитань в Ask. Оновлення на бічній панелі показують кількість непрочитаних.\"],\"slY7aQ\":[\"Started recording\"],\"W1KkjZ\":[\"Starts\"],\"uAQUqI\":[\"Status\"],\"3Rq6vQ\":[\"Stay live for\"],\"DpvswE\":[\"Stays up to date\"],\"M66Dtk\":[\"Stays up to date until \",[\"0\"]],\"oWpwLu\":[\"Stays up to date until tomorrow \",[\"0\"]],\"RibpL5\":[\"Step \",[\"0\"],\" of \",[\"STEP_COUNT\"]],\"HfI5Nm\":[\"Still stuck? Email <0>support@dembrane.com.\"],\"ygCKqB\":[\"Stop\"],\"participant.button.stop\":[\"Stop\"],\"yOl68f\":[\"Stop live\"],\"/AtnLK\":[\"Stop recording and turn it into text\"],\"pozyoW\":[\"Stopped on \",[\"stoppedAt\"],\".\"],\"LES2Db\":[\"Stopped on \",[\"stoppedAt\"],\". Updated \",[\"updatedAgo\"],\".\"],\"B2+Iby\":[\"Stopped.\"],\"YAtsqu\":[\"Stopped. Updated \",[\"updatedAgo\"],\".\"],\"p20Mhw\":[\"Stopping during the microphone prompt releases the microphone so you can retry.\"],\"kimwwT\":[\"Strategic Planning\"],\"BVSaId\":[\"Strong password\"],\"hQRttt\":[\"Submit\"],\"participant.button.submit.text.mode\":[\"Submit\"],\"eN0TsI\":[\"Subscribe to report notifications.\"],\"zzDlyQ\":[\"Success\"],\"aG+cH9\":[\"Suggest dynamic suggestions based on your conversation.\"],\"6xSPmn\":[\"Suggested project goal\"],\"SLIAI6\":[\"Suggested tag changes for your project\"],\"kBrP+r\":[\"Suggested verification prompt\"],\"bh1eKt\":[\"Suggested:\"],\"TQTiuh\":[\"Suggesting a canvas\"],\"VOjaCv\":[\"Suggesting a project goal\"],\"jt3eXx\":[\"Suggesting a verification prompt\"],\"5+Cysq\":[\"Suggesting project changes\"],\"BN3mxb\":[\"Suggesting tag changes\"],\"k1mxf5\":[\"Summaries adapt to the complexity of the conversation.\"],\"F1nkJm\":[\"Summarize\"],\"5Y4tAB\":[\"Summarize this interview into a shareable article\"],\"dXoieq\":[\"Summary\"],\"+bZY9/\":[\"Summary (when available)\"],\"zdF7Nh\":[\"Summary generated.\"],\"hlaWg4\":[\"Summary regenerated.\"],\"Pqa6KW\":[\"Summary will be available once the conversation is transcribed\"],\"/lNOlB\":[\"Support access ended.\"],\"iD58Ik\":[\"Support access extended for another 24 hours.\"],\"1iB0Qb\":[\"Support access granted. It ends automatically in 24 hours.\"],\"H9ee/+\":[\"Support access turned off\"],\"Qm32kv\":[\"Support access turned off after the session ended\"],\"jtzW2z\":[\"Support access turned on\"],\"6ZHOF8\":[\"Supported formats: MP3, WAV, OGG, WEBM, M4A, MP4, AAC, FLAC, OPUS\"],\"enh/gb\":[\"Supporting quotes display correctly.\"],\"bp+Bkh\":[\"Гаразд\"],\"ijp2ag\":[\"Switch to self-serve\"],\"h1qzuU\":[\"Switch to self-serve billing\"],\"participant.link.switch.text\":[\"Switch to text input\"],\"5dzzI6\":[\"Вимкнення доступне в платному плані.\"],\"D+NlUC\":[\"System\"],\"woaefe\":[\"Системне типове значення\"],\"InGQz2\":[\"System status\"],\"N3D6GN\":[\"Tag deleted\"],\"OYHzN1\":[\"Tags\"],\"gGG+ax\":[\"Tags are the vocabulary participants can pick from in the portal. Nothing changes until you apply.\"],\"JbfIuH\":[\"Tags update correctly for ongoing conversations.\"],\"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.\"],\"WyoP4e\":[\"Tapping Record twice no longer creates duplicate conversations.\"],\"Jzcupi\":[\"Tell the workspace admins what you need access for. This note is optional.\"],\"ijEuC1\":[\"Tell us what you need\"],\"QCchuT\":[\"Template applied\"],\"JcCDm9\":[\"Template created\"],\"ZTgE3k\":[\"Template deleted\"],\"5OwALL\":[\"Template name\"],\"PQb/If\":[\"Template updated\"],\"iTylMl\":[\"Templates\"],\"qVsApZ\":[\"Tensions tab\"],\"4Y5H+g\":[\"Terms\"],\"CyWdHw\":[\"Test and select your microphone before recording.\"],\"qYLZL2\":[\"test mode\"],\"b7L2Jj\":[\"Test Webhook\"],\"xeiujy\":[\"Text\"],\"mFQRXn\":[\"Текстові внески та форми для подальшого зв’язку.\"],\"CPN34F\":[\"Thank you for participating!\"],\"u+Whi9\":[\"Thank You Page Content\"],\"1LLF3Z\":[\"Thank you!\"],\"w0rnwH\":[\"Thank you! We will get in touch as soon as possible. You can also write to us at info@dembrane.com.\"],\"yP6ia6\":[\"Thanks for filling this in. Check your mail for the confirmation of the call. If you have any questions for us you can always contact us at info@dembrane.com\"],\"ZNyTs9\":[\"Дякуємо, ми зв'яжемося з вами протягом дня.\"],\"2yHHa6\":[\"That code didn't work. Try again with a fresh code from your authenticator app.\"],\"PuGTvO\":[\"That didn't send. Your answers are still here, so try again.\"],\"TqOQmZ\":[\"That didn't work out. We have saved your recording.\"],\"zXqpmy\":[\"Це не схоже на адресу електронної пошти.\"],\"FT6q8r\":[\"That recording is too long to send. Record a shorter note.\"],\"qoYkjn\":[\"That requires a paid plan. We're going to ask you 5 more quick questions, then you pick a time with the dembrane team. We'll read your answers before the call to bring an offer that fits your needs.\"],\"a/CreD\":[\"That was too short to transcribe. Hold the recording a little longer.\"],\"t/t3Pd\":[\"Це все, дякую\"],\"rKnNUJ\":[\"The admin may have cancelled it, or the link was tampered with. Ask the inviter to send a new one.\"],\"YVmqp6\":[\"The agent acts as you: it can only see what you can already see.\"],\"foeFUL\":[\"The agent and the company running it will receive the conversation content you allow.\"],\"Ie4DcG\":[\"The assistant forgets it in every future chat.\"],\"jvdqI1\":[\"The assistant suggests updating \",[\"headlineFields\"],\". Waiting on you.\"],\"TQCE79\":[\"The code didn't work, please try again.\"],\"NPynOC\":[\"The connection dropped. Retrying automatically.\"],\"participant.conversation.error.loading.text.mode\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"participant.conversation.error.loading\":[\"The conversation could not be loaded. Please try again or contact support.\"],\"pNC1r6\":[\"The conversation list shows clearer totals.\"],\"rEUvpC\":[\"the dembrane team\"],\"mK5NUZ\":[\"The endpoint where we'll send the data. Get this from your receiving service (e.g., Zapier, Make, or your own server).\"],\"x3rJF8\":[\"The feedback form can prefill your email address.\"],\"pHzQV8\":[\"The feedback portal explains how to report security issues.\"],\"HNaSQm\":[\"Перший великий випуск установлює для проєкту Business Source License 1.1.\"],\"Jo19Pu\":[\"The following conversations were automatically added to the context\"],\"iQVN2u\":[\"The free plan covers one workspace.\"],\"4ofqC4\":[\"The free plan includes one chat with three questions.\"],\"lIEwn+\":[\"The free plan includes one report.\"],\"IUkPfk\":[\"The goal guides reports, canvases, and assistant suggestions for this project.\"],\"IwNUoA\":[\"The host guide is what facilitators read before they run a session.\"],\"C5CHds\":[\"The invite is in your inbox. We will read your answers before then and bring a draft offer. Do you have any questions in the meantime? Reach out to\"],\"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\"],\".\"],\"Wb4/Ex\":[\"The Library gains clearer views of recurring themes, available on request.\"],\"6ZUAzo\":[\"Library чіткіше показує повторювані теми. Шаблони чату залишаються доступними, розмови мають прямі посилання, а за завантаженням легше стежити.\"],\"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.\"],\"2nxl8+\":[\"The link to add a voice, in the corner of the stage.\"],\"c0KWd/\":[\"The live popcorn deck and the canvases built for this project live here.\"],\"6pehgY\":[\"The members page shows a loading state instead of briefly claiming there are no members.\"],\"jnNEHx\":[\"The methodology is the way this project is set up and guided.\"],\"2zCZsi\":[\"The microphone is blocked in your browser, so recording is off. Typing works.\"],\"WO8jr5\":[\"The microphone is still blocked. Change it in your browser settings, then check again.\"],\"EKXp9y\":[\"The new sidebar brings organisations, workspaces, members and settings together.\"],\"LofrVg\":[\"The organisation this invite was for has been deleted. There's nothing to join.\"],\"K3dQWG\":[\"The page this answer refers to.\"],\"uesSdO\":[\"The participant flow has clearer microphone checks.\"],\"6WE2tf\":[\"The portals will keep working! Your participants are never cut off and nothing they say is lost. Once you are on a paid plan, transcription catches up on everything already recorded.\"],\"Khtiqr\":[\"The previous versions are still available below.\"],\"8+mJDO\":[\"The project adopts the Business Source License 1.1.\"],\"D4If9P\":[\"The project context is read by transcription, chat answers and canvas generation, so a change here reaches more than one screen.\"],\"tIuDkt\":[\"The pulls between what people want, verified against the conversations.\"],\"s+NYkH\":[\"The report may start up to 5 minutes after the chosen time.\"],\"bhQTz2\":[\"The room's own words, the ideas that moved the conversation.\"],\"hU1ZQR\":[\"The sidebar fits mobile screens more reliably, with corrected French navigation labels.\"],\"Z8JQHh\":[\"The sidebar scrolls on short screens while keeping its header and footer available.\"],\"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.\"],\"9DPC4t\":[\"Сторінка подяки завершується карткою, яка запрошує учасників провести власну подію з dembrane.\"],\"otcrOk\":[\"The transcript did not come back. Check your connection and try again.\"],\"sQgHJn\":[\"The transcription did not finish. Try again.\"],\"uPGyvo\":[\"The webhook URL and events will be cloned. You'll need to re-enter the secret if one was configured.\"],\"Ws5p1J\":[\"The workspace this invite was for has been deleted. There's nothing to join.\"],\"mbsBu1\":[\"Their representative who owns this data. They are added as a free observer and become the handoff contact.\"],\"k59/22\":[\"Their representative who owns this data. They are added as a free observer and emailed that they are the data owner, and become the handoff contact.\"],\"p9LlT0\":[\"Their screen is locked or the tab is hidden. Recording pauses until they come back.\"],\"FEr96N\":[\"Theme\"],\"tn4pEQ\":[\"there\"],\"fm15Og\":[\"There are no other workspaces you can move these projects into.\"],\"PmKiRy\":[\"There are no other workspaces you can move this project into.\"],\"T8rsM6\":[\"There was an error cloning your project. Please try again or contact support.\"],\"JDFjCg\":[\"There was an error creating your report. Please try again or contact support.\"],\"4MElLm\":[\"There was no speech in that recording.\"],\"D8iLCl\":[\"These changes are applied to your project.\"],\"select.all.modal.other.reason.description\":[\"These conversations were excluded due to missing transcripts.\"],\"8xYB4s\":[\"These default view templates will be generated when you create your first library.\"],\"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.\"],\"MOF98U\":[\"Things like: A call with your DPO or CISO, a security review or custom DPIA.\"],\"Ed99mE\":[\"Thinking...\"],\"WLBoIc\":[\"This account has a live Mollie subscription. Cancel it first.\"],\"3YoDz8\":[\"This account has an active subscription. Ask the customer to cancel it from their billing page before you change the tier.\"],\"kUtEeG\":[\"This area is for dembrane staff. If you think you should have access, email support@dembrane.com.\"],\"7eQeNC\":[\"This browser cannot record audio. Chrome, Edge and Safari can.\"],\"participant.modal.s3check.suggestions\":[\"This can happen when a VPN or firewall is blocking the connection. Try disabling your VPN, switching to a different network (e.g. mobile hotspot), or contact your IT department for help.\"],\"XR7DRS\":[\"This canvas could not update.\"],\"fztlir\":[\"This changes how transcripts are stored from here on. Conversations already recorded keep the form they were saved in.\"],\"conversation.linked_conversations.description\":[\"This conversation has the following copies:\"],\"conversation.linking_conversations.description\":[\"This conversation is a copy of\"],\"SzU1mG\":[\"This email is already in the list.\"],\"participant.modal.refine.info.available.in\":[\"This feature will be available in \",[\"remainingTime\"],\" seconds.\"],\"XVmrFS\":[\"This field already holds the proposed value.\"],\"lja/om\":[\"This information is anonymized\"],\"VqK4uu\":[\"This insight has been deleted\"],\"1p9Zmk\":[\"This invite has already been used\"],\"BGIpSK\":[\"This invite has expired\"],\"tU7tLa\":[\"This invite is no longer valid\"],\"u3BWAB\":[\"This invite isn't for this account\"],\"fcMrKf\":[\"This invite link isn't valid\"],\"ZPOM9u\":[\"This invite link isn't valid for this account\"],\"kdZCIM\":[\"This invite spans \",[\"0\"],\" billing contexts, each invoiced on its own:\"],\"QR7hjh\":[\"This is a live preview of the participant's portal. You will need to refresh the page to see the latest changes.\"],\"bSbU2m\":[\"This is a map of every organisation and workspace you are a member of.\"],\"+JlPfM\":[\"This is an example of the JSON data sent to your webhook URL when a conversation is summarized.\"],\"AypXpi\":[\"This is not saved yet.\"],\"DsBmZV\":[\"Встановлено обробку на основі згоди без посилання на політику конфіденційності. Додайте його, щоб налаштування залишалося дійсним: учасники мають мати змогу прочитати політику конфіденційності.\"],\"kt9FX3\":[\"This is urgent\"],\"library.description\":[\"This is your project library. Create views to analyse your entire project at once.\"],\"BLwPhM\":[\"This isn't available to you\"],\"Gbd5HD\":[\"This language will be used for the Participant's Portal.\"],\"2033EA\":[\"This link has already been used. You're signed in and ready to go.\"],\"MR5ygV\":[\"This link is no longer valid\"],\"Aznd4+\":[\"This marks the training cancelled. You can reopen it later from the same menu.\"],\"oW3yYY\":[\"This month\"],\"YN8nMm\":[\"This moves the workspace into its own billing and data context. Its projects will no longer move freely with the rest of your organisation.\"],\"KnphMo\":[\"This organisation\"],\"KpeRTX\":[\"This organisation has no members to train yet.\"],\"DHgelW\":[\"This organisation no longer exists\"],\"nEVjgj\":[\"This page is about \",[\"orgName\"],\" only. To get your MCP URL, or to manage other organisations, go to <0>Connect your agent.\"],\"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\"],\"oRgAxP\":[\"Цей портал зараз не приймає нові сесії.\"],\"CWAQCC\":[\"This project could not be reached.\"],\"bon4/x\":[\"This project is not attached to a workspace.\"],\"ocBOyA\":[\"This project is visible to everyone in \",[\"workspaceName\"],\".\"],\"IxpUlr\":[\"This project is visible to everyone in the workspace.\"],\"xbLJ58\":[\"Цей проєкт наслідуватиме успадковане налаштування: \",[\"0\"],\" (\",[\"1\"],\").\"],\"nYeaxs\":[\"This prompt guides how the AI responds to participants. Customize it to shape the type of feedback or engagement you want to encourage.\"],\"3dSMKs\":[\"This puts the account on dembrane-managed billing: no automatic Mollie charges or auto-expiry.\"],\"xfqtI+\":[\"This quick walkthrough recaps our new three-level hierarchy: organisations, workspaces, and projects. Watch to learn how to manage access, organise your work, and use our new analysis tools.\"],\"64Ko7C\":[\"This record has no billing account.\"],\"SQuwgX\":[\"This removes the conversation from the project. This can't be undone.\"],\"9zTDpd\":[\"This removes the one-year license for \",[\"0\"],\". They will no longer count as trained and lose access to high-risk settings. Only do this if the license was granted by mistake.\"],\"31rWMg\":[\"This replaces every popcorn, tension and stakeholder on the screen and reads all conversations again. Earlier runs are saved in the history.\"],\"Yig29e\":[\"This report is not yet available. \"],\"GQTpnY\":[\"This report was opened by \",[\"0\"],\" people\"],\"IzpEf4\":[\"This request has expired\"],\"WsV2BS\":[\"This request took too long, so I stopped it. Send it again and I'll retry.\"],\"bKWJ+t\":[\"This returns the account to standard free billing.\"],\"XK9N+e\":[\"This returns the workspace to your organisation's shared billing and removes its external data owner.\"],\"cjRyq5\":[\"This sets the language participants see in the portal, including the questions they are asked.\"],\"hwyBn8\":[\"This title is shown to participants when they start a conversation\"],\"ABJz8Q\":[\"This verification prompt is added to your project.\"],\"Dj5ai3\":[\"This will clear your current input. Are you sure?\"],\"NrRH+W\":[\"This will create a copy of the current project. Only settings and tags are copied. Reports, chats and conversations are not included in the clone. You will be redirected to the new project after cloning.\"],\"hsNXnX\":[\"This will create a new conversation with the same audio but a fresh transcription. The original conversation will remain unchanged.\"],\"add.tag.filter.modal.info\":[\"This will filter the conversation list to show conversations with this tag.\"],\"participant.concrete.regenerating.artefact.description\":[\"This will just take a few moments\"],\"participant.concrete.loading.artefact.description\":[\"This will just take a moment\"],\"mSuhYn\":[\"this workspace\"],\"8b9oJD\":[\"This workspace has reached its recording cap. Upgrade to upload more audio.\"],\"1pzlg0\":[\"This workspace has used its recording hours. Upgrade to keep using voice.\"],\"teN+SJ\":[\"This workspace is billed separately\"],\"/HZ7l/\":[\"This workspace is billed through \",[\"orgName\"],\". Plans and payment are managed once for the whole organisation, and every workspace shares it.\"],\"Khe1Xt\":[\"This workspace is on a tier that doesn't allow more seats. Upgrade the workspace tier to invite more.\"],\"vvEr5j\":[\"This workspace no longer exists\"],\"+FiXAn\":[\"This workspace shares its organisation's billing. Change the tier from the organisation account, where it applies to every internal workspace in the org.\"],\"QnWmgF\":[\"This workspace was downgraded to \",[\"tier\"],\" on \",[\"sinceDate\"],\". Some features are limited.\"],\"DGZ0dc\":[\"Three quick steps and you're in.\"],\"VDoFSJ\":[\"Не подобається\"],\"Nuw8ty\":[\"Подобається\"],\"67ZxuT\":[\"Tick anything that applies.\"],\"s/y/Z+\":[\"Tick anything that fits.\"],\"nNGGkA\":[\"Tier\"],\"qPIf5y\":[\"Tier changed\"],\"LhMjLm\":[\"Час\"],\"cklVjM\":[\"Timeline\"],\"8TMaZI\":[\"Timestamp\"],\"XSqo4Y\":[\"Timestamps and duration\"],\"rm2Cxd\":[\"Tip\"],\"fEocaE\":[\"Tip: Use the play button (▶) to send a test payload to your webhook and verify it's working correctly.\"],\"Zb3ANR\":[\"Tip: You can also create a template from any chat message you send, or duplicate an existing template.\"],\"MHrjPM\":[\"Title\"],\"1xkgU6\":[\"Title auto-generated\"],\"ouSxtJ\":[\"Title generated from the conversation\"],\"uqnBvS\":[\"Title guidance\"],\"Mozc0C\":[\"Title or participant\"],\"dMtLDE\":[\"to\"],\"xLXwHL\":[\"To assign a new tag, please create it first in the portal settings.\"],\"qDfpLj\":[\"To help us act on it, try to include where it happened and what you were trying to do. For bugs, tell us what went wrong. For ideas, tell us what need it would solve for you.\"],\"UEleqp\":[\"To promote to a workspace member, add this person to the organisation first, then re-invite from the workspace.\"],\"CCDe0r\":[\"To talk about what you need, email <0>support@dembrane.com.\"],\"select.all.modal.context.limit\":[\"Too large\"],\"yIsdT7\":[\"Too long\"],\"qgwLj6\":[\"Занадто довго або незрозуміло\"],\"lcsUaI\":[\"Надто багато повідомлень. Зачекайте кілька хвилин і спробуйте ще раз\"],\"li4gmn\":[\"Too many to list here. The assistant reads through them in batches.\"],\"LYzbQ2\":[\"Tool\"],\"qomwI+\":[\"Topic created successfully\"],\"Sawj4V\":[\"Topic deleted successfully\"],\"xcp3ny\":[\"Topic label\"],\"vQoAht\":[\"Topic updated successfully\"],\"th8cMZ\":[\"Topic-based title describing what was discussed\"],\"sFMBP5\":[\"Topics\"],\"ONchxy\":[\"total\"],\"72c5Qo\":[\"Total\"],\"kFzhfN\":[\"Total due now\"],\"McSz22\":[\"Trained\"],\"kMf0pe\":[\"Trained until \",[\"until\"]],\"y8le+Z\":[\"Training\"],\"yt18UB\":[\"Training created\"],\"p9JlS7\":[\"Training date\"],\"1gL8o6\":[\"Training requested. We'll be in touch to schedule it.\"],\"KxpIJA\":[\"Training required for high-risk use\"],\"VGao62\":[\"Training updated\"],\"miJqd2\":[\"Training verification isn't available here.\"],\"cP0LwD\":[\"Trainings\"],\"NteDtU\":[\"Транскрибуйте розмову повторно\"],\"fp5rKh\":[\"Transcribing...\"],\"bik3BS\":[\"transcript\"],\"DDziIo\":[\"Transcript\"],\"5jqJzi\":[\"Анонімізація транскриптів і налаштування повторної транскрипції працюють узгодженіше. Тривалість запису залишається правильною після паузи й відновлення.\"],\"if/S2n\":[\"Transcript anonymisation and retranscription use consistent privacy settings.\"],\"hfpzKV\":[\"Transcript copied to clipboard\"],\"K3Fxr/\":[\"transcript excerpt\"],\"mW5T8N\":[\"Transcript retrieval and conversation summaries finish before dependent work continues.\"],\"MzWrba\":[\"Transcription error\"],\"TyO5K+\":[\"Transcripts come with a paid plan.\"],\"53dSNP\":[\"Transform this content into insights that actually matter. Please:\\n\\nExtract core ideas that challenge standard thinking\\nWrite like someone who understands nuance, not a textbook\\nFocus on the non-obvious implications\\nKeep it sharp and substantive\\nOnly highlight truly meaningful patterns\\nStructure for clarity and impact\\nBalance depth with accessibility\\n\\nNote: If the similarities/differences are too superficial, let me know we need more complex material to analyze.\"],\"uK9JLu\":[\"Transform this discussion into actionable intelligence. Please:\\n\\nCapture the strategic implications, not just talking points\\nStructure it like a thought leader's analysis, not minutes\\nHighlight decision points that challenge standard thinking\\nKeep the signal-to-noise ratio high\\nFocus on insights that drive real change\\nOrganize for clarity and future reference\\nBalance tactical details with strategic vision\\n\\nNote: If the discussion lacks substantial decision points or insights, flag it for deeper exploration next time.\"],\"lhkaAC\":[\"Trial\"],\"hDv2MY\":[\"Trial and comped accounts, excluded from the paying total.\"],\"DtButj\":[\"Trigger automated workflows in tools like Zapier, Make, or n8n\"],\"FFp6nA\":[\"Trouble logging in? Contact support@dembrane.com.\"],\"KDw4GX\":[\"Try again\"],\"u62wQ4\":[\"Try again in a moment.\"],\"7dRUDh\":[\"Try Agentic instead\"],\"eP1iDc\":[\"Try asking\"],\"sZgR8D\":[\"Try it\"],\"goQEqo\":[\"Try moving a bit closer to your microphone for better sound quality.\"],\"q1ok4Y\":[\"Trying to join an existing organization?\"],\"REPBIk\":[\"Перетворюй розмови на слайди наживо. Запускай живу сесію або аналіз на запит, презентуй групі та перевіряй джерела висновків.\"],\"portal.anonymization.disable.confirm\":[\"Turn off\"],\"2ZqpRB\":[\"Turn off\"],\"QOnnq7\":[\"Turn off anonymization?\"],\"AI5hyp\":[\"Turn off MCP access?\"],\"iMkWoF\":[\"Turn on\"],\"J3sPeY\":[\"Turn on MCP access?\"],\"RKvlwm\":[\"Turn on popcorn\"],\"0e9XN/\":[\"Перетворюйте розмови свого проєкту на живі слайди для спільного перегляду.\\n\\n- Стежте за новими темами під час розмов.\\n- Презентуйте висновки та перевіряйте розмови, на яких вони ґрунтуються.\\n- Запустіть сеанс наживо або аналіз за потреби.\\n\\nТакож: нові шаблони чату, підключення агентів і покращення для мобільних пристроїв.\"],\"portal.anonymization.disable.warning\":[\"Turning off anonymization while recordings are ongoing may have unintended consequences. Active conversations will also be affected mid-recording. Please use this with caution.\"],\"JPF8BN\":[\"Turning your voice note into text\"],\"T7w4KT\":[\"Tutorial\"],\"EIU345\":[\"Two-factor authentication\"],\"NwChk2\":[\"Two-factor authentication disabled\"],\"qwpE/S\":[\"Two-factor authentication enabled\"],\"+zy2Nq\":[\"Type\"],\"v+CcTw\":[\"Type <0>\",[\"0\"],\" to confirm.\"],\"hHFgGr\":[\"Type a message or press / for templates...\"],\"EvmL3X\":[\"Type your response here\"],\"KfLidz\":[\"Typing\"],\"dubg//\":[\"Ukrainian (only ECHO features, Transcription and Summaries)\"],\"MksxNf\":[\"Unable to load audit logs.\"],\"participant.outcome.error.title\":[\"Unable to Load Outcome\"],\"59QK2U\":[\"Unable to load the generated outcome. Please try again.\"],\"nGxDbq\":[\"Unable to process this chunk\"],\"lLwEjI\":[\"Under 50.\"],\"8ryDoK\":[\"Under your organisation\"],\"HYUJF4\":[\"Understanding our new structure\"],\"9uI/rE\":[\"Undo\"],\"Ef7StM\":[\"Unknown\"],\"wF2wqQ\":[\"Unknown date\"],\"rIOkYf\":[\"Unknown member\"],\"1MTTTw\":[\"Unknown reason\"],\"nWMRxa\":[\"Unpin\"],\"vSdeRU\":[\"Unpin a project first (max \",[\"MAX_PINNED\"],\")\"],\"Dcq/Eh\":[\"Unpin a project first (max 3)\"],\"dx+iaL\":[\"Unpin project\"],\"KuVpz+\":[\"Unread\"],\"Eb6wiX\":[\"Unreadable audio and invalid transcription responses no longer cause repeated processing attempts.\"],\"sCTlv5\":[\"Unsaved changes\"],\"SMaFdc\":[\"Unsubscribe\"],\"nOxIVE\":[\"Untagged\"],\"VFYmmV\":[\"Untick a field to leave it exactly as it is.\"],\"1hTGn4\":[\"until \",[\"0\"]],\"wja8aL\":[\"Untitled\"],\"CoInOF\":[\"Untitled canvas\"],\"LOM/+N\":[\"Untitled conversation\"],\"jlrVDp\":[\"Untitled Conversation\"],\"ZjKqrC\":[\"Untitled methodology\"],\"PZKdTd\":[\"Untitled report\"],\"+TYrZZ\":[\"Up to \",[\"0\"],\" participants\"],\"RHUiSf\":[\"Up to \",[\"0\"],\" participants are included.\"],\"0wHyhk\":[\"До \",[\"MAX_FILES\"],\" зображень\"],\"lLehih\":[\"До \",[\"MAX_MESSAGE_CHARS\"],\" символів\"],\"ia8YsC\":[\"Незабаром\"],\"EkH9pt\":[\"Update\"],\"H/FUVb\":[\"Update rhythm\"],\"x4Xp3c\":[\"updated\"],\"Ef5vag\":[\"Updated \",[\"0\"],\" · \"],\"+vId6X\":[\"Updated \",[\"updatedAgo\"],\".\"],\"0YtmfA\":[\"Updated colours, fonts, icons and logo give dembrane a fresh look.\"],\"B44Dtg\":[\"Updated.\"],\"qIrtcK\":[\"Updates\"],\"Ad1PAA\":[\"Updates appear in the sidebar with an unread count.\"],\"1efbWn\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes until \",[\"0\"],\".\"],\"luwc/s\":[\"Updates every \",[\"cadenceMinutes\"],\" minutes.\"],\"V7w3WZ\":[\"Updating a note for the dembrane team\"],\"IUC5Nz\":[\"Updating a saved memory\"],\"26+vhb\":[\"Updating project tags\"],\"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\"],\"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\"],\"D6YKKv\":[\"Upload a custom logo to replace the dembrane logo across the portal, dashboard, reports, and host guide. Recommended aspect ratio is 3:1 (e.g. 600×200px horizontal format).\"],\"AIGPM8\":[\"Upload avatar\"],\"kV3A2a\":[\"Upload Complete\"],\"4Fr6DA\":[\"Upload conversations\"],\"pZq3aX\":[\"Upload failed. Please try again.\"],\"HAKBY9\":[\"Upload Files\"],\"4Z7WLN\":[\"Upload limit reached\"],\"6XdQf/\":[\"Upload limit reached. Upgrade your workspace.\"],\"QfiWpJ\":[\"Upload logo\"],\"ZeGAhv\":[\"upload recordings\"],\"k/LaWp\":[\"Uploading Audio Files...\"],\"participant.modal.uploading\":[\"Uploading audio...\"],\"participant.modal.interruption.uploading\":[\"Uploading audio...\"],\"P2sJqQ\":[\"Uploading recordings comes with a paid plan.\"],\"BVYvMa\":[\"URL copied\"],\"HtrFfw\":[\"URL is required\"],\"3VnYUR\":[\"URL must start with http:// or https://\"],\"7FaY4u\":[\"Usage\"],\"6YK+1q\":[\"Usage · \",[\"0\"]],\"9TZVmX\":[\"Usage and billing\"],\"589hpo\":[\"Usage and billing, \",[\"cycleLabel\"]],\"1A3sU+\":[\"Usage and billing, payments, partner ledger. Any Directus admin has access.\"],\"9rNv3P\":[\"Usage is tracked for your organisation. View it in organisation settings.\"],\"RuzOGi\":[\"Usage this cycle\"],\"3AFi60\":[\"Use a double diamond approach (design science approach) on all conversations in this dataset to develop a MECE set of 7+/-2 narratives that explain the variance within this dataset. Pay special attention to outliers. Quantify the evidence for each narrative as the number of \\\"occurrences\\\" where the data supports a particular narrative hypothesis.\\n\\ndutch version\\n\\nGebruik een double diamond-aanpak (design science approach) op alle gesprekken in deze dataset om een MECE-set van 7+/-2 narratieven te ontwikkelen die de variantie binnen deze dataset verklaren. Let daarbij extra op de uitschieters. Kwantificeer het bewijs voor elk narratief als het aantal \\\"verschijnselen\\\" waarin de data een bepaalde narratieve hypothese ondersteunt.\"],\"rG5cb4\":[\"Use dembrane in Czech.\"],\"8otRhI\":[\"Use improved question templates and updated transcription options.\"],\"CBeRq6\":[\"Використати успадковане значення\"],\"83yh4y\":[\"Use Italian for chat, reports, transcription and participant onboarding cards.\"],\"Rp3hXT\":[\"Використовуйте італійську для чату, звітів, транскрипції та вступних карток учасників. Повного перекладу інтерфейсу цей випуск не містив.\"],\"UqMA5L\":[\"Use pinned and saved question templates, including the / shortcut, from Ask.\"],\"ngdRFH\":[\"Use Shift + Enter to add a new line\"],\"daEZ1b\":[\"Use Ukrainian for chat and participant replies.\"],\"w+4I2h\":[\"use webhooks\"],\"QB0CBI\":[\"use your voice in chat\"],\"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\"],\"08yTaL\":[\"Using fixture data.\"],\"mUOhaJ\":[\"Using webhooks? We'd love to hear from you\"],\"QWaavn\":[\"Validation progress\"],\"Ttw+e+\":[\"VAT ID\"],\"/n0QEP\":[\"VAT region\"],\"NBpTc8\":[\"Verification on the finish screen\"],\"Eatezj\":[\"Verification outcomes use the project's language.\"],\"Qbt5wq\":[\"Verification prompts allow 10,000 characters, and verified outcomes have a copy button.\"],\"participant.modal.verify_prompt.title\":[\"Verification reminder\"],\"participant.banner.verification_required\":[\"Verification required\"],\"OKGlwv\":[\"Verification topics\"],\"select.all.modal.verified\":[\"Verified\"],\"select.all.modal.loading.verified\":[\"Verified\"],\"QDEWii\":[\"Verified\"],\"conversation.filters.verified.text\":[\"Verified\"],\"Iv1iWN\":[\"verified artifacts\"],\"bepwgB\":[\"Verified artifacts\"],\"dashboard.dembrane.verify.title\":[\"Verify\"],\"uSMfoN\":[\"Verify\"],\"participant.button.verify_prompt.verify\":[\"Verify\"],\"participant.echo.verify\":[\"Verify\"],\"4LFZoj\":[\"Verify code\"],\"MBOY4U\":[\"Verify email\"],\"FYGV+K\":[\"Перевіряйте результати й уточнюйте відповіді\"],\"w6Mgbs\":[\"Verify Topics\"],\"bl9677\":[\"Verifying\"],\"iOnm3W\":[\"Verifying your email address.\"],\"eE0JZ4\":[\"Version\"],\"IYNSdp\":[\"Versions\"],\"YFvfo/\":[\"Very quiet right now. Check the mic isn't muted.\"],\"jpctdh\":[\"View\"],\"SZw9tS\":[\"View Details\"],\"95YFbG\":[\"View example payload\"],\"j45ntU\":[\"View invite\"],\"399GLg\":[\"Переглянути примітки до випусків\"],\"D4e7re\":[\"View your responses\"],\"rUp0hp\":[\"Viewing \",[\"0\"]],\"P0bGkp\":[\"Visible columns\"],\"S3T9oe\":[\"Visible to everyone in \",[\"workspaceName\"]],\"fedNgo\":[\"Visible to everyone in this workspace\"],\"754W/v\":[\"Visible to everyone in this workspace. Leave off to keep it personal.\"],\"RdG06l\":[\"Visitor details\"],\"KAXSwC\":[\"Voice\"],\"lEx4m3\":[\"Voice input respects the free plan's recording limit.\"],\"Ln6Gy/\":[\"Waiting for conversations to finish before generating a report.\"],\"ktnISV\":[\"Waiting for the first conversation\"],\"pZUNCE\":[\"Waiting for the first conversation with a transcript.\"],\"PVqk8Y\":[\"Walks you through setup and suggests next steps.\"],\"oKfSzq\":[\"Хочете це на своїй події?\"],\"q7LnaV\":[\"Хочете провести подію з dembrane?\"],\"La34Yq\":[\"Хочете використати dembrane на своїй наступній події?\"],\"0/aCt7\":[\"Watch live recordings, transcription progress, and errors across this project as they happen.\"],\"OtLbE1\":[\"Перегляньте відео, щоб познайомитися з організаціями, робочими просторами та проєктами.\"],\"participant.alert.microphone.access.issue\":[\"We cannot hear you. Please try changing your microphone or get a little closer to the device.\"],\"kSJ1rO\":[\"We couldn't charge your payment method\"],\"Ul0g2u\":[\"We couldn’t disable two-factor authentication. Try again with a fresh code.\"],\"sM2pBB\":[\"We couldn’t enable two-factor authentication. Double-check your code and try again.\"],\"mW8QSA\":[\"Ми не знайшли сторінку, яку ви шукали. Можливо, її перемістили.\"],\"UStbqQ\":[\"We couldn't load this organisation. Try again in a moment.\"],\"viuoK1\":[\"We couldn't load this organisation's usage.\"],\"huDAZ9\":[\"We couldn't load this organisation's workspaces. Some controls may be missing. Try refreshing.\"],\"Ay7FNv\":[\"We couldn't load this project. Check your connection and try again.\"],\"Z2y7ap\":[\"We couldn't load this workspace. Try again in a moment.\"],\"zPjLTr\":[\"We couldn't load this workspace's usage.\"],\"y5BiQM\":[\"We couldn't load your organisations. Check your connection and try again.\"],\"+jHAFm\":[\"We couldn't load your pending invites. Try again in a moment.\"],\"gNHeDV\":[\"We couldn't update your payment method. Your old one is still active. Please try again.\"],\"participant.modal.echo.info.reason\":[\"We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions.\"],\"GC6z0d\":[\"We sent a verification link to <0>\",[\"email\"],\". Click it to finish setting up your account.\"],\"9i8m90\":[\"We sent you a verification link. Click it to finish setting up your account.\"],\"81dqga\":[\"We set up the project, stand beside you on the day, and help write the report afterwards.\"],\"S+HYhm\":[\"We still couldn't charge your method. Update it and try again.\"],\"L9hUjh\":[\"Ми зв'яжемося з вами протягом дня. Хочете самі обрати час?\"],\"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.\"],\"FXjsEJ\":[\"Ми будемо раді почути вас. Якщо у вас є ідея, ви помітили невдалий переклад або просто хочете розповісти, як усе минає. Знайшли помилку? Скористайтеся кнопкою <0>Повідомити про проблему, щоб надіслати її зі знімками екрана.\"],\"XolQc4\":[\"Ми будемо раді почути вас. Якщо у вас є ідея, ви помітили невдалий переклад або просто хочете розповісти, як усе минає. Знайшли помилку? Скористайтеся кнопкою Повідомити про проблему на бічній панелі, щоб надіслати її зі знімками екрана.\"],\"participant.test.microphone.description\":[\"We'll test your microphone to ensure the best experience for everyone in the session.\"],\"+eLc52\":[\"We’re picking up some silence. Try speaking up so your voice comes through clearly.\"],\"PH7tM1\":[\"We've added organisations so you can organize projects and share them with colleagues. Everything you had before is still here. We just need a name for your organisation.\"],\"Yc3tsw\":[\"We've sent a verification link to <0>\",[\"0\"],\". Open the email and click the link to continue.\"],\"fylXkT\":[\"Weak network\"],\"7cUq8g\":[\"Weak password\"],\"TRDppN\":[\"Webhook\"],\"nuh/Wq\":[\"Webhook URL\"],\"v1kQyJ\":[\"Webhooks\"],\"BTA0e8\":[\"Webhooks are automated messages sent from one app to another when something happens. Think of them as a \\\"notification system\\\" for your other tools.\"],\"3rkRxG\":[\"Webhooks are not enabled for this environment.\"],\"EAioZ5\":[\"Webhooks come with a paid plan.\"],\"6jfS51\":[\"Welcome\"],\"9eF5oV\":[\"Welcome back\"],\"ZVR4oQ\":[\"Welcome back, \",[\"displayName\"]],\"OM+lH0\":[\"Welcome to dembrane\"],\"P3EAlh\":[\"Welcome to dembrane chat. Select the conversations you want to analyse, then ask about details, quotes, and summaries.\"],\"Fx+f0A\":[\"Welcome to dembrane!\"],\"u4aLOz\":[\"Ласкаво просимо в режим Огляду! Я завантажив підсумки всіх ваших розмов. Запитуйте мене про закономірності, теми та висновки у ваших даних. Для точних цитат розпочніть нову бесіду в режимі Конкретного Контексту.\"],\"J2FSRx\":[\"Welcome, \",[\"displayName\"]],\"klH6ct\":[\"Welcome!\"],\"RL57XM\":[\"What are webhooks? (2 min read)\"],\"nCQNTt\":[\"What are you trying to learn?\"],\"vv/EFG\":[\"What data is sent?\"],\"WSxXHT\":[\"What do you plan to use dembrane for?\"],\"3jWdsE\":[\"What do you want to use dembrane for?\"],\"participant.verify.selection.title\":[\"What do you want to verify?\"],\"B5v8nx\":[\"What gets sent\"],\"JJjzZE\":[\"Що сталося? Вставте сюди знімок екрана, щоб додати його\"],\"WqnI4l\":[\"What is it?\"],\"T91psD\":[\"What should be different about this?\"],\"pVIWuw\":[\"What should ECHO analyse or generate from the conversations?\"],\"yWXuOc\":[\"What themes came up across the conversations in this project?\"],\"LfRBcL\":[\"What themes came up?\"],\"pd3Yt/\":[\"What this project is consuming this cycle.\"],\"tq89gP\":[\"Що пішло не так?\"],\"qGrqH9\":[\"What were the key moments in this conversation?\"],\"FXZcgH\":[\"What would you like to explore?\"],\"3ePd3I\":[\"What's new\"],\"k7eeqO\":[\"What's the main reason?\"],\"2+ExvJ\":[\"WhatsApp\"],\"1ZF9KQ\":[\"When\"],\"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?\"],\"/MdXB7\":[\"When do you need dembrane?\"],\"KmUKwU\":[\"When enabled, all new transcripts will have personal information (names, emails, phone numbers, addresses) replaced with placeholders. Anonymized conversations also disable audio playback, audio download, and retranscription to protect participant privacy. This cannot be undone for already-processed conversations.\"],\"MEmr1I\":[\"When finishing the conversation, participants who haven't verified yet will be prompted to verify or skip\"],\"BaiSBQ\":[\"When on, dembrane support staff can join this workspace to help you. Their access ends automatically after 24 hours.\"],\"SgIrVC\":[\"When participants scan the QR code, they'll appear here and flow across the stages in real time.\"],\"/dAMl1\":[\"When should the report be generated?\"],\"MyMufZ\":[\"When someone scans the QR code, that is one conversation. If 50 people scan it at the same time, that is 50 conversations at once.\"],\"NPIwj3\":[\"When the summary is ready (includes both transcript and summary)\"],\"JwZibo\":[\"Where would you like to go?\"],\"msYPX5\":[\"Where would you like to start?\"],\"kqHiF1\":[\"Which organisation does this workspace belong to?\"],\"lwFEDE\":[\"Which organisation owns this workspace's data? This sets the data and compliance context.\"],\"wZht80\":[\"Who can see and collaborate on this project.\"],\"P9WL8r\":[\"Who can see this project?\"],\"1x4Stv\":[\"Who holds a stake, and how they relate.\"],\"QDRAyJ\":[\"Who on your team holds a current training license. Book a training from your organisation's Training view.\"],\"KcnIXL\":[\"will be included in your report\"],\"EpZ9+F\":[\"wish\"],\"QdkkH5\":[\"With external clients\"],\"KWhZCH\":[\"Within my organisation\"],\"ErlMoy\":[\"Працюйте з новим розмовним помічником, стежте за сеансами в моніторі наживо й використовуйте оновлену обробку транскрипції.\"],\"T5IBvE\":[\"Work with the new conversational assistant.\"],\"qJ0J+6\":[\"Worked through \",[\"0\"],\" steps\"],\"B6dzt1\":[\"Working on your answer...\"],\"NwM/eB\":[\"workspace\"],\"pmUArF\":[\"Workspace\"],\"IG4YLy\":[\"Робочий простір / проєкт\"],\"SO/3gk\":[\"Workspace access options explain which settings need a paid plan.\"],\"VmdouC\":[\"Workspace account\"],\"Zqthj7\":[\"Workspace actions\"],\"ZBKhLV\":[\"Workspace created.\"],\"xM1hP9\":[\"Типове значення робочого простору\"],\"UlhdTP\":[\"Workspace deleted\"],\"Ep8k4i\":[\"Workspace is full\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"dg0Efy\":[\"Workspace name. Saves automatically.\"],\"QGaOM/\":[\"Workspace permissions, member counts and account-specific data loading are corrected.\"],\"wHWiPE\":[\"Workspace renamed\"],\"Knd6gz\":[\"Налаштування робочого простору\"],\"XAW6X5\":[\"Workspace settings | dembrane\"],\"wowvFW\":[\"Workspace-only guest. Not added to the organisation.\"],\"JKU2hI\":[\"workspaces\"],\"pmt7u4\":[\"Workspaces\"],\"YRelrK\":[\"Workspaces billed separately\"],\"vMCu+n\":[\"Workspaces in this account\"],\"XLYmK5\":[\"Workspaces in this organisation you haven't joined yet. As an admin you can add yourself to manage them.\"],\"lBVr4U\":[\"Workspaces shared with you\"],\"++IGvT\":[\"Workspaces you can join\"],\"JEHySj\":[\"Workspaces you've been invited to join. Accept to start collaborating.\"],\"add.tag.filter.modal.description\":[\"Would you like to add this tag to your current filters?\"],\"0OzGcI\":[\"Write custom host prompts for participant verification.\"],\"HLUYL3\":[\"Пишіть власні інструкції перевірки, генеруйте результати мовою проєкту й нагадуйте учасникам перевірити їх перед завершенням. Налаштовуйте кожну правову підставу.\"],\"Exc/LI\":[\"Wrong address? Change email\"],\"bmC+Ww\":[\"Неправильна мова або тон\"],\"MNTYHt\":[\"Неправильні джерела\"],\"l75CjT\":[\"Yes\"],\"participant.button.finish.yes.text.mode\":[\"Yes\"],\"av/PD9\":[\"you\"],\"kWJmRL\":[\"You\"],\"VHG+Js\":[\"You already have access to this workspace.\"],\"Dl7lP/\":[\"You are already unsubscribed or your link is invalid.\"],\"LtRyR7\":[\"You are not a member of any organisation, so there is nothing to connect yet.\"],\"o8g9NA\":[\"You are not in an organisation yet.\"],\"m/2cYF\":[\"You are on the free plan.\"],\"Arw/sv\":[\"You are on the free plan. There is no payment to manage yet.\"],\"rKP2WF\":[\"You are the data owner\"],\"EDIsb+\":[\"You can change this anytime in settings.\"],\"fzU5ll\":[\"You can change this later in project settings.\"],\"dWZJqc\":[\"You can change this later in workspace settings after you add billing details.\"],\"uGP87g\":[\"You can change this later in workspace settings.\"],\"WS92Fk\":[\"You can navigate away and come back later. Your report will continue generating in the background.\"],\"E71LBI\":[\"You can only upload up to \",[\"MAX_FILES\"],\" files at a time. Only the first \",[\"0\"],\" files will be added.\"],\"+IqtlU\":[\"You can re-invite them later from any workspace.\"],\"oEhmIa\":[\"You can revoke a connection at any time.\"],\"v5Q6oq\":[\"You can revoke this later under <0>Help, Connect your agent.\"],\"ORA5nz\":[\"You can try again below.\"],\"96ERwL\":[\"You can't create a workspace yet\"],\"bHCu+u\":[\"You can't invite yourself.\"],\"Aya6bb\":[\"You cannot manage MCP access for this organisation.\"],\"vj8JjD\":[\"You do not have permission to transcribe in this project.\"],\"UjkUrJ\":[\"You don't have access to this workspace.\"],\"3x5+PU\":[\"You don't have permission to create workspaces in that organisation. Falling back to your primary organisation instead.\"],\"fkXBUO\":[\"You don't have permission to invite to any workspace in this organisation.\"],\"QYdixc\":[\"You have a pending invite\"],\"ombH/9\":[\"You have a pending invite to \",[\"0\"],\". Open it to join the organisation.\"],\"8v7ix0\":[\"You have a pending invite to \",[\"0\"],\". The admin needs to free a seat before you can join.\"],\"select.all.modal.already.added\":[\"You have already added <0>\",[\"existingContextCount\",\"plural\",{\"one\":[\"#\",\" conversation\"],\"other\":[\"#\",\" conversations\"]}],\" to this chat.\"],\"7W35AW\":[\"You have already added all the conversations related to this\"],\"participant.modal.change.mic.confirmation.text\":[\"You have changed the mic. Doing this will save your audio till this point and restart your recording.\"],\"T/Q7jW\":[\"You have successfully unsubscribed.\"],\"fopZ8o\":[\"You have support access to this workspace. It ends automatically on \",[\"endsAt\"],\".\"],\"UiS5ze\":[\"You haven't joined any workspace in this organisation yet.\"],\"participant.modal.verify_prompt.description\":[\"You haven't verified any outcomes yet. Would you like to verify before finishing?\"],\"PjAkjf\":[\"You left the workspace\"],\"lTDtES\":[\"You may also choose to record another conversation.\"],\"yCtSKg\":[\"You must login with the same provider you used to sign up. If you face any issues, please contact support.\"],\"t6Ti2e\":[\"You need an invitation from a colleague\"],\"snMcrk\":[\"You seem to be offline, please check your internet connection\"],\"MLw3ff\":[\"You stopped this run.\"],\"zlqA7w\":[\"You were trying to \",[\"action\"],\".\"],\"N/N2Av\":[\"You'll be added as an admin to \",[\"0\"],\" private workspaces. They'll appear in your sidebar right after.\"],\"cehffY\":[\"You'll be added as an admin to \",[\"singleName\"],\". It'll appear in your sidebar right after.\"],\"OR5x71\":[\"You'll find all your projects waiting for you.\"],\"hu3KYo\":[\"You'll land in a chat where dembrane helps shape the project before you collect conversations.\"],\"OQI3hm\":[\"You'll lose access to this workspace.\"],\"bX2FeG\":[\"You'll lose access to this workspace. Projects you created stay; your role here is removed.\"],\"participant.verify.instructions.receive.artefact\":[\"You'll soon get \",[\"objectLabel\"],\" to verify.\"],\"gDdsRc\":[\"You'll verify your new payment method on the next screen. You won't be charged, it just confirms the new card.\"],\"vkNkB8\":[\"You're about to change your own role to <0>\",[\"0\"],\". You'll immediately lose access to workspace settings, invites, and member management.\"],\"KS7iJH\":[\"You're all caught up.\"],\"ADMWt4\":[\"You're already a member of \",[\"resolvedWorkspaceName\"],\".\"],\"4tUHT/\":[\"You're already in \",[\"resolvedWorkspaceName\"],\".\"],\"ShgtZT\":[\"You're an external collaborator in this organisation. Open one of the workspaces shared with you below.\"],\"bbvEPE\":[\"You're in\"],\"LfpEZ9\":[\"You're logging in with the wrong email address\"],\"PVUJ6+\":[\"You're not in any organisation yet. Create a workspace to start a organisation, or ask a member for an invite.\"],\"Y3LcET\":[\"You're not part of any organisation right now.\"],\"FQdXKc\":[\"You're reusing seats you already paid for this period (someone left), so there's no charge now for those. The renewal reflects them.\"],\"HnqO9D\":[\"You're the only admin. Promote someone else before changing your role.\"],\"AcL9Ou\":[\"You've been invited to collaborate with \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"cZ4+ZH\":[\"You've been invited to collaborate with <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"ePJQ19\":[\"You've been invited to join \",[\"0\"],\" organisations. We'll take you in once you continue.\"],\"RTgVkc\":[\"You've been invited to join <0>\",[\"0\"],\". We'll take you there in a moment.\"],\"189Q0c\":[\"You've reached the free plan limit for this chat. Upgrade to keep the conversation going.\"],\"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.\"],\"snxpiF\":[\"vy@pryklad.ua\"],\"M5ub3j\":[\"Your access\"],\"WIv0oz\":[\"Your access to \",[\"0\"],\" ended on \",[\"1\"],\".\"],\"rrYs0B\":[\"Your agent will open dembrane and ask your permission before it can read anything.\"],\"participant.verify.instructions.approval.helps\":[\"Your approval helps us understand what you really think!\"],\"wmkjMv\":[\"Your browser is blocking the microphone. Allow access, then try again.\"],\"NzCkyb\":[\"Your call is booked: \",[\"bookedTime\"],\".\"],\"nKMLGG\":[\"Your call is booked.\"],\"MO4KK8\":[\"Your data will leave dembrane\"],\"mmGBWT\":[\"Your details\"],\"lRpeom\":[\"Your draft won't be saved.\"],\"z8F4/3\":[\"Ваша електронна пошта\"],\"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.\"],\"vaTeZ3\":[\"Ваш відгук і ця відповідь надходять команді dembrane.\"],\"DM8bIO\":[\"Your free plan includes one report. Upgrade to create more.\"],\"+Tx3/U\":[\"Your free transcription hour is used up.\"],\"aZHXuZ\":[\"Your inputs will be saved automatically.\"],\"Yo3xGL\":[\"Your invite is still pending. Try again once the admin frees a seat or upgrades the workspace.\"],\"aCpo/d\":[\"Your invite was already accepted, but you're no longer a member of \",[\"resolvedWorkspaceName\"],\". Ask the admin to re-invite you.\"],\"/Mqhsc\":[\"Your last payment didn't go through. Your plan stays active. Update your payment method or retry the charge to settle up.\"],\"1Uvqtx\":[\"Your latest report generation was cancelled. Showing your most recent completed report.\"],\"JgZh6f\":[\"Your logo is still active but can't be changed on this tier.\"],\"q8yluz\":[\"Your name\"],\"VSneAo\":[\"Ваше ім'я, електронна пошта та поточна сторінка додаються, щоб ми могли з вами зв'язатися.\"],\"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\"],\"b5hWvx\":[\"Your organisations\"],\"SPfRTw\":[\"Your own logo comes with a paid plan.\"],\"YEPYkg\":[\"Your own member card stays at the top of the list.\"],\"ArN1eD\":[\"Your paid period has run out, so we cannot put this plan back on from here. Email support@dembrane.com and we will sort it out with you.\"],\"+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\"],\".\"],\"xY7dU9\":[\"Your plan is arranged with dembrane, so there is nothing to pay here. Everything your plan includes stays available.\"],\"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.\"],\"FIrPF5\":[\"Your plan lets you take the mark off.\"],\"7IFghD\":[\"Your plan won't renew. You keep access until the period ends.\"],\"pYnFb6\":[\"Your recording, \",[\"0\"]],\"MBrtod\":[\"Your request is in.\"],\"B+9EHO\":[\"Your response has been recorded. You may now close this tab.\"],\"DrJCbp\":[\"Вашу відповідь записано. Тепер ви можете закрити цю вкладку. Ви також можете записати ще одну розмову або поділитися QR-кодом, щоб інші могли долучитися.\"],\"7i36j4\":[\"Вашу відповідь записано. Тепер ви можете закрити цю вкладку. Ви також можете поділитися QR-кодом, щоб інші могли долучитися, або записати ще одну розмову.\"],\"wurHZF\":[\"Your responses\"],\"B8Q/i2\":[\"Your view has been created. Please wait as we process and analyse the data.\"],\"library.views.title\":[\"Your Views\"],\"lWeANa\":[\"Your workspace is waiting for you. Click continue to collaborate.\"],\"crrqaX\":[\"yr\"],\"ACjxWW\":[\"Zoom\"]}")as Messages; \ No newline at end of file diff --git a/echo/frontend/src/routes/participant/ParticipantPostConversation.tsx b/echo/frontend/src/routes/participant/ParticipantPostConversation.tsx index 5517d29b..acfa1263 100644 --- a/echo/frontend/src/routes/participant/ParticipantPostConversation.tsx +++ b/echo/frontend/src/routes/participant/ParticipantPostConversation.tsx @@ -116,7 +116,7 @@ export const ParticipantPostConversation = () => { return (
{