From bda6fcfec9f8404bbcecb4d9933fd80071ae86c8 Mon Sep 17 00:00:00 2001
From: Rashad Karanouh <11599358+rashad@users.noreply.github.com>
Date: Tue, 9 Jun 2026 18:00:48 +0400
Subject: [PATCH] feat(website): book an intro call after partner application
(#21343)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What
After a partner submits the application wizard, the success screen now
offers an inline Cal.com booking widget so they can book an intro call
on the spot — keeping the partner process high-touch.
- Inline Cal.com embed on the application success step, prefilled with
the applicant's name/email (company in the notes)
- Wide `month_view` layout; the success modal widens to ~960px (the
4-step form and mobile are unchanged)
- Event-type-details panel hidden via `cal('ui', { hideEventTypeDetails:
true })` so it's just calendar + times, on its own `partner-intro` Cal
namespace (isolated from the ContactCal embed)
- "I'll book later" escape hatch; backend / submission path untouched
## Why
The warmest moment is right after someone opts in. Today the success
screen only shows a Close button — this turns that moment into a
scheduled conversation.
## How
- `PartnerIntroCalEmbed` — thin wrapper over `@calcom/embed-react`
(already a dependency), reusing the existing `ContactCal` embed pattern
- `buildPartnerIntroPrefill` — pure mapping of applicant fields → Cal
prefill
- `PartnerApplicationSuccess` — presentational success view (heading +
subtitle + embed + dismiss)
- The wizard reports submitted-state up (`onSubmittedChange`) so the
modal widens only on the booking step
- New Lingui copy + regenerated catalogs (en/es/fr)
## Test plan
- `npx jest PartnerApplication` — green (prefill mapping, embed
link/layout/prefill, success view)
- `npx nx typecheck twenty-website` — clean
- `npx oxlint -c .oxlintrc.json` / `npx oxfmt --check` — clean
- Manual: submit the wizard → success step shows the wide booking
calendar, prefilled, dark theme, no event-details panel; "I'll book
later" closes the modal
## Notes
- Frontend only — no backend, schema, or submission-path change
- Cal link `rashad-twenty/partner-intro` lives as a constant in
`config.ts`
- Branch is currently behind `main`; happy to rebase before review
---
packages/twenty-website/.env.example | 4 +
packages/twenty-website/src/locales/en.po | 31 ++---
packages/twenty-website/src/locales/es-ES.po | 29 +++--
packages/twenty-website/src/locales/fr-FR.po | 29 +++--
.../src/locales/generated/en.ts | 2 +-
.../src/locales/generated/es-ES.ts | 2 +-
.../src/locales/generated/fr-FR.ts | 2 +-
.../PartnerApplicationModal.tsx | 19 ++-
.../src/sections/PartnerApplication/config.ts | 7 ++
.../partner-application-modal-data.ts | 7 +-
.../wizard/PartnerApplicationSuccess.tsx | 110 ++++++++++++++++++
.../wizard/PartnerApplicationWizard.tsx | 58 +++------
.../wizard/PartnerIntroCalEmbed.tsx | 52 +++++++++
.../PartnerApplicationSuccess.test.tsx | 48 ++++++++
.../__tests__/PartnerIntroCalEmbed.test.tsx | 48 ++++++++
.../__tests__/partner-intro-prefill.test.ts | 37 ++++++
.../wizard/partner-intro-prefill.ts | 26 +++++
17 files changed, 423 insertions(+), 88 deletions(-)
create mode 100644 packages/twenty-website/src/sections/PartnerApplication/config.ts
create mode 100644 packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerApplicationSuccess.tsx
create mode 100644 packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerIntroCalEmbed.tsx
create mode 100644 packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/PartnerApplicationSuccess.test.tsx
create mode 100644 packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/PartnerIntroCalEmbed.test.tsx
create mode 100644 packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/partner-intro-prefill.test.ts
create mode 100644 packages/twenty-website/src/sections/PartnerApplication/wizard/partner-intro-prefill.ts
diff --git a/packages/twenty-website/.env.example b/packages/twenty-website/.env.example
index 24b69aa89aa..473f15f729a 100644
--- a/packages/twenty-website/.env.example
+++ b/packages/twenty-website/.env.example
@@ -40,3 +40,7 @@ ENTERPRISE_JWT_PUBLIC_KEY=
# (server-side only) via the /s/partners REST endpoint.
TWENTY_PARTNERS_API_URL=
TWENTY_PARTNERS_API_KEY=
+
+# Cal.com path (no host) the partner application success screen books the intro
+# call onto, e.g. acme/partner-intro. Falls back to a built-in default when unset.
+NEXT_PUBLIC_PARTNER_INTRO_CAL_LINK=
diff --git a/packages/twenty-website/src/locales/en.po b/packages/twenty-website/src/locales/en.po
index f701472c91c..65c1e29d225 100644
--- a/packages/twenty-website/src/locales/en.po
+++ b/packages/twenty-website/src/locales/en.po
@@ -1153,11 +1153,6 @@ msgstr "Classic never dies. It just gets extended one more time."
msgid "Clear filters"
msgstr "Clear filters"
-#. js-lingui-id: yz7wBu
-#: src/sections/PartnerApplication/partner-application-modal-data.ts
-msgid "Close"
-msgstr "Close"
-
#. js-lingui-id: L/LPQZ
#: src/sections/Faq/faq.data.ts
msgid "Cloud Pro is $9/user/month (yearly). Organization is $19/user/month and unlocks SSO and row-level permissions for teams that need finer access control."
@@ -2138,6 +2133,11 @@ msgstr "Ghana 🇬🇭"
msgid "Good choice!"
msgstr "Good choice!"
+#. js-lingui-id: Zh0acB
+#: src/sections/PartnerApplication/partner-application-modal-data.ts
+msgid "Grab 30 minutes so we can get to know your team."
+msgstr "Grab 30 minutes so we can get to know your team."
+
#. js-lingui-id: +tDN2S
#: src/sections/PartnerApplication/wizard/partner-fields.data.ts
msgid "Greece 🇬🇷"
@@ -2320,6 +2320,11 @@ msgstr "How W3villa Technologies shipped W3Grads, an AI mock interview platform
msgid "Hungary 🇭🇺"
msgstr "Hungary 🇭🇺"
+#. js-lingui-id: T6wyby
+#: src/sections/PartnerApplication/partner-application-modal-data.ts
+msgid "I'll book later →"
+msgstr "I'll book later →"
+
#. js-lingui-id: RYDa0v
#: src/sections/PartnerApplication/wizard/partner-fields.data.ts
msgid "Iceland 🇮🇸"
@@ -3084,6 +3089,11 @@ msgstr "Norwegian"
msgid "Now a developer can describe what they want to Claude Code and have a working app in an afternoon. A custom object, a scoring workflow, a new view, an integration. The bottleneck isn't building anymore. It's whether your platform lets you."
msgstr "Now a developer can describe what they want to Claude Code and have a working app in an afternoon. A custom object, a scoring workflow, a new view, an integration. The bottleneck isn't building anymore. It's whether your platform lets you."
+#. js-lingui-id: WFvpMn
+#: src/sections/PartnerApplication/partner-application-modal-data.ts
+msgid "Now book your intro call."
+msgstr "Now book your intro call."
+
#. js-lingui-id: CzeIij
#: src/app/[locale]/pricing/plan-table.data.ts
msgid "Number of dashboards"
@@ -4128,10 +4138,10 @@ msgstr "Thai"
msgid "Thailand 🇹🇭"
msgstr "Thailand 🇹🇭"
-#. js-lingui-id: pYwj0k
+#. js-lingui-id: eRjhUK
#: src/sections/PartnerApplication/partner-application-modal-data.ts
-msgid "Thanks,"
-msgstr "Thanks,"
+msgid "Thanks, you're in."
+msgstr "Thanks, you're in."
#. js-lingui-id: FjkPYg
#: src/app/[locale]/customers/elevate-consulting/page.tsx
@@ -4770,11 +4780,6 @@ msgstr "We could not submit your application. Please try again in a moment."
msgid "We didn't want to patch over the problem. We wanted to build something institutions could rely on at scale, and that meant starting from a foundation solid enough to support the full complexity of what we had in mind."
msgstr "We didn't want to patch over the problem. We wanted to build something institutions could rely on at scale, and that meant starting from a foundation solid enough to support the full complexity of what we had in mind."
-#. js-lingui-id: u7hKUm
-#: src/sections/PartnerApplication/partner-application-modal-data.ts
-msgid "we'll be in touch!"
-msgstr "we'll be in touch!"
-
#. js-lingui-id: d5CWI6
#: src/app/[locale]/partners/components/PartnerHero.tsx
msgid "We're building the #1 Open Source CRM, but we can't do it alone. Join our partner ecosystem and grow with us."
diff --git a/packages/twenty-website/src/locales/es-ES.po b/packages/twenty-website/src/locales/es-ES.po
index 96322dbd4ef..34ab8d368c8 100644
--- a/packages/twenty-website/src/locales/es-ES.po
+++ b/packages/twenty-website/src/locales/es-ES.po
@@ -1158,11 +1158,6 @@ msgstr "Lo clásico nunca muere. Solo se extiende una vez más."
msgid "Clear filters"
msgstr ""
-#. js-lingui-id: yz7wBu
-#: src/sections/PartnerApplication/partner-application-modal-data.ts
-msgid "Close"
-msgstr ""
-
#. js-lingui-id: L/LPQZ
#: src/sections/Faq/faq.data.ts
msgid "Cloud Pro is $9/user/month (yearly). Organization is $19/user/month and unlocks SSO and row-level permissions for teams that need finer access control."
@@ -2143,6 +2138,11 @@ msgstr ""
msgid "Good choice!"
msgstr "¡Buena elección!"
+#. js-lingui-id: Zh0acB
+#: src/sections/PartnerApplication/partner-application-modal-data.ts
+msgid "Grab 30 minutes so we can get to know your team."
+msgstr ""
+
#. js-lingui-id: +tDN2S
#: src/sections/PartnerApplication/wizard/partner-fields.data.ts
msgid "Greece 🇬🇷"
@@ -2325,6 +2325,11 @@ msgstr "Cómo W3villa Technologies lanzó W3Grads, una plataforma de entrevistas
msgid "Hungary 🇭🇺"
msgstr ""
+#. js-lingui-id: T6wyby
+#: src/sections/PartnerApplication/partner-application-modal-data.ts
+msgid "I'll book later →"
+msgstr ""
+
#. js-lingui-id: RYDa0v
#: src/sections/PartnerApplication/wizard/partner-fields.data.ts
msgid "Iceland 🇮🇸"
@@ -3089,6 +3094,11 @@ msgstr ""
msgid "Now a developer can describe what they want to Claude Code and have a working app in an afternoon. A custom object, a scoring workflow, a new view, an integration. The bottleneck isn't building anymore. It's whether your platform lets you."
msgstr "Ahora un desarrollador puede describir lo que quiere a Claude Code y tener una app funcionando en una tarde. Un objeto personalizado, un flujo de puntuación, una vista nueva, una integración. El cuello de botella ya no es construir. Es si tu plataforma te lo permite."
+#. js-lingui-id: WFvpMn
+#: src/sections/PartnerApplication/partner-application-modal-data.ts
+msgid "Now book your intro call."
+msgstr ""
+
#. js-lingui-id: CzeIij
#: src/app/[locale]/pricing/plan-table.data.ts
msgid "Number of dashboards"
@@ -4133,9 +4143,9 @@ msgstr ""
msgid "Thailand 🇹🇭"
msgstr ""
-#. js-lingui-id: pYwj0k
+#. js-lingui-id: eRjhUK
#: src/sections/PartnerApplication/partner-application-modal-data.ts
-msgid "Thanks,"
+msgid "Thanks, you're in."
msgstr ""
#. js-lingui-id: FjkPYg
@@ -4775,11 +4785,6 @@ msgstr "No pudimos enviar tu solicitud. Inténtalo de nuevo en un momento."
msgid "We didn't want to patch over the problem. We wanted to build something institutions could rely on at scale, and that meant starting from a foundation solid enough to support the full complexity of what we had in mind."
msgstr "No queríamos parchear el problema. Queríamos crear algo en lo que las instituciones pudieran confiar a escala, y eso significaba partir de una base lo suficientemente sólida como para soportar toda la complejidad de lo que teníamos en mente."
-#. js-lingui-id: u7hKUm
-#: src/sections/PartnerApplication/partner-application-modal-data.ts
-msgid "we'll be in touch!"
-msgstr ""
-
#. js-lingui-id: d5CWI6
#: src/app/[locale]/partners/components/PartnerHero.tsx
msgid "We're building the #1 Open Source CRM, but we can't do it alone. Join our partner ecosystem and grow with us."
diff --git a/packages/twenty-website/src/locales/fr-FR.po b/packages/twenty-website/src/locales/fr-FR.po
index 579c6464ec9..6b88b2d51e0 100644
--- a/packages/twenty-website/src/locales/fr-FR.po
+++ b/packages/twenty-website/src/locales/fr-FR.po
@@ -1158,11 +1158,6 @@ msgstr "Le classique ne meurt jamais. Il est simplement étendu une fois de plus
msgid "Clear filters"
msgstr ""
-#. js-lingui-id: yz7wBu
-#: src/sections/PartnerApplication/partner-application-modal-data.ts
-msgid "Close"
-msgstr ""
-
#. js-lingui-id: L/LPQZ
#: src/sections/Faq/faq.data.ts
msgid "Cloud Pro is $9/user/month (yearly). Organization is $19/user/month and unlocks SSO and row-level permissions for teams that need finer access control."
@@ -2143,6 +2138,11 @@ msgstr ""
msgid "Good choice!"
msgstr "Bon choix !"
+#. js-lingui-id: Zh0acB
+#: src/sections/PartnerApplication/partner-application-modal-data.ts
+msgid "Grab 30 minutes so we can get to know your team."
+msgstr ""
+
#. js-lingui-id: +tDN2S
#: src/sections/PartnerApplication/wizard/partner-fields.data.ts
msgid "Greece 🇬🇷"
@@ -2325,6 +2325,11 @@ msgstr "Comment W3villa Technologies a livré W3Grads, une plateforme d’entret
msgid "Hungary 🇭🇺"
msgstr ""
+#. js-lingui-id: T6wyby
+#: src/sections/PartnerApplication/partner-application-modal-data.ts
+msgid "I'll book later →"
+msgstr ""
+
#. js-lingui-id: RYDa0v
#: src/sections/PartnerApplication/wizard/partner-fields.data.ts
msgid "Iceland 🇮🇸"
@@ -3089,6 +3094,11 @@ msgstr ""
msgid "Now a developer can describe what they want to Claude Code and have a working app in an afternoon. A custom object, a scoring workflow, a new view, an integration. The bottleneck isn't building anymore. It's whether your platform lets you."
msgstr "Aujourd’hui, un développeur peut décrire ce qu’il veut à Claude Code et avoir une application fonctionnelle dans l’après-midi. Un objet personnalisé, un workflow de scoring, une nouvelle vue, une intégration. Le goulot d’étranglement n’est plus la construction. C’est de savoir si votre plateforme vous le permet."
+#. js-lingui-id: WFvpMn
+#: src/sections/PartnerApplication/partner-application-modal-data.ts
+msgid "Now book your intro call."
+msgstr ""
+
#. js-lingui-id: CzeIij
#: src/app/[locale]/pricing/plan-table.data.ts
msgid "Number of dashboards"
@@ -4133,9 +4143,9 @@ msgstr ""
msgid "Thailand 🇹🇭"
msgstr ""
-#. js-lingui-id: pYwj0k
+#. js-lingui-id: eRjhUK
#: src/sections/PartnerApplication/partner-application-modal-data.ts
-msgid "Thanks,"
+msgid "Thanks, you're in."
msgstr ""
#. js-lingui-id: FjkPYg
@@ -4775,11 +4785,6 @@ msgstr "Nous n'avons pas pu soumettre votre candidature. Veuillez réessayer dan
msgid "We didn't want to patch over the problem. We wanted to build something institutions could rely on at scale, and that meant starting from a foundation solid enough to support the full complexity of what we had in mind."
msgstr "Nous ne voulions pas simplement masquer le problème. Nous voulions construire quelque chose sur lequel les établissements pourraient s'appuyer à grande échelle, ce qui signifiait partir d'une base suffisamment solide pour supporter toute la complexité de ce que nous avions en tête."
-#. js-lingui-id: u7hKUm
-#: src/sections/PartnerApplication/partner-application-modal-data.ts
-msgid "we'll be in touch!"
-msgstr ""
-
#. js-lingui-id: d5CWI6
#: src/app/[locale]/partners/components/PartnerHero.tsx
msgid "We're building the #1 Open Source CRM, but we can't do it alone. Join our partner ecosystem and grow with us."
diff --git a/packages/twenty-website/src/locales/generated/en.ts b/packages/twenty-website/src/locales/generated/en.ts
index 24b20ba4699..0d22d095297 100644
--- a/packages/twenty-website/src/locales/generated/en.ts
+++ b/packages/twenty-website/src/locales/generated/en.ts
@@ -1 +1 @@
-/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"BUIzFF\":[\"-33% off\"],\"q0ur5+\":[[\"0\"],\" | Twenty Customer Story\"],\"NSO/FI\":[[\"hourly\"],\"/hr\"],\"2Ha6K9\":[[\"labelText\"],\" filter, \",[\"0\"],\" selected, click to open\"],\"0Xh9/0\":[[\"labelText\"],\" filter, click to open\"],\"icND7o\":[\"/ seat / month - billed yearly\"],\"XUqxHW\":[\"/user/month\"],\"ojimXJ\":[\"© 2026 – Twenty\"],\"2ygf/L\":[\"← Back\"],\"9j/bUt\":[\"← Twenty partners\"],\"foGG8A\":[\"+$105/user per month\"],\"Bsq9GJ\":[\"+$35/user per month\"],\"mWSpW5\":[\"+$5/user per month\"],\"JIwDAd\":[\"+$7000/org per month\"],\"yVr18d\":[\"+$75/user per month\\nSwitch to enterprise!\"],\"iK+ikF\":[\"+10k others\"],\"nRtVCK\":[\"+20% of net spend\\n+$75/user per month\\nSwitch to enterprise!\"],\"Uqm/0u\":[\"<0>...with AI that actually0><1/><2>helps you2><3>work faster3>\"],\"ZKcQvG\":[\"<0>A CRM for teams0><1/><2>that2><3>move fast3>\"],\"2Avwos\":[\"<0>A custom CRM gives your org an edge,0><1>but building one1><2>comes with2><3>tradeoffs3>\"],\"GIqRh7\":[\"<0>A demo worth a0><1/><2>thousand words2>\"],\"h5K9X+\":[\"<0>A modern CRM with0><1>an intuitive interface1>\"],\"YXQqRD\":[\"<0>Assemble, iterate and adapt a robust CRM,0><1>that's quick to flex1>\"],\"XnXDNI\":[\"<0>Become0><1/><2>our partner2>\"],\"Tp01iS\":[\"<0>Begin with production-grade0><1>building blocks1>\"],\"LCx6+8\":[\"<0>Build a CRM your competitors0><1>can't buy.1>\"],\"lt0XAM\":[\"<0>Build it in an afternoon.0><1>AI made the gap that small.1>\"],\"y8AZXw\":[\"<0>Build your Enterprise CRM0><1>at AI Speed1>\"],\"OGcRSu\":[\"<0>Continue iteration0><1>without friction1>\"],\"2fzdgb\":[\"<0>CRM was a ledger.0><1>AI turned it into an operating system.1>\"],\"gx6Utt\":[\"<0>Dev teams power<1/>company-wide0><2/><3>change with Twenty3>\"],\"FyjPh/\":[\"<0>Differentiation now0><1>lives in the code you own.1>\"],\"FymD+X\":[\"<0>Enterprise0><1>activation1>\"],\"V7uulz\":[\"<0>Everything you need,0><1>out of the box1>\"],\"IvtaRX\":[\"<0>Find your0><1>Twenty partner1>\"],\"f36X9W\":[\"<0>Go the extra mile0><1>with no-code1>\"],\"NUko9S\":[\"<0>How teams0><1/><2>built with Twenty2>\"],\"WCsM/Q\":[\"<0>Latest0><1/><2>Releases2>\"],\"1LHR8V\":[\"<0>Make your GTM team happy0><1/><2>with2><3>a CRM they'll love3>\"],\"K6xBTA\":[\"<0>Ready to build0><1/><2>your own story?2>\"],\"pddHmc\":[\"<0>Ready to grow0><1/><2>with Twenty?2>\"],\"mzlPTg\":[\"<0>See how teams0><1/><2>build2><3>on Twenty3>\"],\"7D+4tN\":[\"<0>Simple0><1/><2>Pricing2>\"],\"pj2iec\":[\"<0>Stay in control with our0><1>open-source software1>\"],\"Oc/cFZ\":[\"<0>Stop fighting custom.0><1/><2>Start building, with Twenty2>\"],\"zykz1r\":[\"<0>The future of CRM is built,0><1>not bought.1>\"],\"6LusuM\":[\"<0>Trust the n°1 CRM,0><1>or not!1>\"],\"be30i9\":[\"$0\"],\"6inRXo\":[\"$1/orchestration run/org\\n+$75/user per month\\nSwitch to enterprise!\"],\"EkIZkY\":[\"$19\"],\"8r6DgO\":[\"$9\"],\"EHNAf2\":[\"1 click\"],\"qvNspm\":[\"1‑800‑YES‑SOFTWARE\"],\"6WQdu8\":[\"100 per minute\"],\"uuKUqZ\":[\"11 permissions\\ngroups\"],\"2szX5S\":[\"150\"],\"SaSafJ\":[\"150 hours\"],\"9ntyY8\":[\"150 hrs\"],\"2z1Znr\":[\"2 years contract\"],\"l6Vx4q\":[\"2,000+\"],\"FKcV/y\":[\"2025\"],\"PJgfBS\":[\"3\"],\"BL47wE\":[\"3 2 years contract\\n-33% off\"],\"/jgC+9\":[\"3 product lines\"],\"7SJhyh\":[\"30+\"],\"Pdl2UE\":[\"4 tools\"],\"2ScEtE\":[\"5 workflow credits/month included\"],\"hIKxCy\":[\"5,000\"],\"Z2TH0F\":[\"50 per minute\"],\"CiRGZ8\":[\"50 workflow credits/year included\"],\"tZvajW\":[\"6 workflows\"],\"AQPMc4\":[\"90%\"],\"fHxYPM\":[\"90%+\"],\"1GAcp6\":[\"A business that does not fit a\"],\"NLSM5L\":[\"A business that does not fit a template\"],\"GSM5RA\":[\"A CRM that\"],\"diWAWP\":[\"A CRM that grows with you\"],\"och6cp\":[\"A CRM that grows with you | NetZero & Twenty\"],\"EewhZt\":[\"A CRM they\"],\"muZzEA\":[\"A CRM they actually own\"],\"GoyOzl\":[\"A platform ready to\"],\"rxMguZ\":[\"A platform ready to grow\"],\"R5hTKX\":[\"A real estate agency on WhatsApp\"],\"hwoGni\":[\"A real estate agency on WhatsApp built a CRM around it\"],\"WjUlJr\":[\"A retro theme as a paid add-on is somehow the most believable part.\"],\"r9Msiv\":[\"A year ago, customizing your CRM meant hiring a Salesforce consultant, learning Apex, waiting months. The gap between \\\"I want this\\\" and \\\"it's live\\\" was measured in quarters and invoices. So people settled. They bent their process to fit the tool and called it adoption.\"],\"c0RR2h\":[\"About 150 hours per month saved in manual operations. Real-time metrics for the business owner. Growth readiness without adding operational headcount. A team that can answer questions that used to take days to piece together.\"],\"41o3VS\":[\"AC&T and Flycoder moved from a dead vendor export to self-hosted Twenty, with over 90% lower CRM cost and full control.\"],\"TuJiQF\":[\"AC&T Education Migration\"],\"yHUdh6\":[\"AC&T Education Migration (actimmi.com) is an education agency in Australia. They help international students with applications to education providers and visas. They had been on a previous CRM until the vendor shut the system down, leaving nothing but a CSV export.\"],\"MPzy5R\":[\"AC&T moved to a self-hosted Twenty instance with no vendor risk, no forced migration, and CRM costs reduced by more than 90%.\"],\"J+A83M\":[\"AC&T replaced a shuttered vendor CRM with self-hosted Twenty and cut CRM costs by more than 90%.\"],\"muhZ+X\":[\"Activating your enterprise license…\"],\"Yyn/dP\":[\"Active filters\"],\"TDMykO\":[\"actually get used\"],\"+/fX0G\":[\"actually own\"],\"woOp+c\":[\"Add objects and fields\"],\"Y2K3rp\":[\"Add-ons\"],\"Op7nVF\":[\"Adoption\"],\"TeMRC2\":[\"advanced\"],\"2050Pj\":[\"Advisory & Discovery\"],\"QjSFuI\":[\"Afghanistan 🇦🇫\"],\"StqEz0\":[\"Africa\"],\"NmHsVh\":[\"Agency\"],\"vZKKhf\":[\"Aggregate, bar, line, and pie widgets\"],\"rp2omj\":[\"Agribusiness\"],\"jiGK6+\":[\"AI (Einstein)\"],\"aUn7Ps\":[\"AI & Automations\"],\"HbXHSp\":[\"AI agents\"],\"WGXwzu\":[\"AI agents are starting to draft outreach, score leads, research accounts, write follow-ups, update deal stages. Every one of these actions reads from and writes to the CRM. The scoreboard became the playbook. The database became the brain.\"],\"Rsxdfy\":[\"AI Agents with custom skills\"],\"TfV/y9\":[\"AI chat, settings, and records in a side panels for fast, single-screen access.\"],\"R+bwFB\":[\"AI for rapid iterations\"],\"+pgY/C\":[\"AI in the\"],\"A6v5aI\":[\"AI in the migration workflow\"],\"t97j+F\":[\"AI-assisted\"],\"7xlBwk\":[\"Albania 🇦🇱\"],\"EszGq4\":[\"Algeria 🇩🇿\"],\"LIGwFL\":[\"Alternative Partners\"],\"GDVvyT\":[\"Alternative Partners is a consulting firm that moved from Salesforce to a self-hosted Twenty instance. Benjamin Reynolds led the migration. He had already become a Twenty expert implementing Twenty for one of Twenty's first cloud customers.\"],\"CCrRuT\":[\"Alternative Partners replaced Salesforce with self-hosted Twenty, using agentic AI to compress migration work.\"],\"UIu18Y\":[\"Alternative Partners used agentic AI to compress what would typically be weeks of Salesforce migration work into something a single person could oversee.\"],\"iFLhqi\":[\"Amrendra Pratap Singh\"],\"Sbiivs\":[\"Andorra 🇦🇩\"],\"Uv5eaJ\":[\"Angola 🇦🇴\"],\"qKANz3\":[\"Antigua & Barbuda 🇦🇬\"],\"aGCcXe\":[\"Any Questions?\"],\"lgSvgF\":[\"Anything else we should know?\"],\"pkMjbA\":[\"Anything that needs a developer.\"],\"dYZUP3\":[\"Anything that needs devops skills.\"],\"AfiWqP\":[\"APAC\"],\"/AMVjF\":[\"APEX tutorials\"],\"OZtEcz\":[\"API\"],\"yKBF3l\":[\"API access\"],\"GpYSXo\":[\"API backbone\"],\"30KnZB\":[\"API calls\"],\"42FQ3y\":[\"API-first\"],\"azQMHP\":[\"APIs are extra. Simplicity has a price.\"],\"MqJvvH\":[\"APIs, SDKs and webhooks to extend Twenty and ship apps on top of your CRM data.\"],\"I1Z4AM\":[\"Apply to build\"],\"zX3HUD\":[\"Apply to join the Twenty certified partner ecosystem.\"],\"8HV3WN\":[\"Arabic\"],\"uicv6Z\":[\"Architecture\"],\"fT9xVz\":[\"Argentina 🇦🇷\"],\"3KxGep\":[\"Armenia 🇦🇲\"],\"Sfa0xD\":[\"around it\"],\"S+Q+1d\":[\"Ask questions, automate tasks, and get insights with AI that understands your data and helps you move faster every day, end to end across teams.\"],\"v7zTZl\":[\"Assign owners and due dates\"],\"4/b98B\":[\"at the core\"],\"fxL/Km\":[\"Attachments without the chaos.\"],\"y2W2Hg\":[\"Audit logs\"],\"tw0/s1\":[\"Australia 🇦🇺\"],\"4cf5s+\":[\"Austria 🇦🇹\"],\"FFv0Vh\":[\"Automation\"],\"SJ7WSP\":[\"Available on YouTube!\"],\"8d+jRc\":[\"Azerbaijan 🇦🇿\"],\"iH8pgl\":[\"Back\"],\"wIoAQo\":[\"Bahamas 🇧🇸\"],\"Rhju1T\":[\"Bahrain 🇧🇭\"],\"LxzgmZ\":[\"Bangladesh 🇧🇩\"],\"rtcPS0\":[\"Barbados 🇧🇧\"],\"RownlY\":[\"Based in\"],\"jQLfIW\":[\"Because apparently privacy feels more premium with a surcharge.\"],\"qEQv1F\":[\"Because everything is built on Twenty's open foundation, Flycoder could wire the exact logic AC&T needed without fighting the platform.\"],\"uIG0OH\":[\"Because the foundation is solid, W3Grads is architected for what comes next, including a payment layer for future paid interview plans and nationwide scale without structural rewrites.\"],\"JGM+JO\":[\"Because true orchestration means putting a dollar sign on every dramatic entrance.\"],\"PKMHNe\":[\"become a genius!\"],\"6ZCRfT\":[\"Become a partner\"],\"7ysT6Z\":[\"Become a Twenty Partner — Application\"],\"0TCnEf\":[\"Belarus 🇧🇾\"],\"qblg4t\":[\"Belgium 🇧🇪\"],\"pSF7xM\":[\"Belize 🇧🇿\"],\"Hds3Bq\":[\"Bengali\"],\"cTWkw3\":[\"Benin 🇧🇯\"],\"SYfuGP\":[\"Benjamin Reynolds\"],\"YfjrMq\":[\"Bertrams\"],\"mzTjnf\":[\"Better than Liquid Glass!\"],\"GvGk4g\":[\"Beyond\"],\"OPnz/X\":[\"Bhutan 🇧🇹\"],\"TVJDFA\":[\"Bolivia 🇧🇴\"],\"MkvsWx\":[\"Book a call\"],\"Wzdd8u\":[\"Bosnia & Herzegovina 🇧🇦\"],\"wtNsrt\":[\"Botswana 🇧🇼\"],\"yCaNfF\":[\"Brazil 🇧🇷\"],\"bxWnM1\":[\"breaking operations\"],\"fYFNV7\":[\"Browse Twenty's certified partner network: regional coverage, languages, deployment expertise, and direct booking links.\"],\"VX4eI/\":[\"Brunei 🇧🇳\"],\"sbr0X/\":[\"Build a dashboard of pipeline by stage\"],\"uetyzD\":[\"Build a pipeline board grouped by stage\"],\"Utc5RF\":[\"Build custom dashboards from live CRM data. Aggregate anything — deals, accounts, activity — into charts your team actually reads.\"],\"e1u+Zh\":[\"Build on an open platform\"],\"/ETeLn\":[\"built a\"],\"SoAKmY\":[\"Built for speed\"],\"sdItv6\":[\"Bulgaria 🇧🇬\"],\"dNnRlc\":[\"Burkina Faso 🇧🇫\"],\"j8RGrG\":[\"Burned by vendor lock-in, AC&T built a CRM they actually own | Twenty\"],\"jtdtLa\":[\"Burundi 🇧🇮\"],\"L40Ae7\":[\"Calendar / booking link\"],\"4yFkf9\":[\"Cambodia 🇰🇭\"],\"AvRzYu\":[\"Cameroon 🇨🇲\"],\"wCALve\":[\"Can developers extend Twenty with code?\"],\"6mytgb\":[\"Can I migrate from Salesforce or HubSpot?\"],\"nEOTNi\":[\"Canada 🇨🇦\"],\"hRO6uK\":[\"Cape Verde 🇨🇻\"],\"M1RLfx\":[\"Catalan\"],\"NUrY9o\":[\"Categories\"],\"dBApoS\":[\"Central African Republic 🇨🇫\"],\"iI3Dq9\":[\"Chad 🇹🇩\"],\"2D9CbR\":[\"Check more add-ons\"],\"2BY3So\":[\"Chile 🇨🇱\"],\"zG6t8U\":[\"China 🇨🇳\"],\"h1IXFK\":[\"Chinese\"],\"3wV73y\":[\"City\"],\"ZbCD7v\":[\"Classic never dies. It just gets extended one more time.\"],\"u8JHrO\":[\"Clear filters\"],\"yz7wBu\":[\"Close\"],\"L/LPQZ\":[\"Cloud Pro is $9/user/month (yearly). Organization is $19/user/month and unlocks SSO and row-level permissions for teams that need finer access control.\"],\"WYgF8M\":[\"Cloud Pro starts at $9/user/month with unlimited custom objects. Self-host the open source core for free, or upgrade to Organization for SSO and row-level permissions.\"],\"1YncLF\":[\"Co-founder at NetZero\"],\"vWaYWP\":[\"Co-founder, NetZero\"],\"dcLsG5\":[\"Colombia 🇨🇴\"],\"b5bnuN\":[\"Column-to-field mapping (including relations)\"],\"ofoEsM\":[\"Coming soon!\"],\"KGD9Kt\":[\"Commercial license (no AGPL obligations)\"],\"OnPROL\":[\"Commercials\"],\"chL5IG\":[\"Community\"],\"8CLnho\":[\"Community support\"],\"RxpseA\":[\"Comoros 🇰🇲\"],\"SHjhDC\":[\"Company or brand *\"],\"P/f7ez\":[\"Complete activation for your Twenty self-hosted enterprise license.\"],\"Fkb+LW\":[\"Compose your CRM and internal apps with a single extensibility toolkit.\"],\"kD7ZGH\":[\"Compose your CRM and internal apps with a single extensibility toolkit. Data model, layout, and automation.\"],\"2DQw7/\":[\"Congo 🇨🇬\"],\"iSLIjg\":[\"Connect\"],\"90KBr0\":[\"Connect Google or Microsoft accounts\"],\"xgrBCK\":[\"Connect Google or Microsoft accounts and see emails and events linked to CRM records automatically.\"],\"MVrQxI\":[\"Connected via API\"],\"cfAG43\":[\"Consulting\"],\"GsUBlG\":[\"Contact \",[\"partnerName\"]],\"Oii3vg\":[\"Contacts & Companies\"],\"24qVhV\":[\"Context lives with the record.\"],\"+Uepfb\":[\"Control\"],\"VOpE1H\":[\"control hub\"],\"sTIhSj\":[\"Control without\"],\"wH1xmY\":[\"Control without drag\"],\"Bj7igG\":[\"Control without the overhead\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"7qTWwB\":[\"Copy the enterprise key above.\"],\"PXnj76\":[\"Copy this key and paste it into your Twenty self-hosted instance settings.\"],\"FapWIq\":[\"Core Features\"],\"Al/blj\":[\"Costa Rica 🇨🇷\"],\"JRK+HF\":[\"Costs down more than\"],\"cRA2/z\":[\"Country *\"],\"Xn2Nlq\":[\"Create a workflow\"],\"B9nLrl\":[\"Create apps on Twenty\"],\"yAL7FY\":[\"Create custom apps\"],\"oS1RiS\":[\"Create tasks from records\"],\"D3S5+x\":[\"Create tasks, assign owners, and attach rich notes directly from any record. No tab-switching, no lost context.\"],\"MSlbwg\":[\"CRM\"],\"NLgmM4\":[\"CRM audit · Requirements · Process mapping · ROI · RevOps · Vendor selection\"],\"Y44Xsf\":[\"CRM costs dropped by more than 90%. Manual overhead tied to the old system is gone. For the first time, AC&T has a CRM they will not lose again.\"],\"wDasLa\":[\"CRM Engineer\"],\"DqkzNV\":[\"CRM Engineer, AC&T Education Migration\"],\"b7vNti\":[\"CRM was a database you filled on Fridays. AI turned it into the system that runs your go-to-market. To differentiate, you have to build what your competitors can't buy.\"],\"OACAVp\":[\"Croatia 🇭🇷\"],\"I6FFSA\":[\"CSV export anytime\"],\"8RWevB\":[\"CSV import & export\"],\"s+QiQi\":[\"CSV import flow\"],\"O2UtEV\":[\"Cuba 🇨🇺\"],\"lh6aPn\":[\"Custom AI models\"],\"OaTurC\":[\"Custom apps\"],\"TcUCTv\":[\"Custom Apps · Scripts · AI/agent integrations\"],\"yBSEtR\":[\"Custom deal stages for your process\"],\"L+b7SB\":[\"Custom deal stages, drag-and-drop boards, and real-time tracking so your pipeline reflects reality.\"],\"DUnke3\":[\"Custom Development\"],\"GAD3Dx\":[\"Custom domain\"],\"Vz1Vq2\":[\"Custom domain (crm.yourco.com)\"],\"oPwQt4\":[\"Custom fields\"],\"U1RB/7\":[\"Custom fields and relationships\"],\"WGKb6T\":[\"Custom fields, relationships, and a unified timeline for every contact and company in your workspace.\"],\"prIqWa\":[\"Custom layout\"],\"8skTDV\":[\"Custom objects\"],\"AbyZbl\":[\"Custom views\"],\"YjXLAQ\":[\"Customer Stories\"],\"NihQNk\":[\"Customers\"],\"qqLY+j\":[\"Customization\"],\"GRfLAg\":[\"Customizations\"],\"Pj5fGG\":[\"Cyprus 🇨🇾\"],\"w9VTXG\":[\"Czech\"],\"xkuHM6\":[\"Czech Republic 🇨🇿\"],\"4RLD4p\":[\"Daily messages\"],\"Fo2vDn\":[\"Danish\"],\"V0kvgB\":[\"Data import\"],\"5cNMFz\":[\"Data model\"],\"iq2WTm\":[\"Data modeling · Migrations · No-code workflows · Dashboards · SSO/SCIM · Integrations\"],\"/TlpVf\":[\"Deals that move themselves.\"],\"H1UtjM\":[\"Denmark 🇩🇰\"],\"n+SX4g\":[\"Developers\"],\"Wuqvfz\":[\"Director of Digital and Information, Elevate Consulting\"],\"e7R9Zi\":[\"Discover the newest features and improvements in Twenty,<0/>the #1 Open Source CRM.\"],\"W+b/DF\":[\"Discover what's new\"],\"rHLwDO\":[\"Djibouti 🇩🇯\"],\"Zjjbne\":[\"Do I need a developer to customize Twenty?\"],\"Zx22Ih\":[\"Does Twenty work with Claude, ChatGPT, and Cursor?\"],\"bMDnQR\":[\"Dominica 🇩🇲\"],\"ufcRA6\":[\"Dominican Republic 🇩🇴\"],\"pOLPPB\":[\"Don't get locked into someone else's ecosystem. Twenty's developer experience looks like normal software, with local setup, real data, live testing, and no proprietary tooling.\"],\"HDR0en\":[\"DR Congo 🇨🇩\"],\"mzedFr\":[\"Draft a workflow for an email sequence\"],\"fPma12\":[\"Drag-and-drop deals between stages\"],\"KIjvtr\":[\"Dutch\"],\"6r6pDf\":[\"e.g. React, Postgres, n8n…\"],\"hEtClO\":[\"Ecuador 🇪🇨\"],\"4CJ4xV\":[\"EdTech\"],\"aqxYLv\":[\"Education\"],\"OAdXUT\":[\"Egypt 🇪🇬\"],\"2xK+An\":[\"El Salvador 🇸🇻\"],\"1wTjWx\":[\"Elevate Consulting is a management consultancy based in Canada. When Justin Beadle, Director of Digital and Information, joined, the company ran entirely on Word documents, Excel spreadsheets, sticky notes, emails, and reliance on people. There was no CRM, no API-accessible tools, only a patchwork trying to stand in for a single source of truth.\"],\"2THY70\":[\"Elevate Consulting uses Twenty as the API backbone connecting billing, Teams, resourcing, and a custom front end around client and opportunity data.\"],\"wiTeYI\":[\"Elevate's CEO was so impressed with Twenty he started recommending it to clients before the internal setup was even complete. The team is exploring bringing Twenty to client projects as part of their consulting practice, including as the backend for custom-built products tailored to specific operational needs.\"],\"FNyrb0\":[\"Email & Calendar\"],\"AoN898\":[\"Email and Chat\"],\"ObCvfI\":[\"Email sharing\"],\"hfqiVr\":[\"Email/calendar activity on each record\"],\"XGd8Wo\":[\"Emails & Calendar\"],\"o4/9l1\":[\"Emails and events linked to CRM records\"],\"Qpn/bX\":[\"Encrypt your data\"],\"Iy8Gze\":[\"Encryption key rotation\"],\"lYGfRP\":[\"English\"],\"Ijh+h+\":[\"Enjoy unlimited customization using the AI coding tools you already love. Adapt your CRM to fit the way your business grows and wins.\"],\"xoqD/n\":[\"Enter a valid email address.\"],\"/OVUD6\":[\"Enter a valid URL (starting with http:// or https://).\"],\"NTskGY\":[\"Enterprise Activation | Twenty\"],\"3dQ6zJ\":[\"Environments\"],\"c0nqfC\":[\"Equatorial Guinea 🇬🇶\"],\"4DIpFY\":[\"Eritrea 🇪🇷\"],\"JIhNLR\":[\"Estonia 🇪🇪\"],\"8yXuJ9\":[\"Eswatini 🇸🇿\"],\"rktGGp\":[\"Ethiopia 🇪🇹\"],\"rQqP1P\":[\"Europe\"],\"IhKZhp\":[\"Even the training material is a feature worth celebrating.\"],\"sQP1sF\":[\"Every new release of Twenty, the #1 Open Source CRM, with changelogs, demos, and the highlights teams care about most.\"],\"rkZTD7\":[\"Every thread, on the right record.\"],\"kz/8m8\":[\"Everything in Pro\"],\"zoNk7e\":[\"Everything updates in real time, with AI chat always ready to help you move faster.\"],\"57gG1f\":[\"Experience enterprise-grade granularity, starting with an 11th permission.\"],\"uZRQi+\":[\"Expertise & experience\"],\"JTM5zS\":[\"Explore customer stories\"],\"weFouS\":[\"Extended run!\"],\"akLvep\":[\"Familiar, modern interface\"],\"gKNP7S\":[\"Farsi\"],\"abO45l\":[\"Fast path to action\"],\"e6BgMV\":[\"Field-level permissions\"],\"z+q1Th\":[\"Fiji 🇫🇯\"],\"sER+bs\":[\"Files\"],\"bOidm7\":[\"Filter partners\"],\"iabLgo\":[\"Filtered metrics from any object\"],\"sRUAXp\":[\"Find a certified Twenty partner to migrate, customise, and operate your open source CRM, or join the ecosystem and grow your practice with us.\"],\"TJ7HQl\":[\"Find a partner\"],\"MD032e\":[\"Find a Twenty partner\"],\"YeWg37\":[\"Find a Twenty Partner — Certified Open Source CRM Implementers\"],\"wHyJkT\":[\"Find the right partner to implement, customize, and tailor Twenty to your team.\"],\"9V48qi\":[\"Finland 🇫🇮\"],\"USZ2N6\":[\"Finnish\"],\"PHM5wp\":[\"Flexibility\"],\"HBJ0P5\":[\"Flow\\norchestration\"],\"obrJBN\":[\"Fly through your workspace with shortcuts and short load times.\"],\"HjFq2b\":[\"Flycoder, a full-stack development partner, helped them set up Twenty as a self-hosted instance shaped around how AC&T actually operates. The data model centers on students, not a generic contact-and-deal pipeline. Statuses update automatically: a workflow runs nightly to keep enrollment records current. Automated email reminders cover important dates. Adding a new record takes under a minute.\"],\"1SL9ZF\":[\"Focus on the use case, not the\"],\"P5E+kT\":[\"Focus on the use case, not the plumbing\"],\"wdVyxi\":[\"Folder/Label import\"],\"CKQ0za\":[\"For a firm that once ran on sticky notes, this is more than an upgrade. It is a complete transformation.\"],\"yAJC9c\":[\"For twenty years, CRM meant the same thing: a place to log calls, track deals, and pull reports on Friday. The real work happened in people's heads, in Slack threads, in hallway conversations. The CRM kept score. Nobody expected more from it.\"],\"wSoqhC\":[\"foundation\"],\"UCoxP5\":[\"Founder, Nine Dots Ventures\"],\"IPaRlc\":[\"Founder, Wintactix\"],\"671GY5\":[\"France 🇫🇷\"],\"tUgSXd\":[\"Free for you!\"],\"nLC6tu\":[\"French\"],\"weRlb1\":[\"from \",[\"minBudget\"]],\"Iuxc00\":[\"From CSV to CRM in minutes.\"],\"yDeZSV\":[\"From documents to\"],\"emeKZ7\":[\"From documents to open APIs\"],\"CMqgta\":[\"From Salesforce to\"],\"kl+hEJ\":[\"From Salesforce to self-hosted Twenty\"],\"syU/BD\":[\"From Salesforce to self-hosted Twenty, powered by AI | Alternative Partners\"],\"TH5XjF\":[\"From simple to\"],\"Lf7cb3\":[\"From simple to advanced\"],\"m1I5TY\":[\"Full communication history in one place\"],\"wXgKOm\":[\"Full customization\"],\"YZ7Q3Z\":[\"Full ownership\"],\"hdxwWi\":[\"Fully customizable\"],\"//hrfs\":[\"Gabon 🇬🇦\"],\"yau9J6\":[\"Gambia 🇬🇲\"],\"S84RWl\":[\"Generate tasks for my top 10 accounts\"],\"GOmD9p\":[\"Georgia 🇬🇪\"],\"DDcvSo\":[\"German\"],\"XcPIuI\":[\"Germany 🇩🇪\"],\"ZDIydz\":[\"Get started\"],\"xyKSqi\":[\"Ghana 🇬🇭\"],\"Ay/vbT\":[\"Good choice!\"],\"+tDN2S\":[\"Greece 🇬🇷\"],\"CZXzs4\":[\"Greek\"],\"DDgHcm\":[\"Grenada 🇬🇩\"],\"IsZ6P7\":[\"grow\"],\"MCLWq4\":[\"Grow with a flexible foundation\"],\"XpCing\":[\"grows\"],\"M/8CC1\":[\"Guatemala 🇬🇹\"],\"UZbq7J\":[\"Guinea 🇬🇳\"],\"vtpxPx\":[\"Guinea-Bissau 🇬🇼\"],\"GT8Ua2\":[\"Guyana 🇬🇾\"],\"5BLiJj\":[\"Haiti 🇭🇹\"],\"Xf5EJg\":[\"Halftone generator\"],\"DHC85F\":[\"Halftone Generator | Twenty\"],\"c3XJ18\":[\"Help\"],\"CRzGla\":[\"Help center\"],\"LiWOgh\":[\"Hey, I'm interested in meeting. Here's my project:\"],\"tGjibo\":[\"Hindi\"],\"qfSbUb\":[\"His approach was unconventional. Instead of mapping fields manually, scripting transforms, and validating data step by step, he handed the job to agentic AI tools with a brief: where the data lives, the GitHub repo for the target platform, and the Railway deployment. Start, and only return if something breaks beyond a 70% confidence fix.\"],\"i0qMbr\":[\"Home\"],\"CtU7yU\":[\"Homeseller\"],\"KYnPnU\":[\"Homeseller is a high-volume real estate agency in Singapore, founded by one of the country's top-performing property agents. The whole operation runs on WhatsApp: no email, no calendars, just group chats, thousands of them, with clients, agents, and leads together.\"],\"v6cmMq\":[\"Homeseller kept their habits. WhatsApp stayed WhatsApp. What changed is that everything flowing through those conversations now lands in a structured system, tracked, classified, and visible in real time.\"],\"xaIV9m\":[\"Homeseller, WhatsApp, and a CRM built around the business | Nine Dots & Twenty\"],\"zbfmqm\":[\"Honduras 🇭🇳\"],\"mqX9AX\":[\"Hosting & Infrastructure\"],\"SHZNBm\":[\"Hourly\"],\"Ivq5+7\":[\"Hourly rate\"],\"XnFo3G\":[\"How AC&T Education Migration and Flycoder replaced a shuttered vendor CRM with self-hosted Twenty, with 90%+ lower cost and full ownership.\"],\"PYi0f6\":[\"How Alternative Partners migrated from Salesforce to self-hosted Twenty using agentic AI in the implementation loop: fast migration, durable ownership.\"],\"+MLOVo\":[\"How Elevate Consulting moved off documents and spreadsheets to Twenty as the API-connected CRM at the center of their stack.\"],\"OIwpKt\":[\"How long does it take to get started?\"],\"iRzy9e\":[\"How NetZero uses Twenty across carbon credits, agricultural products, and franchised industrial systems with a modular CRM and a roadmap toward AI-assisted workflows.\"],\"NZYA4S\":[\"How Nine Dots Ventures rebuilt a Singapore real estate agency on Twenty with APIs, n8n, Grafana, and AI on top of 2,000+ WhatsApp messages a day.\"],\"bcln75\":[\"How Twenty collects, uses, safeguards, and discloses information when you use Twenty.com and related services.\"],\"URQPvK\":[\"How W3villa Technologies shipped W3Grads, an AI mock interview platform for institutions, on Twenty as the operational backbone.\"],\"htrFcw\":[\"Hungary 🇭🇺\"],\"RYDa0v\":[\"Iceland 🇮🇸\"],\"xalbpT\":[\"Ideas from the team building Twenty on open source CRM, customer data, GTM systems, and building software that lasts.\"],\"ePYQjq\":[\"Identity\"],\"l0JGUk\":[\"Impersonate users\"],\"N4OVNn\":[\"Implementation\"],\"yHueLx\":[\"Implementation partners\"],\"ZAKTS6\":[\"Import your data with field mapping, including relations. Export anytime — your data is always yours.\"],\"InyU0Z\":[\"In June 2025, Justin learned Twenty v1 had shipped. Within two or three days, the CEO asked him to look into setting up a CRM. The shift came from the potential of what could be built on top of fully open APIs. The timing was perfect.\"],\"d1Aru8\":[\"In production.\"],\"Sqb+jp\":[\"In-app preview for supported file types (when enabled)\"],\"3XP8Lk\":[\"Included!\"],\"/c4yUr\":[\"India 🇮🇳\"],\"iEJqDi\":[\"Indonesia 🇮🇩\"],\"BQukYF\":[\"Indonesian\"],\"S8gy7K\":[\"Industry\"],\"MeL8SS\":[\"Infinite scroll\"],\"+mOisw\":[\"Infinite scroll is still coming soon, unlike the invoice.\"],\"K8iwJx\":[\"Install shared tarball app\"],\"AHWM9N\":[\"Integration\"],\"OChKCc\":[\"Interactive halftone generator exported from Twenty.\"],\"+83cJG\":[\"Interested in meeting \",[\"partnerName\"]],\"mdsMtj\":[\"internal rollout\"],\"a+PGuG\":[\"Internet accounts per user\"],\"FtgjCv\":[\"Iran 🇮🇷\"],\"8yynyz\":[\"Iraq 🇮🇶\"],\"s7XmoY\":[\"Ireland 🇮🇪\"],\"/yQIKP\":[\"Is Twenty really open-source?\"],\"SdtpDP\":[\"Israel 🇮🇱\"],\"QjEULz\":[\"It is just such a nicer experience than dealing with a Salesforce or a HubSpot. My mission has been to get every tool API-accessible, so everything talks to each other.\"],\"FJ51pP\":[\"It is just such a nicer experience than dealing with a Salesforce or a HubSpot. My mission has been to get every tool API-accessible, so everything talks to each other. Twenty made that possible in a way older CRM platforms simply do not.\"],\"kqIAbN\":[\"It worked. This is AI-assisted iteration in practice: not AI as a product feature, but as part of implementation work, compressing what would typically be weeks into something one person can oversee without being the bottleneck.\"],\"ltNDOB\":[\"It's fragile. V1 ships quickly, but maintaining and making changes is a long term burden.\"],\"Lj7sBL\":[\"Italian\"],\"OSTD8d\":[\"Italy 🇮🇹\"],\"0BTIQi\":[\"Ivory Coast 🇨🇮\"],\"W6o2Pv\":[\"Jamaica 🇯🇲\"],\"kpk6mj\":[\"Japan 🇯🇵\"],\"dFtidv\":[\"Japanese\"],\"kX2mij\":[\"Join our ecosystem and help businesses take control of their customer data with\"],\"1qiriB\":[\"Join our growing partner ecosystem\"],\"APYcnh\":[\"Join our partner ecosystem and help businesses<0/>take control of their CRM.\"],\"5emzGz\":[\"Join the teams that chose to own their CRM.<0/>Start building with Twenty today.\"],\"QbxNys\":[\"Jordan 🇯🇴\"],\"pB76mP\":[\"Jul 2025\"],\"hvwlu3\":[\"Jun 2025\"],\"qrYDGE\":[\"Justin Beadle\"],\"vYXuJI\":[\"Justin built workflows for notifications across the team, alerting the right people in Teams when a prospect becomes a lead or when project milestones are reached. Forms in Twenty let the business development team log activity without leaving the tool. The impact is real for the organization. The tool has been adaptable from opportunity-level work at a client to executive-level decisions.\"],\"E6Oohx\":[\"Justin's broader mission at Elevate has been to move the company off static documents and onto tools with API access. By the end of 2025, that was in place: time billing, resource planning, Microsoft Teams, and project management were all accessible via API, with Twenty at the center holding client and opportunity data. Team members could use that information strategically instead of re-keying it.\"],\"r1cFAW\":[\"Kazakhstan 🇰🇿\"],\"kEahsE\":[\"Kenya 🇰🇪\"],\"IxBSi8\":[\"Kiribati 🇰🇮\"],\"h6S9Yz\":[\"Korean\"],\"PqhUrP\":[\"Kosovo 🇽🇰\"],\"3+TwF3\":[\"Kuwait 🇰🇼\"],\"e9zZkH\":[\"Kyrgyzstan 🇰🇬\"],\"GAmD3h\":[\"Languages\"],\"u6jooT\":[\"Languages spoken\"],\"YHacTY\":[\"Laos 🇱🇦\"],\"2lrGbG\":[\"LATAM\"],\"7OHfcc\":[\"Latvia 🇱🇻\"],\"rdU729\":[\"Layout\"],\"+Ss/og\":[\"Learn how to use Twenty\"],\"wB0DGn\":[\"Lebanon 🇱🇧\"],\"vifyyw\":[\"Legal\"],\"UqdHpG\":[\"Lesotho 🇱🇸\"],\"rJargy\":[\"Liberia 🇱🇷\"],\"Lzw0kM\":[\"Libya 🇱🇾\"],\"tHFTlp\":[\"Licensee:\"],\"K41WYc\":[\"Liechtenstein 🇱🇮\"],\"gggTBm\":[\"LinkedIn\"],\"Gg69LR\":[\"LinkedIn URL\"],\"2WIZYd\":[\"Lithuania 🇱🇹\"],\"AHVzME\":[\"Live data and AI built\"],\"GObQuL\":[\"Live updates\"],\"zmRZwk\":[\"Live updates are unavailable, which is almost more honest.\"],\"ObPscj\":[\"Loading activation…\"],\"7VBQ2j\":[\"Local, Production\"],\"JO8Bdx\":[\"Lock-in\"],\"sQia9P\":[\"Log in\"],\"KPLAuI\":[\"Lower CRM cost\"],\"J13skq\":[\"Luxembourg 🇱🇺\"],\"nRYQC8\":[\"Madagascar 🇲🇬\"],\"qHvKxh\":[\"Malawi 🇲🇼\"],\"tF97tn\":[\"Malay\"],\"DIOh5g\":[\"Malaysia 🇲🇾\"],\"62/ScF\":[\"Maldives 🇲🇻\"],\"wc5E/3\":[\"Mali 🇲🇱\"],\"04fjhR\":[\"Malta 🇲🇹\"],\"Si4WyF\":[\"Management Consulting\"],\"poX06f\":[\"Manual work at core\"],\"VJOKPB\":[\"Maps view\"],\"Zt5PUS\":[\"Marketplace\"],\"2jVbnO\":[\"Marshall Islands 🇲🇭\"],\"bJNKJ1\":[\"Master every corner of Twenty\"],\"HG/EUg\":[\"Mauritania 🇲🇷\"],\"YDiaY/\":[\"Mauritius 🇲🇺\"],\"Zw+Zv+\":[\"MCP server\"],\"zxcfgg\":[\"means control\"],\"bwCiCi\":[\"Meet the certified agencies and consultants implementing Twenty for teams worldwide.\"],\"ujYZ+f\":[\"Meet the teams who shaped Twenty into their own CRM with self-hosted deployments, AI-assisted workflows, and API-first product stacks.\"],\"CQ9M36\":[\"MENA\"],\"briyJf\":[\"Metrics you can actually trust.\"],\"YBLFQZ\":[\"Mexico 🇲🇽\"],\"KBirDR\":[\"Micronesia 🇫🇲\"],\"ZdvtU2\":[\"migration workflow\"],\"so04x6\":[\"Mike and Azmat from Nine Dots stepped in to fix that, not by changing how Homeseller works, but by building a system that finally fit around it.\"],\"izddzp\":[\"Mike Babiy\"],\"FFFENV\":[\"Minimum project budget\"],\"6m8rMT\":[\"Moldova 🇲🇩\"],\"qRRmSe\":[\"Monaco 🇲🇨\"],\"G+EV+A\":[\"Mongolia 🇲🇳\"],\"9VDoNp\":[\"Montenegro 🇲🇪\"],\"+8Nek/\":[\"Monthly\"],\"VqXuUv\":[\"More options available!\"],\"LAFO4Y\":[\"Morocco 🇲🇦\"],\"EwJDrS\":[\"Mozambique 🇲🇿\"],\"dlKkNL\":[\"Multi-file upload on records\"],\"QGWbbv\":[\"Myanmar 🇲🇲\"],\"6YtxFj\":[\"Name\"],\"yYmxee\":[\"Namibia 🇳🇦\"],\"zVOV14\":[\"Nauru 🇳🇷\"],\"LfNsfa\":[\"Need a quick change? Skip the engineering ticket. Customize your workspace in minutes.\"],\"4sbgPq\":[\"Need help with customization?\"],\"LNVNNE\":[\"Nepal 🇳🇵\"],\"g60EgR\":[\"Netherlands 🇳🇱\"],\"8Cp4Of\":[\"NetZero\"],\"J8ZssL\":[\"NetZero runs a modular Twenty setup across carbon credits, ag products, and industrial systems.\"],\"7HVBV+\":[\"NetZero uses Twenty as a modular CRM across product lines and countries, with a roadmap into AI-assisted workflows.\"],\"3PtYTO\":[\"NetZero works with the agro-industry, serving clients from multinationals to smallholder farmers. They sell carbon credits, agricultural products, and franchised industrial systems across three different product lines, multiple countries, and multiple company sizes. When Olivier Reinaud, co-founder of NetZero, started looking at CRMs in late 2024, he was not chasing the most feature-rich platform. He wanted the right foundation.\"],\"/DTtCF\":[\"New Zealand 🇳🇿\"],\"GY6uSc\":[\"Next →\"],\"KqojOL\":[\"Next steps\"],\"iBOZv7\":[\"Nicaragua 🇳🇮\"],\"61NU7V\":[\"Niger 🇳🇪\"],\"+2NLII\":[\"Nigeria 🇳🇬\"],\"qZ+egR\":[\"Nine Dots put Twenty at the center of Homeseller's stack with APIs, automation, and AI on top of WhatsApp-heavy operations.\"],\"sGuHDu\":[\"Nine Dots rebuilt Homeseller's operations on Twenty, with a custom data model shaped around their sales flow. Because Twenty is open and everything is accessible via API, they connected it to what the business actually needed: n8n for automated workflows (in-app workflows were not available at that time), Grafana for live dashboards fed from Twenty, and a custom AI layer to parse and extract structured insights from more than 2,000 WhatsApp messages a day.\"],\"1UzENP\":[\"No\"],\"6tRXQ4\":[\"No matching country.\"],\"o+/Ad5\":[\"No more renting someone else's\"],\"LmWdm6\":[\"No more renting someone else's structure\"],\"UxK4so\":[\"No partners match your filters\"],\"q9f4Tp\":[\"No-code\"],\"SiZ/7E\":[\"No. Build custom objects, fields, views, and no-code workflows straight from Settings. Unlimited, no extra charge.\"],\"096JXI\":[\"North Korea 🇰🇵\"],\"IwF7aJ\":[\"North Macedonia 🇲🇰\"],\"sZwk4U\":[\"Norway 🇳🇴\"],\"1IipHp\":[\"Norwegian\"],\"k3T2mM\":[\"Now a developer can describe what they want to Claude Code and have a working app in an afternoon. A custom object, a scoring workflow, a new view, an integration. The bottleneck isn't building anymore. It's whether your platform lets you.\"],\"CzeIij\":[\"Number of dashboards\"],\"0dVyEt\":[\"of a go-to-market stack\"],\"pkrZnO\":[\"Olivier recognizes that NetZero's current use of Twenty is still relatively simple: workflows and integrations are not yet as deep as he eventually wants, because he prioritized getting foundations right first.\"],\"l/1LQc\":[\"Olivier Reinaud\"],\"BdShAR\":[\"Oman 🇴🇲\"],\"D2b+1q\":[\"On a single CRM\"],\"XhXmzW\":[\"On this page\"],\"jxC7HY\":[\"Onboarding · Documentation · Change management · L1/L2 support · Managed services\"],\"pbmZ7R\":[\"Onboarding Packs\"],\"/DFChQ\":[\"One\"],\"Zt1UZb\":[\"One API to rule them all\"],\"pShqss\":[\"Only $5 for SSO. Practically a charity program.\"],\"3WErRa\":[\"open APIs\"],\"pkXQA+\":[\"Open your Twenty self-hosted instance Settings → Enterprise.\"],\"wtKPUT\":[\"open-source primitives.\"],\"5RkmVr\":[\"Open-source, AI-ready, and yours to shape.\"],\"ucgZ0o\":[\"Organization\"],\"dKGg8T\":[\"Out of stock\"],\"PASC/7\":[\"Outlived every redesign since 2004.\"],\"Bwsi7B\":[\"Own your CRM end to end\"],\"oDAEQq\":[\"Ownership\"],\"NmF/Vo\":[\"Owning your stack remains mysteriously out of stock.\"],\"h/oMMb\":[\"Packaged CRMs make every company look the same. Twenty is the open source CRM teams shape around their workflow, with a modern UI and a developer-first platform.\"],\"+AiiMt\":[\"Pagination builds character.\"],\"sW3DaS\":[\"Pakistan 🇵🇰\"],\"cvRU36\":[\"Palau 🇵🇼\"],\"u2htNd\":[\"Palestine 🇵🇸\"],\"pWLp16\":[\"Panama 🇵🇦\"],\"xOR4tu\":[\"Papua New Guinea 🇵🇬\"],\"kb3PhK\":[\"Paraguay 🇵🇾\"],\"mPkInZ\":[\"Partners\"],\"9yo8NN\":[\"Paste the key and click Activate.\"],\"nxV7o2\":[\"paying off\"],\"OzAIDr\":[\"Peru 🇵🇪\"],\"LqRs8D\":[\"Philippines 🇵🇭\"],\"we6gj5\":[\"Pick every category that applies.\"],\"FFkjaT\":[\"Pipeline Management\"],\"gzkkC3\":[\"Pipelines, custom objects, AI assistants, and a native API on top of Postgres. Twenty is the open source CRM with the modern UX teams actually want to use.\"],\"z7gnI9\":[\"Please complete all required fields before continuing.\"],\"iCh6/3\":[\"plumbing\"],\"AFr2a5\":[\"Poland 🇵🇱\"],\"trnWaw\":[\"Polish\"],\"8BrmUs\":[\"Portugal 🇵🇹\"],\"MOERNx\":[\"Portuguese\"],\"z87IFG\":[\"Press Enter or comma to add a skill.\"],\"a7u1N9\":[\"Price\"],\"aHCEmh\":[\"Pricing\"],\"J2IAmT\":[\"Principal and Founder\"],\"kXBQYM\":[\"Principal and Founder, Alternative Partners\"],\"k62X/2\":[\"Priority support\"],\"LcET2C\":[\"Privacy Policy\"],\"DJ3uVe\":[\"Privacy Policy | Twenty\"],\"3fPjUY\":[\"Pro\"],\"kIGKva\":[\"Production grade quality\"],\"vERlcd\":[\"Profile\"],\"CcK9cq\":[\"Programs that previously needed heavy manual coordination now run end-to-end with automation. Institutions get a scalable, intelligent system; students get faster preparation for interviews that matter; W3villa shipped a product institutions can build revenue around.\"],\"PaHxQd\":[\"Project minimum\"],\"9NAqO4\":[\"Proposal automation\"],\"a24q7E\":[\"Proprietary languages, slow deployment cycles, and \\\"black box\\\" logic.\"],\"kS6G/9\":[\"pulled the plug\"],\"u9RZ7+\":[\"Punjabi\"],\"frfCYp\":[\"Q1 2026\"],\"tFx+ES\":[\"Qatar 🇶🇦\"],\"3XOwjg\":[\"Rates\"],\"DnWJal\":[\"Reach out\"],\"gSQVmr\":[\"Read the case\"],\"EqCbT9\":[\"Read/Edit/Delete permissions\"],\"Gr9RIC\":[\"Ready to grow<0/>with Twenty?\"],\"zTY2by\":[\"Real customer stories from teams running their business on Twenty: how they migrated, what they customised, and what changed once their CRM finally fit.\"],\"NIwjHh\":[\"Real Estate\"],\"CH+Ona\":[\"Real stories from real teams about how they shaped Twenty to fit their workflow and accelerated their growth.\"],\"5O1eTm\":[\"Real-time changes? That will be a premium surprise.\"],\"4hc7hc\":[\"Real-time data\"],\"dKQCrj\":[\"Real-time is a state of mind, not a feature.\"],\"Zhiuz9\":[\"Record quarter\"],\"PWlTvh\":[\"Records\"],\"q45OlW\":[\"Regions\"],\"rwWjWg\":[\"Release Notes\"],\"5icoS1\":[\"Releases\"],\"BkBq/5\":[\"Remove \",[\"0\"],\" filter\"],\"a/aGHe\":[\"Rename, download, and delete attachments\"],\"t9yxlZ\":[\"Reports\"],\"SY/an2\":[\"Reports & Dashboards\"],\"s+MGs7\":[\"Resources\"],\"oC2l7f\":[\"REST & GraphQL API\"],\"kx0s+n\":[\"Results\"],\"2itg0p\":[\"Retro 2015\"],\"frqduN\":[\"Rich notes attached to records\"],\"/gaSVU\":[\"Roadmap\"],\"mLp5AP\":[\"Romania 🇷🇴\"],\"uJc01W\":[\"Romanian\"],\"Wdh41P\":[\"Row-level permissions\"],\"mRpuWW\":[\"Running mock interview programs for hundreds of students sounds straightforward. In practice, universities and training institutes hit the same wall: registrations entered by hand, interview links sent one by one, faculty reviewing every session without scoring or classification. At real scale, it breaks.\"],\"T1ut28\":[\"Russia 🇷🇺\"],\"nji0/X\":[\"Russian\"],\"dw8D3T\":[\"Rwanda 🇷🇼\"],\"niLOap\":[\"Saint Kitts & Nevis 🇰🇳\"],\"zCHzF/\":[\"Saint Lucia 🇱🇨\"],\"Md/8iQ\":[\"Saint Vincent 🇻🇨\"],\"Burn4/\":[\"Salesfarce Add-on Center\"],\"xTfEgV\":[\"Salesfarce Pro\"],\"/UolBB\":[\"Salesforce Classic\"],\"l69E+u\":[\"Salesforce migration\"],\"CADlRK\":[\"Same CRM\"],\"60i6S+\":[\"Same output\"],\"xl2tJ9\":[\"Same results\"],\"w9QWxz\":[\"SAML/OIDC SSO\"],\"R38ZPo\":[\"Samoa 🇼🇸\"],\"fK288K\":[\"San Marino 🇸🇲\"],\"KDcBQd\":[\"São Tomé & Príncipe 🇸🇹\"],\"/BK0Nl\":[\"Saudi Arabia 🇸🇦\"],\"elz5ka\":[\"Saved / month\"],\"tigXYO\":[\"saved every month\"],\"bifv6N\":[\"Scale\"],\"rbgetd\":[\"Scale without\"],\"842ybw\":[\"Scale without breaking operations\"],\"vk6sVR\":[\"Search a country…\"],\"HVOGoW\":[\"Seats limit\"],\"a3LDKx\":[\"Security\"],\"aB+XpI\":[\"See more features\"],\"FY4ykg\":[\"See the latest release\"],\"JDp1bg\":[\"See updates as they happen. Work with your team and agents seamlessly.\"],\"0kgOPB\":[\"See what shipped in \",[\"0\"]],\"wgNoIs\":[\"Select all\"],\"6p/m5q\":[\"Select your country\"],\"6JhL+3\":[\"Self-hosted\"],\"QFK/45\":[\"Self-hosted (Docker/K8s) · Cloud architecture · Scaling · Security · Monitoring\"],\"5CWy3T\":[\"Self-hosted means AC&T carries no vendor risk: no pricing model that can change, no platform that can disappear, no forced migration. The system is theirs.\"],\"5WmQ5O\":[\"Self-hosted means control\"],\"6QPYP7\":[\"self-hosted Twenty\"],\"GrBvv/\":[\"Self-hosting\"],\"YdhUoe\":[\"Self-hosting, now for rent!\"],\"NaHz2o\":[\"Selfhosting\"],\"D50Vyu\":[\"Senegal 🇸🇳\"],\"eEJlq0\":[\"Serbia 🇷🇸\"],\"62gxWx\":[\"Seychelles 🇸🇨\"],\"3VFzsh\":[\"Ship a product on Twenty\"],\"6lGV3K\":[\"Show less\"],\"RhU4bB\":[\"Showing \",[\"visibleCount\"],\" of \",[\"totalCount\"],\" partners\"],\"I89wN/\":[\"Showing all \",[\"totalCount\"],\" partners\"],\"yhyNch\":[\"Sierra Leone 🇸🇱\"],\"mA6cL1\":[\"Sign up for Cloud in under a minute and start your 30-day trial. For larger rollouts, our 4-hour Onboarding Packs or certified partners get you live in 1–2 weeks.\"],\"0eG5g+\":[\"Singapore 🇸🇬\"],\"V9dFwD\":[\"Sitemap\"],\"t6ComU\":[\"Skip the clunky UX that always comes with custom.\"],\"U7keXg\":[\"Slovakia 🇸🇰\"],\"o1VTTF\":[\"Slovenia 🇸🇮\"],\"bUmSwL\":[\"Smart patterns, shortcuts, and layouts make everyday tasks faster and easier to execute.\"],\"6sKjjx\":[\"Solo\"],\"FX2oa1\":[\"Solo or agency?\"],\"TcZtfs\":[\"Solomon Islands 🇸🇧\"],\"TvdMI3\":[\"Solutioning\"],\"t1E06j\":[\"Somalia 🇸🇴\"],\"AVfp38\":[\"Some call this enterprise pricing. We prefer a CRM where API access, webhooks, and workflows don't show up as surprise add-ons.\"],\"B/mYo/\":[\"Source code access\"],\"zHJB/O\":[\"South Africa 🇿🇦\"],\"7MdTKh\":[\"South Korea 🇰🇷\"],\"a4jo+V\":[\"South Sudan 🇸🇸\"],\"Kv3C8d\":[\"Spain 🇪🇸\"],\"65A04M\":[\"Spanish\"],\"00jcbn\":[\"Sri Lanka 🇱🇰\"],\"vnS6Rf\":[\"SSO\"],\"uQl22y\":[\"Standard support\"],\"wxW2Sv\":[\"Start automating at huge scale!\"],\"XO628f\":[\"Start for free\"],\"+6VDIA\":[\"Start your free trial today<0/>without credit card.\"],\"j9c8rb\":[\"Stay in Flow\"],\"GdGiNi\":[\"Step \",[\"current\"],\" of \",[\"total\"]],\"bxgoJR\":[\"Step-by-step guides and playbooks to help your team get the most out of their workspace.\"],\"UCLArd\":[\"Stop settling for trade-offs.\"],\"lm4alq\":[\"structure\"],\"Sv4BSp\":[\"Subdomain (yourco.twenty.com)\"],\"H5/rZQ\":[\"Submit application\"],\"MDqQmP\":[\"Submitting…\"],\"8Z1557\":[\"Sudan 🇸🇩\"],\"XYLcNv\":[\"Support\"],\"Aq66kg\":[\"Suriname 🇸🇷\"],\"Yz+oFV\":[\"Swahili\"],\"b2//Ip\":[\"Sweden 🇸🇪\"],\"UaISq3\":[\"Swedish\"],\"IImT5c\":[\"Switzerland 🇨🇭\"],\"sjuSub\":[\"Syria 🇸🇾\"],\"3w+Aox\":[\"Table, Kanban, Calendar\"],\"ISVD3+\":[\"Tagalog\"],\"9M02G5\":[\"Tailor record pages, menus, and views\"],\"boABlR\":[\"Taiwan 🇹🇼\"],\"XJspRJ\":[\"Tajikistan 🇹🇯\"],\"JAKtcG\":[\"Talk to us\"],\"fb427h\":[\"Tamil\"],\"ri1l89\":[\"Tanzania 🇹🇿\"],\"GWMpL3\":[\"Tasks & Activities\"],\"Ye3KKA\":[\"Team up with a Twenty expert\"],\"vsdUaL\":[\"Technical notes\"],\"y+bLyB\":[\"Technical skills\"],\"1ZwmkP\":[\"template\"],\"mvP/25\":[\"Terms and Conditions\"],\"BEX1RA\":[\"Terms of Service | Twenty\"],\"iqG74V\":[\"Terms of Service for Twenty.com PBC, including use of Twenty.com, sub-domains, and related services.\"],\"SUr44j\":[\"Thai\"],\"6t7gpr\":[\"Thailand 🇹🇭\"],\"pYwj0k\":[\"Thanks,\"],\"FjkPYg\":[\"That opened the door to something more powerful. Justin built a custom front end that pulls live data from those systems into a single view, tailored to each role. When a proposal is won, what used to require four separate people manually setting up instances across four different tools now happens in a single click, drawing on data collected in Twenty across the full opportunity lifecycle. It is another shift toward higher-value work for clients.\"],\"8S4psU\":[\"That works until you need to understand the business underneath. Which deals are stuck? Where are leads coming from? What is the close rate? With spreadsheets and a legacy custom CRM that could not keep up, those questions were nearly impossible to answer.\"],\"zXlFuT\":[\"The #1 Open Source CRM for modern teams. Modular, scalable, and built to fit your business.\"],\"G2IgPj\":[\"The bet is\"],\"NT2bSJ\":[\"The bet is paying off\"],\"Xmr/wH\":[\"the business\"],\"Wie492\":[\"The business development team finally had the CRM they had been asking for. Adoption came naturally: their data was already there when they logged in.\"],\"2kHqXc\":[\"The CEO had resisted bringing in a CRM for years. The business development team had no experience using one, and the licensing costs of well-known CRMs like Salesforce or HubSpot were hard to justify without any guarantee of adoption: CRMs are only as good as the maintenance of the data inside them.\"],\"5DpEh7\":[\"The CRM as a\"],\"2sfVd8\":[\"The CRM as a control hub\"],\"XlFsoH\":[\"The early bet on the architecture is holding, and upcoming AI features are expected to make it even more relevant.\"],\"kCUcnD\":[\"The flexibility is just amazing. Literally, there's nothing you cannot do. You can create objects, access everything through the API, pull notes and send them to the portal. Try doing that in HubSpot. No way. It's the true ability to build exactly what's actually needed.\"],\"MaHqAc\":[\"The flexibility is really what made the difference. Our needs evolve very fast. I discover a new need and in two clicks I can address it. That is a real advantage when you are moving quickly.\"],\"Q5iZ9Q\":[\"The flexibility to wire this together, without outside help and without fighting the platform, is what made it possible for a single person to stand up and maintain a connected stack across an entire consultancy.\"],\"l0eUFC\":[\"The full rollout landed in July 2025. Since then, Nine Dots built a Smart Assistant on top of the system, nudging agents with tasks, reminders, and on-demand market analysis. Some agents never open Twenty directly, yet they are powered by it, outperforming peers on manual processes alone. By Q1 2026, Homeseller had recorded its best sales quarter ever.\"],\"SiW1pC\":[\"the future of CRM\"],\"sm10Rg\":[\"The Giant Monolith\"],\"nFB8I1\":[\"The In-house Burden\"],\"ZNzKXV\":[\"The key decision was not to build everything from scratch. Twenty covers the data model, permissions, authentication, and workflow engine, the parts that would have taken months to rebuild, so the team could focus on product-specific logic.\"],\"q1kKLq\":[\"The opportunity\"],\"ZgWQl4\":[\"the overhead\"],\"2NJdyz\":[\"The Problem.\"],\"Q8D9Lf\":[\"the product\"],\"3/wAFg\":[\"The result\"],\"nAWeyi\":[\"The result is a system that fits how AC&T already worked, instead of the other way around.\"],\"tfG/xw\":[\"The right\"],\"nbHA9N\":[\"The right foundation\"],\"omVXTg\":[\"The self-hosted setup means Alternative Partners owns the full stack: no vendor access to their data, no dependency on a SaaS pricing model, full control over how the system evolves. The migration was fast because of AI; the result is durable because the stack is open source.\"],\"1tN3qf\":[\"The shift\"],\"AnGOwN\":[\"The situation\"],\"u0uFxg\":[\"They are the real sales\"],\"53RXLB\":[\"They call it customer loyalty. We call it a very affectionate cage.\"],\"RhmZMe\":[\"They did not just replace a tool. They took back ownership of how their business runs.\"],\"5YzqyT\":[\"They evaluated Salesforce, Zoho, Pipedrive, and SuiteCRM. Each came with the same tradeoffs: too expensive, too rigid, or too generic, and none fixed the underlying problem. They were still renting a structure they did not control.\"],\"6f8QUY\":[\"Timor-Leste 🇹🇱\"],\"2y6W+f\":[\"to rule them all\"],\"DeTupk\":[\"Togo 🇹🇬\"],\"CocxTO\":[\"Tonga 🇹🇴\"],\"5eFktS\":[\"Tool integration\"],\"xv7HSr\":[\"total per month with fixed cost\"],\"hmu++i\":[\"Track amount and close date\"],\"POzmFl\":[\"Track every release with changelogs, highlights and demos of the newest features.\"],\"6vHPh9\":[\"Track relationships, manage pipelines, and take action quickly with an intuitive CRM that helps your team move faster from day one with confidence.\"],\"xwWQ9Q\":[\"Training & Adoption\"],\"MtCqjl\":[\"Training, Adoption & Support\"],\"/ga9kq\":[\"Trinidad & Tobago 🇹🇹\"],\"tdZpCd\":[\"Trust Center\"],\"KtyN0b\":[\"trusted by\"],\"eslLQF\":[\"Try it live\"],\"qhmtws\":[\"Try removing some filters or browse all partners.\"],\"E/hGy3\":[\"Try Twenty Cloud\"],\"D5Kf4t\":[\"Tuesday your team learns that deals with a technical champion close 3x faster. Wednesday you add the field, wire up the scoring, adjust the workflow. By Thursday your agents are acting on it. That feedback loop is the edge. And it only works if the CRM is yours.\"],\"y4UxlS\":[\"Tunisia 🇹🇳\"],\"UIDKnJ\":[\"Turkey 🇹🇷\"],\"Kz91g/\":[\"Turkish\"],\"kdJl4v\":[\"Turkmenistan 🇹🇲\"],\"tSc/a3\":[\"Tuvalu 🇹🇻\"],\"O5dAmW\":[\"Twenty | #1 Open Source CRM\"],\"NalB1c\":[\"Twenty Apps opens the door to building products, not just implementations. For example, we're developing a WhatsApp Business integration that any Twenty's client could get. That's a recurring revenue stream we wouldn't have if we were just configuring someone else's platform.\"],\"q9UWVC\":[\"Twenty Articles — Open Source CRM Insights\"],\"mkTfZ1\":[\"Twenty as the\"],\"+w9xZW\":[\"Twenty as the API backbone of a go-to-market stack\"],\"zj0CA+\":[\"Twenty as the API backbone of a go-to-market stack | Elevate Consulting\"],\"neM1Ol\":[\"Twenty CRM Features — Modern Open Source CRM Platform\"],\"8zCqPL\":[\"Twenty CRM Pricing — Plans from $9 per User per Month\"],\"D05UQH\":[\"Twenty Customers — How Modern Teams Run Their CRM\"],\"0qyMhk\":[\"Twenty gives technical teams the building blocks for a custom CRM that meets complex business needs and quickly adapts as the business evolves.\"],\"jVhq41\":[\"Twenty gives you the kind of flexibility that actually changes what you can offer your clients. The dev experience is clean, the APIs are open, and when something needs to be customized, you can just do it. There's no fighting the platform.\"],\"x/I85y\":[\"Twenty is not only where CRM data lives. It is the API backbone that makes the rest of the stack possible.\"],\"K+zzSQ\":[\"Twenty lets us build a CRM around the business and not the business around the CRM.\"],\"AxT+g4\":[\"Twenty makes it simple. It's clean, intuitive, and built to feel like Notion.\"],\"4SJucz\":[\"Twenty Partners — Certified Open Source CRM Implementers\"],\"X1GHuJ\":[\"Twenty Releases — What's New in the Open Source CRM\"],\"V1lV7B\":[\"Twenty team support\"],\"KsFvUt\":[\"Twenty's certified partners help teams migrate, customise, and operate the open source CRM across regions, languages, and deployment models. Browse profiles and book a call.\"],\"EIU345\":[\"Two-factor authentication\"],\"O+vc/1\":[\"Type of team *\"],\"P+R1Lc\":[\"Typical project\"],\"HqFilh\":[\"UAE 🇦🇪\"],\"+WNTxL\":[\"Uganda 🇺🇬\"],\"uxuy4l\":[\"UI theme\"],\"tNfmmF\":[\"UK 🇬🇧\"],\"z7UkhA\":[\"Ukraine 🇺🇦\"],\"V9+2pH\":[\"Ukrainian\"],\"jqzUyM\":[\"Unavailable\"],\"Hix/m6\":[\"Unified timeline (emails, events, tasks, notes, files)\"],\"NIuIk1\":[\"Unlimited\"],\"aGpTSC\":[\"Up to 5 workspaces\"],\"SPdRRU\":[\"Upfront consulting, scoping, strategy.\"],\"2vanwz\":[\"Upload, rename, preview, and manage files directly on records. Everything stays where it belongs.\"],\"tmwuH9\":[\"Urdu\"],\"huOaG8\":[\"Uruguay 🇺🇾\"],\"RCOibx\":[\"US\"],\"LXHEIS\":[\"USA 🇺🇸\"],\"Roaswv\":[\"User Guide\"],\"3XIgKU\":[\"User roles\"],\"UCUX2+\":[\"User-side rollout & ongoing support.\"],\"FOOEtP\":[\"Uzbekistan 🇺🇿\"],\"CRXL2j\":[\"Vanuatu 🇻🇺\"],\"NNeEYO\":[\"Vatican 🇻🇦\"],\"BWzac4\":[\"Venezuela 🇻🇪\"],\"FlQ1vR\":[\"Vietnam 🇻🇳\"],\"fROFIL\":[\"Vietnamese\"],\"BRBSny\":[\"View \",[\"0\"],\" on LinkedIn\"],\"ITdNGt\":[\"View on LinkedIn\"],\"73lp8c\":[\"View profile\"],\"BAzC1v\":[\"View types\"],\"mHtVst\":[\"Visualize your customers on a map!\"],\"CsHuOr\":[\"VP of Engineering\"],\"uRh799\":[\"VP of Engineering at W3villa Technologies\"],\"w2INie\":[\"VP of Engineering, W3villa Technologies\"],\"s0tU5h\":[\"W3Grads\"],\"R8BueT\":[\"W3villa built W3Grads (w3grads.com), an AI-powered mock interview platform for universities and training institutes, using Twenty as its operational backbone.\"],\"7hHsoV\":[\"W3villa built W3Grads for AI mock interviews at scale, with Twenty as the operational backbone.\"],\"QBOUnd\":[\"W3villa shipped W3Grads on Twenty for AI interviews, scoring, and institution-scale workflows without rebuilding CRM plumbing.\"],\"7q5Vjn\":[\"W3villa Technologies\"],\"ZabLEt\":[\"W3villa Technologies set out to solve it properly, not with a workaround, but with a product.\"],\"3v2ipf\":[\"W3villa used Twenty as a production-grade framework for the data model, permissions, authentication, and workflow engine they would otherwise have rebuilt themselves.\"],\"8CHatv\":[\"We could not submit your application. Please try again in a moment.\"],\"MjWeUE\":[\"We didn't want to patch over the problem. We wanted to build something institutions could rely on at scale, and that meant starting from a foundation solid enough to support the full complexity of what we had in mind.\"],\"u7hKUm\":[\"we'll be in touch!\"],\"d5CWI6\":[\"We're building the #1 Open Source CRM, but we can't do it alone. Join our partner ecosystem and grow with us.\"],\"v1kQyJ\":[\"Webhooks\"],\"ZhnM/K\":[\"Webhooks (Change Data Capture)\"],\"hgDePr\":[\"Website or GitHub\"],\"Lx0cVD\":[\"What an admin can do without writing code.\"],\"Z34FQq\":[\"What convinced Olivier was the flexibility of the platform and where it was headed. Even when initial needs were basic record-keeping, he still needed a custom data model with granular permissions to manage the wide range of NetZero activities. He also needed a system that could adapt quickly to a fast-iteration company.\"],\"phiBjc\":[\"What does Twenty cost?\"],\"WVQaGB\":[\"What is coming in April 2026 is what he has been waiting for: AI-assisted workflow creation, describing what he needs and iterating from there instead of building complex logic from scratch. For a founder who runs the CRM himself, that changes what is realistically possible.\"],\"iOAq7n\":[\"What is next\"],\"tWd6MT\":[\"What is planned is significant. NetZero has a data lake, online forms, and multiple internal systems that he wants to connect to Twenty. The pipes are there; the next step is automations that tie them together.\"],\"aYRqmz\":[\"What this means\"],\"QCHIzm\":[\"What you cover *\"],\"1kfjxX\":[\"Whatever came next had to be something they could own.\"],\"cs6VpJ\":[\"When a student registers via QR at a campus event, the system assigns a plan, generates an interview session, and sends a link. The AI conducts the interview, scores the candidate, and classifies the result. Faculty see where each student stands without manually reviewing every session. Building and iterating on these workflows was faster with AI in the loop.\"],\"I/oPrY\":[\"When the channel is\"],\"JglRo/\":[\"When the channel is the business\"],\"ee4xKk\":[\"When the vendor\"],\"DajeYD\":[\"When the vendor pulled the plug\"],\"X1gdzB\":[\"When your CRM is\"],\"OQ41z8\":[\"When your CRM is the product\"],\"Svuneu\":[\"When your CRM is the product: W3Grads on Twenty | W3villa Technologies\"],\"bGN8u+\":[\"While NetZero still runs a second CRM in parallel for WhatsApp-heavy operations with farmers in Brazil, they expect to migrate all of it to Twenty as features and the ecosystem grow. Already, their structured, multinational pipeline is powered by Twenty.\"],\"DJlSwA\":[\"Why\"],\"4sOVu+\":[\"Why Twenty\"],\"DH7vVZ\":[\"Why Twenty — The Open Source CRM Built to Be Customised\"],\"OKVlnc\":[\"With Twenty, when a new need appears, he can address it himself: no developer required, no support ticket.\"],\"KAB1uP\":[\"with you\"],\"OX5bbs\":[\"Work email *\"],\"woYYQq\":[\"Workflows\"],\"1ie9Dm\":[\"Workflows that\"],\"AzqmMJ\":[\"Workflows that actually get used\"],\"pmUArF\":[\"Workspace\"],\"bwECg/\":[\"Workspace URL, customer references, relevant links…\"],\"zkWmBh\":[\"Yearly\"],\"S6izIJ\":[\"Yemen 🇾🇪\"],\"l75CjT\":[\"Yes\"],\"bo6pUs\":[\"Yes, with our Apps framework. Scaffold an extension with `npx create-twenty-app` and ship custom objects, server-side logic functions, React components that render inside Twenty’s UI, AI skills and agents, views, and navigation, all in TypeScript, deployable to any workspace.\"],\"yIcBW6\":[\"Yes. Every Cloud workspace ships with a native MCP server. Connect your AI assistant via OAuth and it can read and write your CRM data in natural language.\"],\"8xYMYQ\":[\"Yes. Import your data via CSV, or use our API for 50,000+ records. Our partners can handle the full migration for you.\"],\"8m0eN9\":[\"Yes. Twenty is the #1 Open Source CRM on GitHub. You can self-host to fully own your infrastructure, or run it on our managed cloud for a zero-ops setup.\"],\"LJ3sTb\":[\"You don't buy your deployment pipeline off the shelf. You don't rent your data warehouse from a vendor who decides the schema. You build it, you own it, you iterate on it every week. CRM is going the same way. The teams that treat it as infrastructure they own will compound an advantage every quarter.\"],\"SfJVcK\":[\"Your checkout is complete. Follow the steps below to copy your license key into your Twenty instance.\"],\"krHgj1\":[\"Your enterprise key\"],\"+dxjCu\":[\"Your enterprise license has been activated successfully.\"],\"pEQiCY\":[\"Your name *\"],\"fQATWn\":[\"Your network, fully mapped.\"],\"CgGN5T\":[\"Zambia 🇿🇲\"],\"wHjFOw\":[\"Zero\"],\"xlFvlS\":[\"Zero manual work\"],\"ZvEoMq\":[\"Zero manual work at the core. Full automation. Built on Twenty.\"],\"TT3YXb\":[\"Zimbabwe 🇿🇼\"]}")as Messages;
\ No newline at end of file
+/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"BUIzFF\":[\"-33% off\"],\"q0ur5+\":[[\"0\"],\" | Twenty Customer Story\"],\"NSO/FI\":[[\"hourly\"],\"/hr\"],\"2Ha6K9\":[[\"labelText\"],\" filter, \",[\"0\"],\" selected, click to open\"],\"0Xh9/0\":[[\"labelText\"],\" filter, click to open\"],\"icND7o\":[\"/ seat / month - billed yearly\"],\"XUqxHW\":[\"/user/month\"],\"ojimXJ\":[\"© 2026 – Twenty\"],\"2ygf/L\":[\"← Back\"],\"9j/bUt\":[\"← Twenty partners\"],\"foGG8A\":[\"+$105/user per month\"],\"Bsq9GJ\":[\"+$35/user per month\"],\"mWSpW5\":[\"+$5/user per month\"],\"JIwDAd\":[\"+$7000/org per month\"],\"yVr18d\":[\"+$75/user per month\\nSwitch to enterprise!\"],\"iK+ikF\":[\"+10k others\"],\"nRtVCK\":[\"+20% of net spend\\n+$75/user per month\\nSwitch to enterprise!\"],\"Uqm/0u\":[\"<0>...with AI that actually0><1/><2>helps you2><3>work faster3>\"],\"ZKcQvG\":[\"<0>A CRM for teams0><1/><2>that2><3>move fast3>\"],\"2Avwos\":[\"<0>A custom CRM gives your org an edge,0><1>but building one1><2>comes with2><3>tradeoffs3>\"],\"GIqRh7\":[\"<0>A demo worth a0><1/><2>thousand words2>\"],\"h5K9X+\":[\"<0>A modern CRM with0><1>an intuitive interface1>\"],\"YXQqRD\":[\"<0>Assemble, iterate and adapt a robust CRM,0><1>that's quick to flex1>\"],\"XnXDNI\":[\"<0>Become0><1/><2>our partner2>\"],\"Tp01iS\":[\"<0>Begin with production-grade0><1>building blocks1>\"],\"LCx6+8\":[\"<0>Build a CRM your competitors0><1>can't buy.1>\"],\"lt0XAM\":[\"<0>Build it in an afternoon.0><1>AI made the gap that small.1>\"],\"y8AZXw\":[\"<0>Build your Enterprise CRM0><1>at AI Speed1>\"],\"OGcRSu\":[\"<0>Continue iteration0><1>without friction1>\"],\"2fzdgb\":[\"<0>CRM was a ledger.0><1>AI turned it into an operating system.1>\"],\"gx6Utt\":[\"<0>Dev teams power<1/>company-wide0><2/><3>change with Twenty3>\"],\"FyjPh/\":[\"<0>Differentiation now0><1>lives in the code you own.1>\"],\"FymD+X\":[\"<0>Enterprise0><1>activation1>\"],\"V7uulz\":[\"<0>Everything you need,0><1>out of the box1>\"],\"IvtaRX\":[\"<0>Find your0><1>Twenty partner1>\"],\"f36X9W\":[\"<0>Go the extra mile0><1>with no-code1>\"],\"NUko9S\":[\"<0>How teams0><1/><2>built with Twenty2>\"],\"WCsM/Q\":[\"<0>Latest0><1/><2>Releases2>\"],\"1LHR8V\":[\"<0>Make your GTM team happy0><1/><2>with2><3>a CRM they'll love3>\"],\"K6xBTA\":[\"<0>Ready to build0><1/><2>your own story?2>\"],\"pddHmc\":[\"<0>Ready to grow0><1/><2>with Twenty?2>\"],\"mzlPTg\":[\"<0>See how teams0><1/><2>build2><3>on Twenty3>\"],\"7D+4tN\":[\"<0>Simple0><1/><2>Pricing2>\"],\"pj2iec\":[\"<0>Stay in control with our0><1>open-source software1>\"],\"Oc/cFZ\":[\"<0>Stop fighting custom.0><1/><2>Start building, with Twenty2>\"],\"zykz1r\":[\"<0>The future of CRM is built,0><1>not bought.1>\"],\"6LusuM\":[\"<0>Trust the n°1 CRM,0><1>or not!1>\"],\"be30i9\":[\"$0\"],\"6inRXo\":[\"$1/orchestration run/org\\n+$75/user per month\\nSwitch to enterprise!\"],\"EkIZkY\":[\"$19\"],\"8r6DgO\":[\"$9\"],\"EHNAf2\":[\"1 click\"],\"qvNspm\":[\"1‑800‑YES‑SOFTWARE\"],\"6WQdu8\":[\"100 per minute\"],\"uuKUqZ\":[\"11 permissions\\ngroups\"],\"2szX5S\":[\"150\"],\"SaSafJ\":[\"150 hours\"],\"9ntyY8\":[\"150 hrs\"],\"2z1Znr\":[\"2 years contract\"],\"l6Vx4q\":[\"2,000+\"],\"FKcV/y\":[\"2025\"],\"PJgfBS\":[\"3\"],\"BL47wE\":[\"3 2 years contract\\n-33% off\"],\"/jgC+9\":[\"3 product lines\"],\"7SJhyh\":[\"30+\"],\"Pdl2UE\":[\"4 tools\"],\"2ScEtE\":[\"5 workflow credits/month included\"],\"hIKxCy\":[\"5,000\"],\"Z2TH0F\":[\"50 per minute\"],\"CiRGZ8\":[\"50 workflow credits/year included\"],\"tZvajW\":[\"6 workflows\"],\"AQPMc4\":[\"90%\"],\"fHxYPM\":[\"90%+\"],\"1GAcp6\":[\"A business that does not fit a\"],\"NLSM5L\":[\"A business that does not fit a template\"],\"GSM5RA\":[\"A CRM that\"],\"diWAWP\":[\"A CRM that grows with you\"],\"och6cp\":[\"A CRM that grows with you | NetZero & Twenty\"],\"EewhZt\":[\"A CRM they\"],\"muZzEA\":[\"A CRM they actually own\"],\"GoyOzl\":[\"A platform ready to\"],\"rxMguZ\":[\"A platform ready to grow\"],\"R5hTKX\":[\"A real estate agency on WhatsApp\"],\"hwoGni\":[\"A real estate agency on WhatsApp built a CRM around it\"],\"WjUlJr\":[\"A retro theme as a paid add-on is somehow the most believable part.\"],\"r9Msiv\":[\"A year ago, customizing your CRM meant hiring a Salesforce consultant, learning Apex, waiting months. The gap between \\\"I want this\\\" and \\\"it's live\\\" was measured in quarters and invoices. So people settled. They bent their process to fit the tool and called it adoption.\"],\"c0RR2h\":[\"About 150 hours per month saved in manual operations. Real-time metrics for the business owner. Growth readiness without adding operational headcount. A team that can answer questions that used to take days to piece together.\"],\"41o3VS\":[\"AC&T and Flycoder moved from a dead vendor export to self-hosted Twenty, with over 90% lower CRM cost and full control.\"],\"TuJiQF\":[\"AC&T Education Migration\"],\"yHUdh6\":[\"AC&T Education Migration (actimmi.com) is an education agency in Australia. They help international students with applications to education providers and visas. They had been on a previous CRM until the vendor shut the system down, leaving nothing but a CSV export.\"],\"MPzy5R\":[\"AC&T moved to a self-hosted Twenty instance with no vendor risk, no forced migration, and CRM costs reduced by more than 90%.\"],\"J+A83M\":[\"AC&T replaced a shuttered vendor CRM with self-hosted Twenty and cut CRM costs by more than 90%.\"],\"muhZ+X\":[\"Activating your enterprise license…\"],\"Yyn/dP\":[\"Active filters\"],\"TDMykO\":[\"actually get used\"],\"+/fX0G\":[\"actually own\"],\"woOp+c\":[\"Add objects and fields\"],\"Y2K3rp\":[\"Add-ons\"],\"Op7nVF\":[\"Adoption\"],\"TeMRC2\":[\"advanced\"],\"2050Pj\":[\"Advisory & Discovery\"],\"QjSFuI\":[\"Afghanistan 🇦🇫\"],\"StqEz0\":[\"Africa\"],\"NmHsVh\":[\"Agency\"],\"vZKKhf\":[\"Aggregate, bar, line, and pie widgets\"],\"rp2omj\":[\"Agribusiness\"],\"jiGK6+\":[\"AI (Einstein)\"],\"aUn7Ps\":[\"AI & Automations\"],\"HbXHSp\":[\"AI agents\"],\"WGXwzu\":[\"AI agents are starting to draft outreach, score leads, research accounts, write follow-ups, update deal stages. Every one of these actions reads from and writes to the CRM. The scoreboard became the playbook. The database became the brain.\"],\"Rsxdfy\":[\"AI Agents with custom skills\"],\"TfV/y9\":[\"AI chat, settings, and records in a side panels for fast, single-screen access.\"],\"R+bwFB\":[\"AI for rapid iterations\"],\"+pgY/C\":[\"AI in the\"],\"A6v5aI\":[\"AI in the migration workflow\"],\"t97j+F\":[\"AI-assisted\"],\"7xlBwk\":[\"Albania 🇦🇱\"],\"EszGq4\":[\"Algeria 🇩🇿\"],\"LIGwFL\":[\"Alternative Partners\"],\"GDVvyT\":[\"Alternative Partners is a consulting firm that moved from Salesforce to a self-hosted Twenty instance. Benjamin Reynolds led the migration. He had already become a Twenty expert implementing Twenty for one of Twenty's first cloud customers.\"],\"CCrRuT\":[\"Alternative Partners replaced Salesforce with self-hosted Twenty, using agentic AI to compress migration work.\"],\"UIu18Y\":[\"Alternative Partners used agentic AI to compress what would typically be weeks of Salesforce migration work into something a single person could oversee.\"],\"iFLhqi\":[\"Amrendra Pratap Singh\"],\"Sbiivs\":[\"Andorra 🇦🇩\"],\"Uv5eaJ\":[\"Angola 🇦🇴\"],\"qKANz3\":[\"Antigua & Barbuda 🇦🇬\"],\"aGCcXe\":[\"Any Questions?\"],\"lgSvgF\":[\"Anything else we should know?\"],\"pkMjbA\":[\"Anything that needs a developer.\"],\"dYZUP3\":[\"Anything that needs devops skills.\"],\"AfiWqP\":[\"APAC\"],\"/AMVjF\":[\"APEX tutorials\"],\"OZtEcz\":[\"API\"],\"yKBF3l\":[\"API access\"],\"GpYSXo\":[\"API backbone\"],\"30KnZB\":[\"API calls\"],\"42FQ3y\":[\"API-first\"],\"azQMHP\":[\"APIs are extra. Simplicity has a price.\"],\"MqJvvH\":[\"APIs, SDKs and webhooks to extend Twenty and ship apps on top of your CRM data.\"],\"I1Z4AM\":[\"Apply to build\"],\"zX3HUD\":[\"Apply to join the Twenty certified partner ecosystem.\"],\"8HV3WN\":[\"Arabic\"],\"uicv6Z\":[\"Architecture\"],\"fT9xVz\":[\"Argentina 🇦🇷\"],\"3KxGep\":[\"Armenia 🇦🇲\"],\"Sfa0xD\":[\"around it\"],\"S+Q+1d\":[\"Ask questions, automate tasks, and get insights with AI that understands your data and helps you move faster every day, end to end across teams.\"],\"v7zTZl\":[\"Assign owners and due dates\"],\"4/b98B\":[\"at the core\"],\"fxL/Km\":[\"Attachments without the chaos.\"],\"y2W2Hg\":[\"Audit logs\"],\"tw0/s1\":[\"Australia 🇦🇺\"],\"4cf5s+\":[\"Austria 🇦🇹\"],\"FFv0Vh\":[\"Automation\"],\"SJ7WSP\":[\"Available on YouTube!\"],\"8d+jRc\":[\"Azerbaijan 🇦🇿\"],\"iH8pgl\":[\"Back\"],\"wIoAQo\":[\"Bahamas 🇧🇸\"],\"Rhju1T\":[\"Bahrain 🇧🇭\"],\"LxzgmZ\":[\"Bangladesh 🇧🇩\"],\"rtcPS0\":[\"Barbados 🇧🇧\"],\"RownlY\":[\"Based in\"],\"jQLfIW\":[\"Because apparently privacy feels more premium with a surcharge.\"],\"qEQv1F\":[\"Because everything is built on Twenty's open foundation, Flycoder could wire the exact logic AC&T needed without fighting the platform.\"],\"uIG0OH\":[\"Because the foundation is solid, W3Grads is architected for what comes next, including a payment layer for future paid interview plans and nationwide scale without structural rewrites.\"],\"JGM+JO\":[\"Because true orchestration means putting a dollar sign on every dramatic entrance.\"],\"PKMHNe\":[\"become a genius!\"],\"6ZCRfT\":[\"Become a partner\"],\"7ysT6Z\":[\"Become a Twenty Partner — Application\"],\"0TCnEf\":[\"Belarus 🇧🇾\"],\"qblg4t\":[\"Belgium 🇧🇪\"],\"pSF7xM\":[\"Belize 🇧🇿\"],\"Hds3Bq\":[\"Bengali\"],\"cTWkw3\":[\"Benin 🇧🇯\"],\"SYfuGP\":[\"Benjamin Reynolds\"],\"YfjrMq\":[\"Bertrams\"],\"mzTjnf\":[\"Better than Liquid Glass!\"],\"GvGk4g\":[\"Beyond\"],\"OPnz/X\":[\"Bhutan 🇧🇹\"],\"TVJDFA\":[\"Bolivia 🇧🇴\"],\"MkvsWx\":[\"Book a call\"],\"Wzdd8u\":[\"Bosnia & Herzegovina 🇧🇦\"],\"wtNsrt\":[\"Botswana 🇧🇼\"],\"yCaNfF\":[\"Brazil 🇧🇷\"],\"bxWnM1\":[\"breaking operations\"],\"fYFNV7\":[\"Browse Twenty's certified partner network: regional coverage, languages, deployment expertise, and direct booking links.\"],\"VX4eI/\":[\"Brunei 🇧🇳\"],\"sbr0X/\":[\"Build a dashboard of pipeline by stage\"],\"uetyzD\":[\"Build a pipeline board grouped by stage\"],\"Utc5RF\":[\"Build custom dashboards from live CRM data. Aggregate anything — deals, accounts, activity — into charts your team actually reads.\"],\"e1u+Zh\":[\"Build on an open platform\"],\"/ETeLn\":[\"built a\"],\"SoAKmY\":[\"Built for speed\"],\"sdItv6\":[\"Bulgaria 🇧🇬\"],\"dNnRlc\":[\"Burkina Faso 🇧🇫\"],\"j8RGrG\":[\"Burned by vendor lock-in, AC&T built a CRM they actually own | Twenty\"],\"jtdtLa\":[\"Burundi 🇧🇮\"],\"L40Ae7\":[\"Calendar / booking link\"],\"4yFkf9\":[\"Cambodia 🇰🇭\"],\"AvRzYu\":[\"Cameroon 🇨🇲\"],\"wCALve\":[\"Can developers extend Twenty with code?\"],\"6mytgb\":[\"Can I migrate from Salesforce or HubSpot?\"],\"nEOTNi\":[\"Canada 🇨🇦\"],\"hRO6uK\":[\"Cape Verde 🇨🇻\"],\"M1RLfx\":[\"Catalan\"],\"NUrY9o\":[\"Categories\"],\"dBApoS\":[\"Central African Republic 🇨🇫\"],\"iI3Dq9\":[\"Chad 🇹🇩\"],\"2D9CbR\":[\"Check more add-ons\"],\"2BY3So\":[\"Chile 🇨🇱\"],\"zG6t8U\":[\"China 🇨🇳\"],\"h1IXFK\":[\"Chinese\"],\"3wV73y\":[\"City\"],\"ZbCD7v\":[\"Classic never dies. It just gets extended one more time.\"],\"u8JHrO\":[\"Clear filters\"],\"L/LPQZ\":[\"Cloud Pro is $9/user/month (yearly). Organization is $19/user/month and unlocks SSO and row-level permissions for teams that need finer access control.\"],\"WYgF8M\":[\"Cloud Pro starts at $9/user/month with unlimited custom objects. Self-host the open source core for free, or upgrade to Organization for SSO and row-level permissions.\"],\"1YncLF\":[\"Co-founder at NetZero\"],\"vWaYWP\":[\"Co-founder, NetZero\"],\"dcLsG5\":[\"Colombia 🇨🇴\"],\"b5bnuN\":[\"Column-to-field mapping (including relations)\"],\"ofoEsM\":[\"Coming soon!\"],\"KGD9Kt\":[\"Commercial license (no AGPL obligations)\"],\"OnPROL\":[\"Commercials\"],\"chL5IG\":[\"Community\"],\"8CLnho\":[\"Community support\"],\"RxpseA\":[\"Comoros 🇰🇲\"],\"SHjhDC\":[\"Company or brand *\"],\"P/f7ez\":[\"Complete activation for your Twenty self-hosted enterprise license.\"],\"Fkb+LW\":[\"Compose your CRM and internal apps with a single extensibility toolkit.\"],\"kD7ZGH\":[\"Compose your CRM and internal apps with a single extensibility toolkit. Data model, layout, and automation.\"],\"2DQw7/\":[\"Congo 🇨🇬\"],\"iSLIjg\":[\"Connect\"],\"90KBr0\":[\"Connect Google or Microsoft accounts\"],\"xgrBCK\":[\"Connect Google or Microsoft accounts and see emails and events linked to CRM records automatically.\"],\"MVrQxI\":[\"Connected via API\"],\"cfAG43\":[\"Consulting\"],\"GsUBlG\":[\"Contact \",[\"partnerName\"]],\"Oii3vg\":[\"Contacts & Companies\"],\"24qVhV\":[\"Context lives with the record.\"],\"+Uepfb\":[\"Control\"],\"VOpE1H\":[\"control hub\"],\"sTIhSj\":[\"Control without\"],\"wH1xmY\":[\"Control without drag\"],\"Bj7igG\":[\"Control without the overhead\"],\"PiH3UR\":[\"Copied!\"],\"he3ygx\":[\"Copy\"],\"7qTWwB\":[\"Copy the enterprise key above.\"],\"PXnj76\":[\"Copy this key and paste it into your Twenty self-hosted instance settings.\"],\"FapWIq\":[\"Core Features\"],\"Al/blj\":[\"Costa Rica 🇨🇷\"],\"JRK+HF\":[\"Costs down more than\"],\"cRA2/z\":[\"Country *\"],\"Xn2Nlq\":[\"Create a workflow\"],\"B9nLrl\":[\"Create apps on Twenty\"],\"yAL7FY\":[\"Create custom apps\"],\"oS1RiS\":[\"Create tasks from records\"],\"D3S5+x\":[\"Create tasks, assign owners, and attach rich notes directly from any record. No tab-switching, no lost context.\"],\"MSlbwg\":[\"CRM\"],\"NLgmM4\":[\"CRM audit · Requirements · Process mapping · ROI · RevOps · Vendor selection\"],\"Y44Xsf\":[\"CRM costs dropped by more than 90%. Manual overhead tied to the old system is gone. For the first time, AC&T has a CRM they will not lose again.\"],\"wDasLa\":[\"CRM Engineer\"],\"DqkzNV\":[\"CRM Engineer, AC&T Education Migration\"],\"b7vNti\":[\"CRM was a database you filled on Fridays. AI turned it into the system that runs your go-to-market. To differentiate, you have to build what your competitors can't buy.\"],\"OACAVp\":[\"Croatia 🇭🇷\"],\"I6FFSA\":[\"CSV export anytime\"],\"8RWevB\":[\"CSV import & export\"],\"s+QiQi\":[\"CSV import flow\"],\"O2UtEV\":[\"Cuba 🇨🇺\"],\"lh6aPn\":[\"Custom AI models\"],\"OaTurC\":[\"Custom apps\"],\"TcUCTv\":[\"Custom Apps · Scripts · AI/agent integrations\"],\"yBSEtR\":[\"Custom deal stages for your process\"],\"L+b7SB\":[\"Custom deal stages, drag-and-drop boards, and real-time tracking so your pipeline reflects reality.\"],\"DUnke3\":[\"Custom Development\"],\"GAD3Dx\":[\"Custom domain\"],\"Vz1Vq2\":[\"Custom domain (crm.yourco.com)\"],\"oPwQt4\":[\"Custom fields\"],\"U1RB/7\":[\"Custom fields and relationships\"],\"WGKb6T\":[\"Custom fields, relationships, and a unified timeline for every contact and company in your workspace.\"],\"prIqWa\":[\"Custom layout\"],\"8skTDV\":[\"Custom objects\"],\"AbyZbl\":[\"Custom views\"],\"YjXLAQ\":[\"Customer Stories\"],\"NihQNk\":[\"Customers\"],\"qqLY+j\":[\"Customization\"],\"GRfLAg\":[\"Customizations\"],\"Pj5fGG\":[\"Cyprus 🇨🇾\"],\"w9VTXG\":[\"Czech\"],\"xkuHM6\":[\"Czech Republic 🇨🇿\"],\"4RLD4p\":[\"Daily messages\"],\"Fo2vDn\":[\"Danish\"],\"V0kvgB\":[\"Data import\"],\"5cNMFz\":[\"Data model\"],\"iq2WTm\":[\"Data modeling · Migrations · No-code workflows · Dashboards · SSO/SCIM · Integrations\"],\"/TlpVf\":[\"Deals that move themselves.\"],\"H1UtjM\":[\"Denmark 🇩🇰\"],\"n+SX4g\":[\"Developers\"],\"Wuqvfz\":[\"Director of Digital and Information, Elevate Consulting\"],\"e7R9Zi\":[\"Discover the newest features and improvements in Twenty,<0/>the #1 Open Source CRM.\"],\"W+b/DF\":[\"Discover what's new\"],\"rHLwDO\":[\"Djibouti 🇩🇯\"],\"Zjjbne\":[\"Do I need a developer to customize Twenty?\"],\"Zx22Ih\":[\"Does Twenty work with Claude, ChatGPT, and Cursor?\"],\"bMDnQR\":[\"Dominica 🇩🇲\"],\"ufcRA6\":[\"Dominican Republic 🇩🇴\"],\"pOLPPB\":[\"Don't get locked into someone else's ecosystem. Twenty's developer experience looks like normal software, with local setup, real data, live testing, and no proprietary tooling.\"],\"HDR0en\":[\"DR Congo 🇨🇩\"],\"mzedFr\":[\"Draft a workflow for an email sequence\"],\"fPma12\":[\"Drag-and-drop deals between stages\"],\"KIjvtr\":[\"Dutch\"],\"6r6pDf\":[\"e.g. React, Postgres, n8n…\"],\"hEtClO\":[\"Ecuador 🇪🇨\"],\"4CJ4xV\":[\"EdTech\"],\"aqxYLv\":[\"Education\"],\"OAdXUT\":[\"Egypt 🇪🇬\"],\"2xK+An\":[\"El Salvador 🇸🇻\"],\"1wTjWx\":[\"Elevate Consulting is a management consultancy based in Canada. When Justin Beadle, Director of Digital and Information, joined, the company ran entirely on Word documents, Excel spreadsheets, sticky notes, emails, and reliance on people. There was no CRM, no API-accessible tools, only a patchwork trying to stand in for a single source of truth.\"],\"2THY70\":[\"Elevate Consulting uses Twenty as the API backbone connecting billing, Teams, resourcing, and a custom front end around client and opportunity data.\"],\"wiTeYI\":[\"Elevate's CEO was so impressed with Twenty he started recommending it to clients before the internal setup was even complete. The team is exploring bringing Twenty to client projects as part of their consulting practice, including as the backend for custom-built products tailored to specific operational needs.\"],\"FNyrb0\":[\"Email & Calendar\"],\"AoN898\":[\"Email and Chat\"],\"ObCvfI\":[\"Email sharing\"],\"hfqiVr\":[\"Email/calendar activity on each record\"],\"XGd8Wo\":[\"Emails & Calendar\"],\"o4/9l1\":[\"Emails and events linked to CRM records\"],\"Qpn/bX\":[\"Encrypt your data\"],\"Iy8Gze\":[\"Encryption key rotation\"],\"lYGfRP\":[\"English\"],\"Ijh+h+\":[\"Enjoy unlimited customization using the AI coding tools you already love. Adapt your CRM to fit the way your business grows and wins.\"],\"xoqD/n\":[\"Enter a valid email address.\"],\"/OVUD6\":[\"Enter a valid URL (starting with http:// or https://).\"],\"NTskGY\":[\"Enterprise Activation | Twenty\"],\"3dQ6zJ\":[\"Environments\"],\"c0nqfC\":[\"Equatorial Guinea 🇬🇶\"],\"4DIpFY\":[\"Eritrea 🇪🇷\"],\"JIhNLR\":[\"Estonia 🇪🇪\"],\"8yXuJ9\":[\"Eswatini 🇸🇿\"],\"rktGGp\":[\"Ethiopia 🇪🇹\"],\"rQqP1P\":[\"Europe\"],\"IhKZhp\":[\"Even the training material is a feature worth celebrating.\"],\"sQP1sF\":[\"Every new release of Twenty, the #1 Open Source CRM, with changelogs, demos, and the highlights teams care about most.\"],\"rkZTD7\":[\"Every thread, on the right record.\"],\"kz/8m8\":[\"Everything in Pro\"],\"zoNk7e\":[\"Everything updates in real time, with AI chat always ready to help you move faster.\"],\"57gG1f\":[\"Experience enterprise-grade granularity, starting with an 11th permission.\"],\"uZRQi+\":[\"Expertise & experience\"],\"JTM5zS\":[\"Explore customer stories\"],\"weFouS\":[\"Extended run!\"],\"akLvep\":[\"Familiar, modern interface\"],\"gKNP7S\":[\"Farsi\"],\"abO45l\":[\"Fast path to action\"],\"e6BgMV\":[\"Field-level permissions\"],\"z+q1Th\":[\"Fiji 🇫🇯\"],\"sER+bs\":[\"Files\"],\"bOidm7\":[\"Filter partners\"],\"iabLgo\":[\"Filtered metrics from any object\"],\"sRUAXp\":[\"Find a certified Twenty partner to migrate, customise, and operate your open source CRM, or join the ecosystem and grow your practice with us.\"],\"TJ7HQl\":[\"Find a partner\"],\"MD032e\":[\"Find a Twenty partner\"],\"YeWg37\":[\"Find a Twenty Partner — Certified Open Source CRM Implementers\"],\"wHyJkT\":[\"Find the right partner to implement, customize, and tailor Twenty to your team.\"],\"9V48qi\":[\"Finland 🇫🇮\"],\"USZ2N6\":[\"Finnish\"],\"PHM5wp\":[\"Flexibility\"],\"HBJ0P5\":[\"Flow\\norchestration\"],\"obrJBN\":[\"Fly through your workspace with shortcuts and short load times.\"],\"HjFq2b\":[\"Flycoder, a full-stack development partner, helped them set up Twenty as a self-hosted instance shaped around how AC&T actually operates. The data model centers on students, not a generic contact-and-deal pipeline. Statuses update automatically: a workflow runs nightly to keep enrollment records current. Automated email reminders cover important dates. Adding a new record takes under a minute.\"],\"1SL9ZF\":[\"Focus on the use case, not the\"],\"P5E+kT\":[\"Focus on the use case, not the plumbing\"],\"wdVyxi\":[\"Folder/Label import\"],\"CKQ0za\":[\"For a firm that once ran on sticky notes, this is more than an upgrade. It is a complete transformation.\"],\"yAJC9c\":[\"For twenty years, CRM meant the same thing: a place to log calls, track deals, and pull reports on Friday. The real work happened in people's heads, in Slack threads, in hallway conversations. The CRM kept score. Nobody expected more from it.\"],\"wSoqhC\":[\"foundation\"],\"UCoxP5\":[\"Founder, Nine Dots Ventures\"],\"IPaRlc\":[\"Founder, Wintactix\"],\"671GY5\":[\"France 🇫🇷\"],\"tUgSXd\":[\"Free for you!\"],\"nLC6tu\":[\"French\"],\"weRlb1\":[\"from \",[\"minBudget\"]],\"Iuxc00\":[\"From CSV to CRM in minutes.\"],\"yDeZSV\":[\"From documents to\"],\"emeKZ7\":[\"From documents to open APIs\"],\"CMqgta\":[\"From Salesforce to\"],\"kl+hEJ\":[\"From Salesforce to self-hosted Twenty\"],\"syU/BD\":[\"From Salesforce to self-hosted Twenty, powered by AI | Alternative Partners\"],\"TH5XjF\":[\"From simple to\"],\"Lf7cb3\":[\"From simple to advanced\"],\"m1I5TY\":[\"Full communication history in one place\"],\"wXgKOm\":[\"Full customization\"],\"YZ7Q3Z\":[\"Full ownership\"],\"hdxwWi\":[\"Fully customizable\"],\"//hrfs\":[\"Gabon 🇬🇦\"],\"yau9J6\":[\"Gambia 🇬🇲\"],\"S84RWl\":[\"Generate tasks for my top 10 accounts\"],\"GOmD9p\":[\"Georgia 🇬🇪\"],\"DDcvSo\":[\"German\"],\"XcPIuI\":[\"Germany 🇩🇪\"],\"ZDIydz\":[\"Get started\"],\"xyKSqi\":[\"Ghana 🇬🇭\"],\"Ay/vbT\":[\"Good choice!\"],\"Zh0acB\":[\"Grab 30 minutes so we can get to know your team.\"],\"+tDN2S\":[\"Greece 🇬🇷\"],\"CZXzs4\":[\"Greek\"],\"DDgHcm\":[\"Grenada 🇬🇩\"],\"IsZ6P7\":[\"grow\"],\"MCLWq4\":[\"Grow with a flexible foundation\"],\"XpCing\":[\"grows\"],\"M/8CC1\":[\"Guatemala 🇬🇹\"],\"UZbq7J\":[\"Guinea 🇬🇳\"],\"vtpxPx\":[\"Guinea-Bissau 🇬🇼\"],\"GT8Ua2\":[\"Guyana 🇬🇾\"],\"5BLiJj\":[\"Haiti 🇭🇹\"],\"Xf5EJg\":[\"Halftone generator\"],\"DHC85F\":[\"Halftone Generator | Twenty\"],\"c3XJ18\":[\"Help\"],\"CRzGla\":[\"Help center\"],\"LiWOgh\":[\"Hey, I'm interested in meeting. Here's my project:\"],\"tGjibo\":[\"Hindi\"],\"qfSbUb\":[\"His approach was unconventional. Instead of mapping fields manually, scripting transforms, and validating data step by step, he handed the job to agentic AI tools with a brief: where the data lives, the GitHub repo for the target platform, and the Railway deployment. Start, and only return if something breaks beyond a 70% confidence fix.\"],\"i0qMbr\":[\"Home\"],\"CtU7yU\":[\"Homeseller\"],\"KYnPnU\":[\"Homeseller is a high-volume real estate agency in Singapore, founded by one of the country's top-performing property agents. The whole operation runs on WhatsApp: no email, no calendars, just group chats, thousands of them, with clients, agents, and leads together.\"],\"v6cmMq\":[\"Homeseller kept their habits. WhatsApp stayed WhatsApp. What changed is that everything flowing through those conversations now lands in a structured system, tracked, classified, and visible in real time.\"],\"xaIV9m\":[\"Homeseller, WhatsApp, and a CRM built around the business | Nine Dots & Twenty\"],\"zbfmqm\":[\"Honduras 🇭🇳\"],\"mqX9AX\":[\"Hosting & Infrastructure\"],\"SHZNBm\":[\"Hourly\"],\"Ivq5+7\":[\"Hourly rate\"],\"XnFo3G\":[\"How AC&T Education Migration and Flycoder replaced a shuttered vendor CRM with self-hosted Twenty, with 90%+ lower cost and full ownership.\"],\"PYi0f6\":[\"How Alternative Partners migrated from Salesforce to self-hosted Twenty using agentic AI in the implementation loop: fast migration, durable ownership.\"],\"+MLOVo\":[\"How Elevate Consulting moved off documents and spreadsheets to Twenty as the API-connected CRM at the center of their stack.\"],\"OIwpKt\":[\"How long does it take to get started?\"],\"iRzy9e\":[\"How NetZero uses Twenty across carbon credits, agricultural products, and franchised industrial systems with a modular CRM and a roadmap toward AI-assisted workflows.\"],\"NZYA4S\":[\"How Nine Dots Ventures rebuilt a Singapore real estate agency on Twenty with APIs, n8n, Grafana, and AI on top of 2,000+ WhatsApp messages a day.\"],\"bcln75\":[\"How Twenty collects, uses, safeguards, and discloses information when you use Twenty.com and related services.\"],\"URQPvK\":[\"How W3villa Technologies shipped W3Grads, an AI mock interview platform for institutions, on Twenty as the operational backbone.\"],\"htrFcw\":[\"Hungary 🇭🇺\"],\"T6wyby\":[\"I'll book later →\"],\"RYDa0v\":[\"Iceland 🇮🇸\"],\"xalbpT\":[\"Ideas from the team building Twenty on open source CRM, customer data, GTM systems, and building software that lasts.\"],\"ePYQjq\":[\"Identity\"],\"l0JGUk\":[\"Impersonate users\"],\"N4OVNn\":[\"Implementation\"],\"yHueLx\":[\"Implementation partners\"],\"ZAKTS6\":[\"Import your data with field mapping, including relations. Export anytime — your data is always yours.\"],\"InyU0Z\":[\"In June 2025, Justin learned Twenty v1 had shipped. Within two or three days, the CEO asked him to look into setting up a CRM. The shift came from the potential of what could be built on top of fully open APIs. The timing was perfect.\"],\"d1Aru8\":[\"In production.\"],\"Sqb+jp\":[\"In-app preview for supported file types (when enabled)\"],\"3XP8Lk\":[\"Included!\"],\"/c4yUr\":[\"India 🇮🇳\"],\"iEJqDi\":[\"Indonesia 🇮🇩\"],\"BQukYF\":[\"Indonesian\"],\"S8gy7K\":[\"Industry\"],\"MeL8SS\":[\"Infinite scroll\"],\"+mOisw\":[\"Infinite scroll is still coming soon, unlike the invoice.\"],\"K8iwJx\":[\"Install shared tarball app\"],\"AHWM9N\":[\"Integration\"],\"OChKCc\":[\"Interactive halftone generator exported from Twenty.\"],\"+83cJG\":[\"Interested in meeting \",[\"partnerName\"]],\"mdsMtj\":[\"internal rollout\"],\"a+PGuG\":[\"Internet accounts per user\"],\"FtgjCv\":[\"Iran 🇮🇷\"],\"8yynyz\":[\"Iraq 🇮🇶\"],\"s7XmoY\":[\"Ireland 🇮🇪\"],\"/yQIKP\":[\"Is Twenty really open-source?\"],\"SdtpDP\":[\"Israel 🇮🇱\"],\"QjEULz\":[\"It is just such a nicer experience than dealing with a Salesforce or a HubSpot. My mission has been to get every tool API-accessible, so everything talks to each other.\"],\"FJ51pP\":[\"It is just such a nicer experience than dealing with a Salesforce or a HubSpot. My mission has been to get every tool API-accessible, so everything talks to each other. Twenty made that possible in a way older CRM platforms simply do not.\"],\"kqIAbN\":[\"It worked. This is AI-assisted iteration in practice: not AI as a product feature, but as part of implementation work, compressing what would typically be weeks into something one person can oversee without being the bottleneck.\"],\"ltNDOB\":[\"It's fragile. V1 ships quickly, but maintaining and making changes is a long term burden.\"],\"Lj7sBL\":[\"Italian\"],\"OSTD8d\":[\"Italy 🇮🇹\"],\"0BTIQi\":[\"Ivory Coast 🇨🇮\"],\"W6o2Pv\":[\"Jamaica 🇯🇲\"],\"kpk6mj\":[\"Japan 🇯🇵\"],\"dFtidv\":[\"Japanese\"],\"kX2mij\":[\"Join our ecosystem and help businesses take control of their customer data with\"],\"1qiriB\":[\"Join our growing partner ecosystem\"],\"APYcnh\":[\"Join our partner ecosystem and help businesses<0/>take control of their CRM.\"],\"5emzGz\":[\"Join the teams that chose to own their CRM.<0/>Start building with Twenty today.\"],\"QbxNys\":[\"Jordan 🇯🇴\"],\"pB76mP\":[\"Jul 2025\"],\"hvwlu3\":[\"Jun 2025\"],\"qrYDGE\":[\"Justin Beadle\"],\"vYXuJI\":[\"Justin built workflows for notifications across the team, alerting the right people in Teams when a prospect becomes a lead or when project milestones are reached. Forms in Twenty let the business development team log activity without leaving the tool. The impact is real for the organization. The tool has been adaptable from opportunity-level work at a client to executive-level decisions.\"],\"E6Oohx\":[\"Justin's broader mission at Elevate has been to move the company off static documents and onto tools with API access. By the end of 2025, that was in place: time billing, resource planning, Microsoft Teams, and project management were all accessible via API, with Twenty at the center holding client and opportunity data. Team members could use that information strategically instead of re-keying it.\"],\"r1cFAW\":[\"Kazakhstan 🇰🇿\"],\"kEahsE\":[\"Kenya 🇰🇪\"],\"IxBSi8\":[\"Kiribati 🇰🇮\"],\"h6S9Yz\":[\"Korean\"],\"PqhUrP\":[\"Kosovo 🇽🇰\"],\"3+TwF3\":[\"Kuwait 🇰🇼\"],\"e9zZkH\":[\"Kyrgyzstan 🇰🇬\"],\"GAmD3h\":[\"Languages\"],\"u6jooT\":[\"Languages spoken\"],\"YHacTY\":[\"Laos 🇱🇦\"],\"2lrGbG\":[\"LATAM\"],\"7OHfcc\":[\"Latvia 🇱🇻\"],\"rdU729\":[\"Layout\"],\"+Ss/og\":[\"Learn how to use Twenty\"],\"wB0DGn\":[\"Lebanon 🇱🇧\"],\"vifyyw\":[\"Legal\"],\"UqdHpG\":[\"Lesotho 🇱🇸\"],\"rJargy\":[\"Liberia 🇱🇷\"],\"Lzw0kM\":[\"Libya 🇱🇾\"],\"tHFTlp\":[\"Licensee:\"],\"K41WYc\":[\"Liechtenstein 🇱🇮\"],\"gggTBm\":[\"LinkedIn\"],\"Gg69LR\":[\"LinkedIn URL\"],\"2WIZYd\":[\"Lithuania 🇱🇹\"],\"AHVzME\":[\"Live data and AI built\"],\"GObQuL\":[\"Live updates\"],\"zmRZwk\":[\"Live updates are unavailable, which is almost more honest.\"],\"ObPscj\":[\"Loading activation…\"],\"7VBQ2j\":[\"Local, Production\"],\"JO8Bdx\":[\"Lock-in\"],\"sQia9P\":[\"Log in\"],\"KPLAuI\":[\"Lower CRM cost\"],\"J13skq\":[\"Luxembourg 🇱🇺\"],\"nRYQC8\":[\"Madagascar 🇲🇬\"],\"qHvKxh\":[\"Malawi 🇲🇼\"],\"tF97tn\":[\"Malay\"],\"DIOh5g\":[\"Malaysia 🇲🇾\"],\"62/ScF\":[\"Maldives 🇲🇻\"],\"wc5E/3\":[\"Mali 🇲🇱\"],\"04fjhR\":[\"Malta 🇲🇹\"],\"Si4WyF\":[\"Management Consulting\"],\"poX06f\":[\"Manual work at core\"],\"VJOKPB\":[\"Maps view\"],\"Zt5PUS\":[\"Marketplace\"],\"2jVbnO\":[\"Marshall Islands 🇲🇭\"],\"bJNKJ1\":[\"Master every corner of Twenty\"],\"HG/EUg\":[\"Mauritania 🇲🇷\"],\"YDiaY/\":[\"Mauritius 🇲🇺\"],\"Zw+Zv+\":[\"MCP server\"],\"zxcfgg\":[\"means control\"],\"bwCiCi\":[\"Meet the certified agencies and consultants implementing Twenty for teams worldwide.\"],\"ujYZ+f\":[\"Meet the teams who shaped Twenty into their own CRM with self-hosted deployments, AI-assisted workflows, and API-first product stacks.\"],\"CQ9M36\":[\"MENA\"],\"briyJf\":[\"Metrics you can actually trust.\"],\"YBLFQZ\":[\"Mexico 🇲🇽\"],\"KBirDR\":[\"Micronesia 🇫🇲\"],\"ZdvtU2\":[\"migration workflow\"],\"so04x6\":[\"Mike and Azmat from Nine Dots stepped in to fix that, not by changing how Homeseller works, but by building a system that finally fit around it.\"],\"izddzp\":[\"Mike Babiy\"],\"FFFENV\":[\"Minimum project budget\"],\"6m8rMT\":[\"Moldova 🇲🇩\"],\"qRRmSe\":[\"Monaco 🇲🇨\"],\"G+EV+A\":[\"Mongolia 🇲🇳\"],\"9VDoNp\":[\"Montenegro 🇲🇪\"],\"+8Nek/\":[\"Monthly\"],\"VqXuUv\":[\"More options available!\"],\"LAFO4Y\":[\"Morocco 🇲🇦\"],\"EwJDrS\":[\"Mozambique 🇲🇿\"],\"dlKkNL\":[\"Multi-file upload on records\"],\"QGWbbv\":[\"Myanmar 🇲🇲\"],\"6YtxFj\":[\"Name\"],\"yYmxee\":[\"Namibia 🇳🇦\"],\"zVOV14\":[\"Nauru 🇳🇷\"],\"LfNsfa\":[\"Need a quick change? Skip the engineering ticket. Customize your workspace in minutes.\"],\"4sbgPq\":[\"Need help with customization?\"],\"LNVNNE\":[\"Nepal 🇳🇵\"],\"g60EgR\":[\"Netherlands 🇳🇱\"],\"8Cp4Of\":[\"NetZero\"],\"J8ZssL\":[\"NetZero runs a modular Twenty setup across carbon credits, ag products, and industrial systems.\"],\"7HVBV+\":[\"NetZero uses Twenty as a modular CRM across product lines and countries, with a roadmap into AI-assisted workflows.\"],\"3PtYTO\":[\"NetZero works with the agro-industry, serving clients from multinationals to smallholder farmers. They sell carbon credits, agricultural products, and franchised industrial systems across three different product lines, multiple countries, and multiple company sizes. When Olivier Reinaud, co-founder of NetZero, started looking at CRMs in late 2024, he was not chasing the most feature-rich platform. He wanted the right foundation.\"],\"/DTtCF\":[\"New Zealand 🇳🇿\"],\"GY6uSc\":[\"Next →\"],\"KqojOL\":[\"Next steps\"],\"iBOZv7\":[\"Nicaragua 🇳🇮\"],\"61NU7V\":[\"Niger 🇳🇪\"],\"+2NLII\":[\"Nigeria 🇳🇬\"],\"qZ+egR\":[\"Nine Dots put Twenty at the center of Homeseller's stack with APIs, automation, and AI on top of WhatsApp-heavy operations.\"],\"sGuHDu\":[\"Nine Dots rebuilt Homeseller's operations on Twenty, with a custom data model shaped around their sales flow. Because Twenty is open and everything is accessible via API, they connected it to what the business actually needed: n8n for automated workflows (in-app workflows were not available at that time), Grafana for live dashboards fed from Twenty, and a custom AI layer to parse and extract structured insights from more than 2,000 WhatsApp messages a day.\"],\"1UzENP\":[\"No\"],\"6tRXQ4\":[\"No matching country.\"],\"o+/Ad5\":[\"No more renting someone else's\"],\"LmWdm6\":[\"No more renting someone else's structure\"],\"UxK4so\":[\"No partners match your filters\"],\"q9f4Tp\":[\"No-code\"],\"SiZ/7E\":[\"No. Build custom objects, fields, views, and no-code workflows straight from Settings. Unlimited, no extra charge.\"],\"096JXI\":[\"North Korea 🇰🇵\"],\"IwF7aJ\":[\"North Macedonia 🇲🇰\"],\"sZwk4U\":[\"Norway 🇳🇴\"],\"1IipHp\":[\"Norwegian\"],\"k3T2mM\":[\"Now a developer can describe what they want to Claude Code and have a working app in an afternoon. A custom object, a scoring workflow, a new view, an integration. The bottleneck isn't building anymore. It's whether your platform lets you.\"],\"WFvpMn\":[\"Now book your intro call.\"],\"CzeIij\":[\"Number of dashboards\"],\"0dVyEt\":[\"of a go-to-market stack\"],\"pkrZnO\":[\"Olivier recognizes that NetZero's current use of Twenty is still relatively simple: workflows and integrations are not yet as deep as he eventually wants, because he prioritized getting foundations right first.\"],\"l/1LQc\":[\"Olivier Reinaud\"],\"BdShAR\":[\"Oman 🇴🇲\"],\"D2b+1q\":[\"On a single CRM\"],\"XhXmzW\":[\"On this page\"],\"jxC7HY\":[\"Onboarding · Documentation · Change management · L1/L2 support · Managed services\"],\"pbmZ7R\":[\"Onboarding Packs\"],\"/DFChQ\":[\"One\"],\"Zt1UZb\":[\"One API to rule them all\"],\"pShqss\":[\"Only $5 for SSO. Practically a charity program.\"],\"3WErRa\":[\"open APIs\"],\"pkXQA+\":[\"Open your Twenty self-hosted instance Settings → Enterprise.\"],\"wtKPUT\":[\"open-source primitives.\"],\"5RkmVr\":[\"Open-source, AI-ready, and yours to shape.\"],\"ucgZ0o\":[\"Organization\"],\"dKGg8T\":[\"Out of stock\"],\"PASC/7\":[\"Outlived every redesign since 2004.\"],\"Bwsi7B\":[\"Own your CRM end to end\"],\"oDAEQq\":[\"Ownership\"],\"NmF/Vo\":[\"Owning your stack remains mysteriously out of stock.\"],\"h/oMMb\":[\"Packaged CRMs make every company look the same. Twenty is the open source CRM teams shape around their workflow, with a modern UI and a developer-first platform.\"],\"+AiiMt\":[\"Pagination builds character.\"],\"sW3DaS\":[\"Pakistan 🇵🇰\"],\"cvRU36\":[\"Palau 🇵🇼\"],\"u2htNd\":[\"Palestine 🇵🇸\"],\"pWLp16\":[\"Panama 🇵🇦\"],\"xOR4tu\":[\"Papua New Guinea 🇵🇬\"],\"kb3PhK\":[\"Paraguay 🇵🇾\"],\"mPkInZ\":[\"Partners\"],\"9yo8NN\":[\"Paste the key and click Activate.\"],\"nxV7o2\":[\"paying off\"],\"OzAIDr\":[\"Peru 🇵🇪\"],\"LqRs8D\":[\"Philippines 🇵🇭\"],\"we6gj5\":[\"Pick every category that applies.\"],\"FFkjaT\":[\"Pipeline Management\"],\"gzkkC3\":[\"Pipelines, custom objects, AI assistants, and a native API on top of Postgres. Twenty is the open source CRM with the modern UX teams actually want to use.\"],\"z7gnI9\":[\"Please complete all required fields before continuing.\"],\"iCh6/3\":[\"plumbing\"],\"AFr2a5\":[\"Poland 🇵🇱\"],\"trnWaw\":[\"Polish\"],\"8BrmUs\":[\"Portugal 🇵🇹\"],\"MOERNx\":[\"Portuguese\"],\"z87IFG\":[\"Press Enter or comma to add a skill.\"],\"a7u1N9\":[\"Price\"],\"aHCEmh\":[\"Pricing\"],\"J2IAmT\":[\"Principal and Founder\"],\"kXBQYM\":[\"Principal and Founder, Alternative Partners\"],\"k62X/2\":[\"Priority support\"],\"LcET2C\":[\"Privacy Policy\"],\"DJ3uVe\":[\"Privacy Policy | Twenty\"],\"3fPjUY\":[\"Pro\"],\"kIGKva\":[\"Production grade quality\"],\"vERlcd\":[\"Profile\"],\"CcK9cq\":[\"Programs that previously needed heavy manual coordination now run end-to-end with automation. Institutions get a scalable, intelligent system; students get faster preparation for interviews that matter; W3villa shipped a product institutions can build revenue around.\"],\"PaHxQd\":[\"Project minimum\"],\"9NAqO4\":[\"Proposal automation\"],\"a24q7E\":[\"Proprietary languages, slow deployment cycles, and \\\"black box\\\" logic.\"],\"kS6G/9\":[\"pulled the plug\"],\"u9RZ7+\":[\"Punjabi\"],\"frfCYp\":[\"Q1 2026\"],\"tFx+ES\":[\"Qatar 🇶🇦\"],\"3XOwjg\":[\"Rates\"],\"DnWJal\":[\"Reach out\"],\"gSQVmr\":[\"Read the case\"],\"EqCbT9\":[\"Read/Edit/Delete permissions\"],\"Gr9RIC\":[\"Ready to grow<0/>with Twenty?\"],\"zTY2by\":[\"Real customer stories from teams running their business on Twenty: how they migrated, what they customised, and what changed once their CRM finally fit.\"],\"NIwjHh\":[\"Real Estate\"],\"CH+Ona\":[\"Real stories from real teams about how they shaped Twenty to fit their workflow and accelerated their growth.\"],\"5O1eTm\":[\"Real-time changes? That will be a premium surprise.\"],\"4hc7hc\":[\"Real-time data\"],\"dKQCrj\":[\"Real-time is a state of mind, not a feature.\"],\"Zhiuz9\":[\"Record quarter\"],\"PWlTvh\":[\"Records\"],\"q45OlW\":[\"Regions\"],\"rwWjWg\":[\"Release Notes\"],\"5icoS1\":[\"Releases\"],\"BkBq/5\":[\"Remove \",[\"0\"],\" filter\"],\"a/aGHe\":[\"Rename, download, and delete attachments\"],\"t9yxlZ\":[\"Reports\"],\"SY/an2\":[\"Reports & Dashboards\"],\"s+MGs7\":[\"Resources\"],\"oC2l7f\":[\"REST & GraphQL API\"],\"kx0s+n\":[\"Results\"],\"2itg0p\":[\"Retro 2015\"],\"frqduN\":[\"Rich notes attached to records\"],\"/gaSVU\":[\"Roadmap\"],\"mLp5AP\":[\"Romania 🇷🇴\"],\"uJc01W\":[\"Romanian\"],\"Wdh41P\":[\"Row-level permissions\"],\"mRpuWW\":[\"Running mock interview programs for hundreds of students sounds straightforward. In practice, universities and training institutes hit the same wall: registrations entered by hand, interview links sent one by one, faculty reviewing every session without scoring or classification. At real scale, it breaks.\"],\"T1ut28\":[\"Russia 🇷🇺\"],\"nji0/X\":[\"Russian\"],\"dw8D3T\":[\"Rwanda 🇷🇼\"],\"niLOap\":[\"Saint Kitts & Nevis 🇰🇳\"],\"zCHzF/\":[\"Saint Lucia 🇱🇨\"],\"Md/8iQ\":[\"Saint Vincent 🇻🇨\"],\"Burn4/\":[\"Salesfarce Add-on Center\"],\"xTfEgV\":[\"Salesfarce Pro\"],\"/UolBB\":[\"Salesforce Classic\"],\"l69E+u\":[\"Salesforce migration\"],\"CADlRK\":[\"Same CRM\"],\"60i6S+\":[\"Same output\"],\"xl2tJ9\":[\"Same results\"],\"w9QWxz\":[\"SAML/OIDC SSO\"],\"R38ZPo\":[\"Samoa 🇼🇸\"],\"fK288K\":[\"San Marino 🇸🇲\"],\"KDcBQd\":[\"São Tomé & Príncipe 🇸🇹\"],\"/BK0Nl\":[\"Saudi Arabia 🇸🇦\"],\"elz5ka\":[\"Saved / month\"],\"tigXYO\":[\"saved every month\"],\"bifv6N\":[\"Scale\"],\"rbgetd\":[\"Scale without\"],\"842ybw\":[\"Scale without breaking operations\"],\"vk6sVR\":[\"Search a country…\"],\"HVOGoW\":[\"Seats limit\"],\"a3LDKx\":[\"Security\"],\"aB+XpI\":[\"See more features\"],\"FY4ykg\":[\"See the latest release\"],\"JDp1bg\":[\"See updates as they happen. Work with your team and agents seamlessly.\"],\"0kgOPB\":[\"See what shipped in \",[\"0\"]],\"wgNoIs\":[\"Select all\"],\"6p/m5q\":[\"Select your country\"],\"6JhL+3\":[\"Self-hosted\"],\"QFK/45\":[\"Self-hosted (Docker/K8s) · Cloud architecture · Scaling · Security · Monitoring\"],\"5CWy3T\":[\"Self-hosted means AC&T carries no vendor risk: no pricing model that can change, no platform that can disappear, no forced migration. The system is theirs.\"],\"5WmQ5O\":[\"Self-hosted means control\"],\"6QPYP7\":[\"self-hosted Twenty\"],\"GrBvv/\":[\"Self-hosting\"],\"YdhUoe\":[\"Self-hosting, now for rent!\"],\"NaHz2o\":[\"Selfhosting\"],\"D50Vyu\":[\"Senegal 🇸🇳\"],\"eEJlq0\":[\"Serbia 🇷🇸\"],\"62gxWx\":[\"Seychelles 🇸🇨\"],\"3VFzsh\":[\"Ship a product on Twenty\"],\"6lGV3K\":[\"Show less\"],\"RhU4bB\":[\"Showing \",[\"visibleCount\"],\" of \",[\"totalCount\"],\" partners\"],\"I89wN/\":[\"Showing all \",[\"totalCount\"],\" partners\"],\"yhyNch\":[\"Sierra Leone 🇸🇱\"],\"mA6cL1\":[\"Sign up for Cloud in under a minute and start your 30-day trial. For larger rollouts, our 4-hour Onboarding Packs or certified partners get you live in 1–2 weeks.\"],\"0eG5g+\":[\"Singapore 🇸🇬\"],\"V9dFwD\":[\"Sitemap\"],\"t6ComU\":[\"Skip the clunky UX that always comes with custom.\"],\"U7keXg\":[\"Slovakia 🇸🇰\"],\"o1VTTF\":[\"Slovenia 🇸🇮\"],\"bUmSwL\":[\"Smart patterns, shortcuts, and layouts make everyday tasks faster and easier to execute.\"],\"6sKjjx\":[\"Solo\"],\"FX2oa1\":[\"Solo or agency?\"],\"TcZtfs\":[\"Solomon Islands 🇸🇧\"],\"TvdMI3\":[\"Solutioning\"],\"t1E06j\":[\"Somalia 🇸🇴\"],\"AVfp38\":[\"Some call this enterprise pricing. We prefer a CRM where API access, webhooks, and workflows don't show up as surprise add-ons.\"],\"B/mYo/\":[\"Source code access\"],\"zHJB/O\":[\"South Africa 🇿🇦\"],\"7MdTKh\":[\"South Korea 🇰🇷\"],\"a4jo+V\":[\"South Sudan 🇸🇸\"],\"Kv3C8d\":[\"Spain 🇪🇸\"],\"65A04M\":[\"Spanish\"],\"00jcbn\":[\"Sri Lanka 🇱🇰\"],\"vnS6Rf\":[\"SSO\"],\"uQl22y\":[\"Standard support\"],\"wxW2Sv\":[\"Start automating at huge scale!\"],\"XO628f\":[\"Start for free\"],\"+6VDIA\":[\"Start your free trial today<0/>without credit card.\"],\"j9c8rb\":[\"Stay in Flow\"],\"GdGiNi\":[\"Step \",[\"current\"],\" of \",[\"total\"]],\"bxgoJR\":[\"Step-by-step guides and playbooks to help your team get the most out of their workspace.\"],\"UCLArd\":[\"Stop settling for trade-offs.\"],\"lm4alq\":[\"structure\"],\"Sv4BSp\":[\"Subdomain (yourco.twenty.com)\"],\"H5/rZQ\":[\"Submit application\"],\"MDqQmP\":[\"Submitting…\"],\"8Z1557\":[\"Sudan 🇸🇩\"],\"XYLcNv\":[\"Support\"],\"Aq66kg\":[\"Suriname 🇸🇷\"],\"Yz+oFV\":[\"Swahili\"],\"b2//Ip\":[\"Sweden 🇸🇪\"],\"UaISq3\":[\"Swedish\"],\"IImT5c\":[\"Switzerland 🇨🇭\"],\"sjuSub\":[\"Syria 🇸🇾\"],\"3w+Aox\":[\"Table, Kanban, Calendar\"],\"ISVD3+\":[\"Tagalog\"],\"9M02G5\":[\"Tailor record pages, menus, and views\"],\"boABlR\":[\"Taiwan 🇹🇼\"],\"XJspRJ\":[\"Tajikistan 🇹🇯\"],\"JAKtcG\":[\"Talk to us\"],\"fb427h\":[\"Tamil\"],\"ri1l89\":[\"Tanzania 🇹🇿\"],\"GWMpL3\":[\"Tasks & Activities\"],\"Ye3KKA\":[\"Team up with a Twenty expert\"],\"vsdUaL\":[\"Technical notes\"],\"y+bLyB\":[\"Technical skills\"],\"1ZwmkP\":[\"template\"],\"mvP/25\":[\"Terms and Conditions\"],\"BEX1RA\":[\"Terms of Service | Twenty\"],\"iqG74V\":[\"Terms of Service for Twenty.com PBC, including use of Twenty.com, sub-domains, and related services.\"],\"SUr44j\":[\"Thai\"],\"6t7gpr\":[\"Thailand 🇹🇭\"],\"eRjhUK\":[\"Thanks, you're in.\"],\"FjkPYg\":[\"That opened the door to something more powerful. Justin built a custom front end that pulls live data from those systems into a single view, tailored to each role. When a proposal is won, what used to require four separate people manually setting up instances across four different tools now happens in a single click, drawing on data collected in Twenty across the full opportunity lifecycle. It is another shift toward higher-value work for clients.\"],\"8S4psU\":[\"That works until you need to understand the business underneath. Which deals are stuck? Where are leads coming from? What is the close rate? With spreadsheets and a legacy custom CRM that could not keep up, those questions were nearly impossible to answer.\"],\"zXlFuT\":[\"The #1 Open Source CRM for modern teams. Modular, scalable, and built to fit your business.\"],\"G2IgPj\":[\"The bet is\"],\"NT2bSJ\":[\"The bet is paying off\"],\"Xmr/wH\":[\"the business\"],\"Wie492\":[\"The business development team finally had the CRM they had been asking for. Adoption came naturally: their data was already there when they logged in.\"],\"2kHqXc\":[\"The CEO had resisted bringing in a CRM for years. The business development team had no experience using one, and the licensing costs of well-known CRMs like Salesforce or HubSpot were hard to justify without any guarantee of adoption: CRMs are only as good as the maintenance of the data inside them.\"],\"5DpEh7\":[\"The CRM as a\"],\"2sfVd8\":[\"The CRM as a control hub\"],\"XlFsoH\":[\"The early bet on the architecture is holding, and upcoming AI features are expected to make it even more relevant.\"],\"kCUcnD\":[\"The flexibility is just amazing. Literally, there's nothing you cannot do. You can create objects, access everything through the API, pull notes and send them to the portal. Try doing that in HubSpot. No way. It's the true ability to build exactly what's actually needed.\"],\"MaHqAc\":[\"The flexibility is really what made the difference. Our needs evolve very fast. I discover a new need and in two clicks I can address it. That is a real advantage when you are moving quickly.\"],\"Q5iZ9Q\":[\"The flexibility to wire this together, without outside help and without fighting the platform, is what made it possible for a single person to stand up and maintain a connected stack across an entire consultancy.\"],\"l0eUFC\":[\"The full rollout landed in July 2025. Since then, Nine Dots built a Smart Assistant on top of the system, nudging agents with tasks, reminders, and on-demand market analysis. Some agents never open Twenty directly, yet they are powered by it, outperforming peers on manual processes alone. By Q1 2026, Homeseller had recorded its best sales quarter ever.\"],\"SiW1pC\":[\"the future of CRM\"],\"sm10Rg\":[\"The Giant Monolith\"],\"nFB8I1\":[\"The In-house Burden\"],\"ZNzKXV\":[\"The key decision was not to build everything from scratch. Twenty covers the data model, permissions, authentication, and workflow engine, the parts that would have taken months to rebuild, so the team could focus on product-specific logic.\"],\"q1kKLq\":[\"The opportunity\"],\"ZgWQl4\":[\"the overhead\"],\"2NJdyz\":[\"The Problem.\"],\"Q8D9Lf\":[\"the product\"],\"3/wAFg\":[\"The result\"],\"nAWeyi\":[\"The result is a system that fits how AC&T already worked, instead of the other way around.\"],\"tfG/xw\":[\"The right\"],\"nbHA9N\":[\"The right foundation\"],\"omVXTg\":[\"The self-hosted setup means Alternative Partners owns the full stack: no vendor access to their data, no dependency on a SaaS pricing model, full control over how the system evolves. The migration was fast because of AI; the result is durable because the stack is open source.\"],\"1tN3qf\":[\"The shift\"],\"AnGOwN\":[\"The situation\"],\"u0uFxg\":[\"They are the real sales\"],\"53RXLB\":[\"They call it customer loyalty. We call it a very affectionate cage.\"],\"RhmZMe\":[\"They did not just replace a tool. They took back ownership of how their business runs.\"],\"5YzqyT\":[\"They evaluated Salesforce, Zoho, Pipedrive, and SuiteCRM. Each came with the same tradeoffs: too expensive, too rigid, or too generic, and none fixed the underlying problem. They were still renting a structure they did not control.\"],\"6f8QUY\":[\"Timor-Leste 🇹🇱\"],\"2y6W+f\":[\"to rule them all\"],\"DeTupk\":[\"Togo 🇹🇬\"],\"CocxTO\":[\"Tonga 🇹🇴\"],\"5eFktS\":[\"Tool integration\"],\"xv7HSr\":[\"total per month with fixed cost\"],\"hmu++i\":[\"Track amount and close date\"],\"POzmFl\":[\"Track every release with changelogs, highlights and demos of the newest features.\"],\"6vHPh9\":[\"Track relationships, manage pipelines, and take action quickly with an intuitive CRM that helps your team move faster from day one with confidence.\"],\"xwWQ9Q\":[\"Training & Adoption\"],\"MtCqjl\":[\"Training, Adoption & Support\"],\"/ga9kq\":[\"Trinidad & Tobago 🇹🇹\"],\"tdZpCd\":[\"Trust Center\"],\"KtyN0b\":[\"trusted by\"],\"eslLQF\":[\"Try it live\"],\"qhmtws\":[\"Try removing some filters or browse all partners.\"],\"E/hGy3\":[\"Try Twenty Cloud\"],\"D5Kf4t\":[\"Tuesday your team learns that deals with a technical champion close 3x faster. Wednesday you add the field, wire up the scoring, adjust the workflow. By Thursday your agents are acting on it. That feedback loop is the edge. And it only works if the CRM is yours.\"],\"y4UxlS\":[\"Tunisia 🇹🇳\"],\"UIDKnJ\":[\"Turkey 🇹🇷\"],\"Kz91g/\":[\"Turkish\"],\"kdJl4v\":[\"Turkmenistan 🇹🇲\"],\"tSc/a3\":[\"Tuvalu 🇹🇻\"],\"O5dAmW\":[\"Twenty | #1 Open Source CRM\"],\"NalB1c\":[\"Twenty Apps opens the door to building products, not just implementations. For example, we're developing a WhatsApp Business integration that any Twenty's client could get. That's a recurring revenue stream we wouldn't have if we were just configuring someone else's platform.\"],\"q9UWVC\":[\"Twenty Articles — Open Source CRM Insights\"],\"mkTfZ1\":[\"Twenty as the\"],\"+w9xZW\":[\"Twenty as the API backbone of a go-to-market stack\"],\"zj0CA+\":[\"Twenty as the API backbone of a go-to-market stack | Elevate Consulting\"],\"neM1Ol\":[\"Twenty CRM Features — Modern Open Source CRM Platform\"],\"8zCqPL\":[\"Twenty CRM Pricing — Plans from $9 per User per Month\"],\"D05UQH\":[\"Twenty Customers — How Modern Teams Run Their CRM\"],\"0qyMhk\":[\"Twenty gives technical teams the building blocks for a custom CRM that meets complex business needs and quickly adapts as the business evolves.\"],\"jVhq41\":[\"Twenty gives you the kind of flexibility that actually changes what you can offer your clients. The dev experience is clean, the APIs are open, and when something needs to be customized, you can just do it. There's no fighting the platform.\"],\"x/I85y\":[\"Twenty is not only where CRM data lives. It is the API backbone that makes the rest of the stack possible.\"],\"K+zzSQ\":[\"Twenty lets us build a CRM around the business and not the business around the CRM.\"],\"AxT+g4\":[\"Twenty makes it simple. It's clean, intuitive, and built to feel like Notion.\"],\"4SJucz\":[\"Twenty Partners — Certified Open Source CRM Implementers\"],\"X1GHuJ\":[\"Twenty Releases — What's New in the Open Source CRM\"],\"V1lV7B\":[\"Twenty team support\"],\"KsFvUt\":[\"Twenty's certified partners help teams migrate, customise, and operate the open source CRM across regions, languages, and deployment models. Browse profiles and book a call.\"],\"EIU345\":[\"Two-factor authentication\"],\"O+vc/1\":[\"Type of team *\"],\"P+R1Lc\":[\"Typical project\"],\"HqFilh\":[\"UAE 🇦🇪\"],\"+WNTxL\":[\"Uganda 🇺🇬\"],\"uxuy4l\":[\"UI theme\"],\"tNfmmF\":[\"UK 🇬🇧\"],\"z7UkhA\":[\"Ukraine 🇺🇦\"],\"V9+2pH\":[\"Ukrainian\"],\"jqzUyM\":[\"Unavailable\"],\"Hix/m6\":[\"Unified timeline (emails, events, tasks, notes, files)\"],\"NIuIk1\":[\"Unlimited\"],\"aGpTSC\":[\"Up to 5 workspaces\"],\"SPdRRU\":[\"Upfront consulting, scoping, strategy.\"],\"2vanwz\":[\"Upload, rename, preview, and manage files directly on records. Everything stays where it belongs.\"],\"tmwuH9\":[\"Urdu\"],\"huOaG8\":[\"Uruguay 🇺🇾\"],\"RCOibx\":[\"US\"],\"LXHEIS\":[\"USA 🇺🇸\"],\"Roaswv\":[\"User Guide\"],\"3XIgKU\":[\"User roles\"],\"UCUX2+\":[\"User-side rollout & ongoing support.\"],\"FOOEtP\":[\"Uzbekistan 🇺🇿\"],\"CRXL2j\":[\"Vanuatu 🇻🇺\"],\"NNeEYO\":[\"Vatican 🇻🇦\"],\"BWzac4\":[\"Venezuela 🇻🇪\"],\"FlQ1vR\":[\"Vietnam 🇻🇳\"],\"fROFIL\":[\"Vietnamese\"],\"BRBSny\":[\"View \",[\"0\"],\" on LinkedIn\"],\"ITdNGt\":[\"View on LinkedIn\"],\"73lp8c\":[\"View profile\"],\"BAzC1v\":[\"View types\"],\"mHtVst\":[\"Visualize your customers on a map!\"],\"CsHuOr\":[\"VP of Engineering\"],\"uRh799\":[\"VP of Engineering at W3villa Technologies\"],\"w2INie\":[\"VP of Engineering, W3villa Technologies\"],\"s0tU5h\":[\"W3Grads\"],\"R8BueT\":[\"W3villa built W3Grads (w3grads.com), an AI-powered mock interview platform for universities and training institutes, using Twenty as its operational backbone.\"],\"7hHsoV\":[\"W3villa built W3Grads for AI mock interviews at scale, with Twenty as the operational backbone.\"],\"QBOUnd\":[\"W3villa shipped W3Grads on Twenty for AI interviews, scoring, and institution-scale workflows without rebuilding CRM plumbing.\"],\"7q5Vjn\":[\"W3villa Technologies\"],\"ZabLEt\":[\"W3villa Technologies set out to solve it properly, not with a workaround, but with a product.\"],\"3v2ipf\":[\"W3villa used Twenty as a production-grade framework for the data model, permissions, authentication, and workflow engine they would otherwise have rebuilt themselves.\"],\"8CHatv\":[\"We could not submit your application. Please try again in a moment.\"],\"MjWeUE\":[\"We didn't want to patch over the problem. We wanted to build something institutions could rely on at scale, and that meant starting from a foundation solid enough to support the full complexity of what we had in mind.\"],\"d5CWI6\":[\"We're building the #1 Open Source CRM, but we can't do it alone. Join our partner ecosystem and grow with us.\"],\"v1kQyJ\":[\"Webhooks\"],\"ZhnM/K\":[\"Webhooks (Change Data Capture)\"],\"hgDePr\":[\"Website or GitHub\"],\"Lx0cVD\":[\"What an admin can do without writing code.\"],\"Z34FQq\":[\"What convinced Olivier was the flexibility of the platform and where it was headed. Even when initial needs were basic record-keeping, he still needed a custom data model with granular permissions to manage the wide range of NetZero activities. He also needed a system that could adapt quickly to a fast-iteration company.\"],\"phiBjc\":[\"What does Twenty cost?\"],\"WVQaGB\":[\"What is coming in April 2026 is what he has been waiting for: AI-assisted workflow creation, describing what he needs and iterating from there instead of building complex logic from scratch. For a founder who runs the CRM himself, that changes what is realistically possible.\"],\"iOAq7n\":[\"What is next\"],\"tWd6MT\":[\"What is planned is significant. NetZero has a data lake, online forms, and multiple internal systems that he wants to connect to Twenty. The pipes are there; the next step is automations that tie them together.\"],\"aYRqmz\":[\"What this means\"],\"QCHIzm\":[\"What you cover *\"],\"1kfjxX\":[\"Whatever came next had to be something they could own.\"],\"cs6VpJ\":[\"When a student registers via QR at a campus event, the system assigns a plan, generates an interview session, and sends a link. The AI conducts the interview, scores the candidate, and classifies the result. Faculty see where each student stands without manually reviewing every session. Building and iterating on these workflows was faster with AI in the loop.\"],\"I/oPrY\":[\"When the channel is\"],\"JglRo/\":[\"When the channel is the business\"],\"ee4xKk\":[\"When the vendor\"],\"DajeYD\":[\"When the vendor pulled the plug\"],\"X1gdzB\":[\"When your CRM is\"],\"OQ41z8\":[\"When your CRM is the product\"],\"Svuneu\":[\"When your CRM is the product: W3Grads on Twenty | W3villa Technologies\"],\"bGN8u+\":[\"While NetZero still runs a second CRM in parallel for WhatsApp-heavy operations with farmers in Brazil, they expect to migrate all of it to Twenty as features and the ecosystem grow. Already, their structured, multinational pipeline is powered by Twenty.\"],\"DJlSwA\":[\"Why\"],\"4sOVu+\":[\"Why Twenty\"],\"DH7vVZ\":[\"Why Twenty — The Open Source CRM Built to Be Customised\"],\"OKVlnc\":[\"With Twenty, when a new need appears, he can address it himself: no developer required, no support ticket.\"],\"KAB1uP\":[\"with you\"],\"OX5bbs\":[\"Work email *\"],\"woYYQq\":[\"Workflows\"],\"1ie9Dm\":[\"Workflows that\"],\"AzqmMJ\":[\"Workflows that actually get used\"],\"pmUArF\":[\"Workspace\"],\"bwECg/\":[\"Workspace URL, customer references, relevant links…\"],\"zkWmBh\":[\"Yearly\"],\"S6izIJ\":[\"Yemen 🇾🇪\"],\"l75CjT\":[\"Yes\"],\"bo6pUs\":[\"Yes, with our Apps framework. Scaffold an extension with `npx create-twenty-app` and ship custom objects, server-side logic functions, React components that render inside Twenty’s UI, AI skills and agents, views, and navigation, all in TypeScript, deployable to any workspace.\"],\"yIcBW6\":[\"Yes. Every Cloud workspace ships with a native MCP server. Connect your AI assistant via OAuth and it can read and write your CRM data in natural language.\"],\"8xYMYQ\":[\"Yes. Import your data via CSV, or use our API for 50,000+ records. Our partners can handle the full migration for you.\"],\"8m0eN9\":[\"Yes. Twenty is the #1 Open Source CRM on GitHub. You can self-host to fully own your infrastructure, or run it on our managed cloud for a zero-ops setup.\"],\"LJ3sTb\":[\"You don't buy your deployment pipeline off the shelf. You don't rent your data warehouse from a vendor who decides the schema. You build it, you own it, you iterate on it every week. CRM is going the same way. The teams that treat it as infrastructure they own will compound an advantage every quarter.\"],\"SfJVcK\":[\"Your checkout is complete. Follow the steps below to copy your license key into your Twenty instance.\"],\"krHgj1\":[\"Your enterprise key\"],\"+dxjCu\":[\"Your enterprise license has been activated successfully.\"],\"pEQiCY\":[\"Your name *\"],\"fQATWn\":[\"Your network, fully mapped.\"],\"CgGN5T\":[\"Zambia 🇿🇲\"],\"wHjFOw\":[\"Zero\"],\"xlFvlS\":[\"Zero manual work\"],\"ZvEoMq\":[\"Zero manual work at the core. Full automation. Built on Twenty.\"],\"TT3YXb\":[\"Zimbabwe 🇿🇼\"]}")as Messages;
\ No newline at end of file
diff --git a/packages/twenty-website/src/locales/generated/es-ES.ts b/packages/twenty-website/src/locales/generated/es-ES.ts
index bc0c46d51d6..5e8f3e66465 100644
--- a/packages/twenty-website/src/locales/generated/es-ES.ts
+++ b/packages/twenty-website/src/locales/generated/es-ES.ts
@@ -1 +1 @@
-/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"BUIzFF\":[\"-33% de descuento\"],\"q0ur5+\":[[\"0\"],\" | Caso de cliente de Twenty\"],\"NSO/FI\":[[\"hourly\"],\"/hr\"],\"2Ha6K9\":[[\"labelText\"],\" filter, \",[\"0\"],\" selected, click to open\"],\"0Xh9/0\":[[\"labelText\"],\" filter, click to open\"],\"icND7o\":[\"/ asiento / mes - facturado anualmente\"],\"XUqxHW\":[\"/usuario/mes\"],\"ojimXJ\":[\"© 2026 – Twenty\"],\"2ygf/L\":[\"← Back\"],\"9j/bUt\":[\"← Twenty partners\"],\"foGG8A\":[\"+$105/usuario por mes\"],\"Bsq9GJ\":[\"+$35/usuario por mes\"],\"mWSpW5\":[\"+$5/usuario por mes\"],\"JIwDAd\":[\"+$7000/organización al mes\"],\"yVr18d\":[\"+$75/usuario al mes\\n¡Pásate a Enterprise!\"],\"iK+ikF\":[\"+10k más\"],\"nRtVCK\":[\"+20% del gasto neto\\n+$75/usuario al mes\\n¡Pásate a Enterprise!\"],\"Uqm/0u\":[\"<0>...with AI that actually0><1/><2>helps you2><3>work faster3>\"],\"ZKcQvG\":[\"<0>A CRM for teams0><1/><2>that2><3>move fast3>\"],\"2Avwos\":[\"<0>A custom CRM gives your org an edge,0><1>but building one1><2>comes with2><3>tradeoffs3>\"],\"GIqRh7\":[\"<0>A demo worth a0><1/><2>thousand words2>\"],\"h5K9X+\":[\"<0>A modern CRM with0><1>an intuitive interface1>\"],\"YXQqRD\":[\"<0>Assemble, iterate and adapt a robust CRM,0><1>that's quick to flex1>\"],\"XnXDNI\":[\"<0>Become0><1/><2>our partner2>\"],\"Tp01iS\":[\"<0>Begin with production-grade0><1>building blocks1>\"],\"LCx6+8\":[\"<0>Build a CRM your competitors0><1>can't buy.1>\"],\"lt0XAM\":[\"<0>Build it in an afternoon.0><1>AI made the gap that small.1>\"],\"y8AZXw\":[\"<0>Build your Enterprise CRM0><1>at AI Speed1>\"],\"OGcRSu\":[\"<0>Continue iteration0><1>without friction1>\"],\"2fzdgb\":[\"<0>CRM was a ledger.0><1>AI turned it into an operating system.1>\"],\"gx6Utt\":[\"<0>Dev teams power<1/>company-wide0><2/><3>change with Twenty3>\"],\"FyjPh/\":[\"<0>Differentiation now0><1>lives in the code you own.1>\"],\"FymD+X\":[\"<0>Enterprise0><1>activation1>\"],\"V7uulz\":[\"<0>Everything you need,0><1>out of the box1>\"],\"IvtaRX\":[\"<0>Find your0><1>Twenty partner1>\"],\"f36X9W\":[\"<0>Go the extra mile0><1>with no-code1>\"],\"NUko9S\":[\"<0>How teams0><1/><2>built with Twenty2>\"],\"WCsM/Q\":[\"<0>Latest0><1/><2>Releases2>\"],\"1LHR8V\":[\"<0>Make your GTM team happy0><1/><2>with2><3>a CRM they'll love3>\"],\"K6xBTA\":[\"<0>Ready to build0><1/><2>your own story?2>\"],\"pddHmc\":[\"<0>Ready to grow0><1/><2>with Twenty?2>\"],\"mzlPTg\":[\"<0>See how teams0><1/><2>build2><3>on Twenty3>\"],\"7D+4tN\":[\"<0>Simple0><1/><2>Pricing2>\"],\"pj2iec\":[\"<0>Stay in control with our0><1>open-source software1>\"],\"Oc/cFZ\":[\"<0>Stop fighting custom.0><1/><2>Start building, with Twenty2>\"],\"zykz1r\":[\"<0>The future of CRM is built,0><1>not bought.1>\"],\"6LusuM\":[\"<0>Trust the n°1 CRM,0><1>or not!1>\"],\"be30i9\":[\"$0\"],\"6inRXo\":[\"$1/ejecución de orquestación/organización\\n+$75/usuario al mes\\n¡Pásate a Enterprise!\"],\"EkIZkY\":[\"$19\"],\"8r6DgO\":[\"$9\"],\"EHNAf2\":[\"1 clic\"],\"qvNspm\":[\"1‑800‑YES‑SOFTWARE\"],\"6WQdu8\":[\"100 por minuto\"],\"uuKUqZ\":[\"11 grupos\\nde permisos\"],\"2szX5S\":[\"150\"],\"SaSafJ\":[\"150 horas\"],\"9ntyY8\":[\"150 h\"],\"2z1Znr\":[\"Contrato de 2 años\"],\"l6Vx4q\":[\"2,000+\"],\"FKcV/y\":[\"2025\"],\"PJgfBS\":[\"3\"],\"BL47wE\":[\"3 contratos de 2 años\\n-33% de descuento\"],\"/jgC+9\":[\"3 líneas de producto\"],\"7SJhyh\":[\"30+\"],\"Pdl2UE\":[\"4 herramientas\"],\"2ScEtE\":[\"5 créditos de flujo de trabajo/mes incluidos\"],\"hIKxCy\":[\"5,000\"],\"Z2TH0F\":[\"50 por minuto\"],\"CiRGZ8\":[\"50 créditos de flujo de trabajo/año incluidos\"],\"tZvajW\":[\"6 flujos de trabajo\"],\"AQPMc4\":[\"90%\"],\"fHxYPM\":[\"90%+\"],\"1GAcp6\":[\"Un negocio que no encaja en una\"],\"NLSM5L\":[\"Un negocio que no encaja en una plantilla\"],\"GSM5RA\":[\"Un CRM que\"],\"diWAWP\":[\"Un CRM que crece contigo\"],\"och6cp\":[\"Un CRM que crece contigo | NetZero y Twenty\"],\"EewhZt\":[\"Un CRM que\"],\"muZzEA\":[\"Un CRM que realmente les pertenece\"],\"GoyOzl\":[\"Una plataforma lista para\"],\"rxMguZ\":[\"Una plataforma lista para crecer\"],\"R5hTKX\":[\"Una agencia inmobiliaria en WhatsApp\"],\"hwoGni\":[\"Una agencia inmobiliaria en WhatsApp creó un CRM a su alrededor\"],\"WjUlJr\":[\"Que un tema retro sea un complemento de pago es, de algún modo, la parte más creíble.\"],\"r9Msiv\":[\"Hace un año, personalizar tu CRM significaba contratar a un consultor de Salesforce, aprender Apex y esperar meses. La brecha entre \\\"lo quiero\\\" y \\\"ya está en producción\\\" se medía en trimestres y facturas. Así que la gente se conformaba. Doblaban su proceso para adaptarlo a la herramienta y lo llamaban adopción.\"],\"c0RR2h\":[\"Unas 150 horas al mes ahorradas en operaciones manuales. Métricas en tiempo real para el propietario del negocio. Preparación para crecer sin añadir personal operativo. Un equipo que puede responder preguntas que antes llevaban días en responder.\"],\"41o3VS\":[\"AC&T y Flycoder pasaron de una exportación de un proveedor inactivo a Twenty autoalojado, con más del 90% de reducción en el costo del CRM y control total.\"],\"TuJiQF\":[\"AC&T Education Migration\"],\"yHUdh6\":[\"AC&T Education Migration (actimmi.com) es una agencia educativa en Australia. Ayudan a estudiantes internacionales con solicitudes a instituciones educativas y visas. Habían estado en un CRM anterior hasta que el proveedor cerró el sistema, dejando solo una exportación CSV.\"],\"MPzy5R\":[\"AC&T pasó a una instancia de Twenty autoalojada sin riesgo del proveedor, sin migraciones forzadas y con costos de CRM reducidos en más del 90%.\"],\"J+A83M\":[\"AC&T reemplazó un CRM de proveedor clausurado por Twenty autoalojado y redujo los costos del CRM en más del 90%.\"],\"muhZ+X\":[\"Activando tu licencia Enterprise…\"],\"Yyn/dP\":[\"Active filters\"],\"TDMykO\":[\"realmente se use\"],\"+/fX0G\":[\"realmente poseen\"],\"woOp+c\":[\"Añade objetos y campos\"],\"Y2K3rp\":[\"Complementos\"],\"Op7nVF\":[\"Adopción\"],\"TeMRC2\":[\"avanzado\"],\"2050Pj\":[\"Advisory & Discovery\"],\"QjSFuI\":[\"Afghanistan 🇦🇫\"],\"StqEz0\":[\"Africa\"],\"NmHsVh\":[\"Agency\"],\"vZKKhf\":[\"Aggregate, bar, line, and pie widgets\"],\"rp2omj\":[\"Agroindustria\"],\"jiGK6+\":[\"IA (Einstein)\"],\"aUn7Ps\":[\"IA y automatizaciones\"],\"HbXHSp\":[\"Agentes de IA\"],\"WGXwzu\":[\"Los agentes de IA están empezando a redactar mensajes de prospección, puntuar prospectos, investigar cuentas, escribir seguimientos y actualizar las etapas de los acuerdos. Cada una de estas acciones lee y escribe en el CRM. El marcador se convirtió en el libro de jugadas. La base de datos se convirtió en el cerebro.\"],\"Rsxdfy\":[\"Agentes de IA con habilidades personalizadas\"],\"TfV/y9\":[\"Chat de IA, ajustes y registros en paneles laterales para un acceso rápido en una sola pantalla.\"],\"R+bwFB\":[\"IA para iteraciones rápidas\"],\"+pgY/C\":[\"IA en el\"],\"A6v5aI\":[\"IA en el flujo de migración\"],\"t97j+F\":[\"Asistido por IA\"],\"7xlBwk\":[\"Albania 🇦🇱\"],\"EszGq4\":[\"Algeria 🇩🇿\"],\"LIGwFL\":[\"Alternative Partners\"],\"GDVvyT\":[\"Alternative Partners es una firma de consultoría que pasó de Salesforce a una instancia de Twenty autoalojada. Benjamin Reynolds lideró la migración. Ya se había convertido en un experto en Twenty al implementarlo para uno de los primeros clientes en la nube de Twenty.\"],\"CCrRuT\":[\"Alternative Partners reemplazó Salesforce por Twenty autoalojado, usando IA agéntica para comprimir el trabajo de migración.\"],\"UIu18Y\":[\"Alternative Partners utilizó IA agéntica para comprimir lo que normalmente serían semanas de trabajo de migración de Salesforce en algo que una sola persona pudiera supervisar.\"],\"iFLhqi\":[\"Amrendra Pratap Singh\"],\"Sbiivs\":[\"Andorra 🇦🇩\"],\"Uv5eaJ\":[\"Angola 🇦🇴\"],\"qKANz3\":[\"Antigua & Barbuda 🇦🇬\"],\"aGCcXe\":[\"¿Alguna pregunta?\"],\"lgSvgF\":[\"Anything else we should know?\"],\"pkMjbA\":[\"Anything that needs a developer.\"],\"dYZUP3\":[\"Anything that needs devops skills.\"],\"AfiWqP\":[\"APAC\"],\"/AMVjF\":[\"Tutoriales de APEX\"],\"OZtEcz\":[\"API\"],\"yKBF3l\":[\"Acceso a la API\"],\"GpYSXo\":[\"Espina dorsal de la API\"],\"30KnZB\":[\"Llamadas a la API\"],\"42FQ3y\":[\"API primero\"],\"azQMHP\":[\"Las APIs se pagan aparte. La simplicidad tiene un precio.\"],\"MqJvvH\":[\"APIs, SDKs y webhooks para ampliar Twenty y lanzar aplicaciones sobre los datos de tu CRM.\"],\"I1Z4AM\":[\"Solicita para crear\"],\"zX3HUD\":[\"Apply to join the Twenty certified partner ecosystem.\"],\"8HV3WN\":[\"Arabic\"],\"uicv6Z\":[\"Arquitectura\"],\"fT9xVz\":[\"Argentina 🇦🇷\"],\"3KxGep\":[\"Armenia 🇦🇲\"],\"Sfa0xD\":[\"a su alrededor\"],\"S+Q+1d\":[\"Ask questions, automate tasks, and get insights with AI that understands your data and helps you move faster every day, end to end across teams.\"],\"v7zTZl\":[\"Asigna responsables y fechas de vencimiento\"],\"4/b98B\":[\"en el núcleo\"],\"fxL/Km\":[\"Archivos adjuntos sin caos.\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"tw0/s1\":[\"Australia 🇦🇺\"],\"4cf5s+\":[\"Austria 🇦🇹\"],\"FFv0Vh\":[\"Automatización\"],\"SJ7WSP\":[\"¡Disponible en YouTube!\"],\"8d+jRc\":[\"Azerbaijan 🇦🇿\"],\"iH8pgl\":[\"Volver\"],\"wIoAQo\":[\"Bahamas 🇧🇸\"],\"Rhju1T\":[\"Bahrain 🇧🇭\"],\"LxzgmZ\":[\"Bangladesh 🇧🇩\"],\"rtcPS0\":[\"Barbados 🇧🇧\"],\"RownlY\":[\"Based in\"],\"jQLfIW\":[\"Porque, al parecer, la privacidad se siente más premium con un recargo.\"],\"qEQv1F\":[\"Como todo está construido sobre la base abierta de Twenty, Flycoder pudo conectar la lógica exacta que AC&T necesitaba sin pelear con la plataforma.\"],\"uIG0OH\":[\"Como la base es sólida, W3Grads está diseñado para lo que viene, incluida una capa de pagos para futuros planes de entrevistas de pago y escala nacional sin reescrituras estructurales.\"],\"JGM+JO\":[\"Porque la verdadera orquestación significa poner un signo de dólar en cada entrada dramática.\"],\"PKMHNe\":[\"¡Conviértete en un genio!\"],\"6ZCRfT\":[\"Conviértete en socio\"],\"7ysT6Z\":[\"Become a Twenty Partner — Application\"],\"0TCnEf\":[\"Belarus 🇧🇾\"],\"qblg4t\":[\"Belgium 🇧🇪\"],\"pSF7xM\":[\"Belize 🇧🇿\"],\"Hds3Bq\":[\"Bengali\"],\"cTWkw3\":[\"Benin 🇧🇯\"],\"SYfuGP\":[\"Benjamin Reynolds\"],\"YfjrMq\":[\"Bertrams\"],\"mzTjnf\":[\"¡Mejor que Liquid Glass!\"],\"GvGk4g\":[\"Más allá\"],\"OPnz/X\":[\"Bhutan 🇧🇹\"],\"TVJDFA\":[\"Bolivia 🇧🇴\"],\"MkvsWx\":[\"Book a call\"],\"Wzdd8u\":[\"Bosnia & Herzegovina 🇧🇦\"],\"wtNsrt\":[\"Botswana 🇧🇼\"],\"yCaNfF\":[\"Brazil 🇧🇷\"],\"bxWnM1\":[\"romper operaciones\"],\"fYFNV7\":[\"Browse Twenty's certified partner network: regional coverage, languages, deployment expertise, and direct booking links.\"],\"VX4eI/\":[\"Brunei 🇧🇳\"],\"sbr0X/\":[\"Build a dashboard of pipeline by stage\"],\"uetyzD\":[\"Build a pipeline board grouped by stage\"],\"Utc5RF\":[\"Crea paneles personalizados a partir de datos de CRM en tiempo real. Agrupa cualquier cosa — acuerdos, cuentas, actividad — en gráficos que tu equipo realmente consulte.\"],\"e1u+Zh\":[\"Construye sobre una plataforma abierta\"],\"/ETeLn\":[\"construyó un\"],\"SoAKmY\":[\"Construido para la velocidad\"],\"sdItv6\":[\"Bulgaria 🇧🇬\"],\"dNnRlc\":[\"Burkina Faso 🇧🇫\"],\"j8RGrG\":[\"Quemados por el bloqueo del proveedor, AC&T construyó un CRM del que realmente son dueños | Twenty\"],\"jtdtLa\":[\"Burundi 🇧🇮\"],\"L40Ae7\":[\"Calendar / booking link\"],\"4yFkf9\":[\"Cambodia 🇰🇭\"],\"AvRzYu\":[\"Cameroon 🇨🇲\"],\"wCALve\":[\"¿Pueden los desarrolladores ampliar Twenty con código?\"],\"6mytgb\":[\"¿Puedo migrar desde Salesforce o HubSpot?\"],\"nEOTNi\":[\"Canada 🇨🇦\"],\"hRO6uK\":[\"Cape Verde 🇨🇻\"],\"M1RLfx\":[\"Catalan\"],\"NUrY9o\":[\"Categories\"],\"dBApoS\":[\"Central African Republic 🇨🇫\"],\"iI3Dq9\":[\"Chad 🇹🇩\"],\"2D9CbR\":[\"Ver más complementos\"],\"2BY3So\":[\"Chile 🇨🇱\"],\"zG6t8U\":[\"China 🇨🇳\"],\"h1IXFK\":[\"Chinese\"],\"3wV73y\":[\"City\"],\"ZbCD7v\":[\"Lo clásico nunca muere. Solo se extiende una vez más.\"],\"u8JHrO\":[\"Clear filters\"],\"yz7wBu\":[\"Close\"],\"L/LPQZ\":[\"Cloud Pro cuesta $9/usuario/mes (anual). Organization cuesta $19/usuario/mes y desbloquea SSO y permisos a nivel de fila para equipos que necesitan un control de acceso más fino.\"],\"WYgF8M\":[\"Cloud Pro empieza en $9/usuario/mes con objetos personalizados ilimitados. Aloja tú mismo el núcleo de código abierto gratis o actualiza a Organization para SSO y permisos a nivel de fila.\"],\"1YncLF\":[\"Cofundador en NetZero\"],\"vWaYWP\":[\"Cofundador, NetZero\"],\"dcLsG5\":[\"Colombia 🇨🇴\"],\"b5bnuN\":[\"Asignación de columna a campo (incluyendo relaciones)\"],\"ofoEsM\":[\"¡Próximamente!\"],\"KGD9Kt\":[\"Licencia comercial (sin obligaciones AGPL)\"],\"OnPROL\":[\"Commercials\"],\"chL5IG\":[\"Comunidad\"],\"8CLnho\":[\"Soporte de la comunidad\"],\"RxpseA\":[\"Comoros 🇰🇲\"],\"SHjhDC\":[\"Empresa o marca *\"],\"P/f7ez\":[\"Completa la activación de tu licencia Enterprise de Twenty autoalojada.\"],\"Fkb+LW\":[\"Compón tu CRM y tus aplicaciones internas con un único kit de extensibilidad.\"],\"kD7ZGH\":[\"Compón tu CRM y tus aplicaciones internas con un único kit de extensibilidad. Modelo de datos, diseño y automatización.\"],\"2DQw7/\":[\"Congo 🇨🇬\"],\"iSLIjg\":[\"Conectar\"],\"90KBr0\":[\"Conecta cuentas de Google o Microsoft\"],\"xgrBCK\":[\"Conecta cuentas de Google o Microsoft y ve automáticamente los correos y eventos vinculados a los registros de CRM.\"],\"MVrQxI\":[\"Conectado vía API\"],\"cfAG43\":[\"Consultoría\"],\"GsUBlG\":[\"Contact \",[\"partnerName\"]],\"Oii3vg\":[\"Contactos y Empresas\"],\"24qVhV\":[\"El contexto vive con el registro.\"],\"+Uepfb\":[\"Control\"],\"VOpE1H\":[\"centro de control\"],\"sTIhSj\":[\"Control sin\"],\"wH1xmY\":[\"Control sin fricción\"],\"Bj7igG\":[\"Control sin la sobrecarga\"],\"PiH3UR\":[\"¡Copiado!\"],\"he3ygx\":[\"Copiar\"],\"7qTWwB\":[\"Copia la clave de Enterprise de arriba.\"],\"PXnj76\":[\"Copia esta clave y pégala en la configuración de tu instancia autoalojada de Twenty.\"],\"FapWIq\":[\"Funciones básicas\"],\"Al/blj\":[\"Costa Rica 🇨🇷\"],\"JRK+HF\":[\"Costos reducidos en más de\"],\"cRA2/z\":[\"Country *\"],\"Xn2Nlq\":[\"Crea un flujo de trabajo\"],\"B9nLrl\":[\"Crea aplicaciones en Twenty\"],\"yAL7FY\":[\"Crea aplicaciones personalizadas\"],\"oS1RiS\":[\"Crea tareas desde los registros\"],\"D3S5+x\":[\"Crea tareas, asigna responsables y adjunta notas detalladas directamente desde cualquier registro. Sin cambiar de pestaña, sin perder el contexto.\"],\"MSlbwg\":[\"CRM\"],\"NLgmM4\":[\"CRM audit · Requirements · Process mapping · ROI · RevOps · Vendor selection\"],\"Y44Xsf\":[\"Los costos del CRM cayeron más de un 90%. La carga manual ligada al sistema antiguo desapareció. Por primera vez, AC&T tiene un CRM que no volverán a perder.\"],\"wDasLa\":[\"Ingeniero de CRM\"],\"DqkzNV\":[\"Ingeniero de CRM, AC&T Education Migration\"],\"b7vNti\":[\"El CRM era una base de datos que rellenabas los viernes. La IA lo convirtió en el sistema que impulsa tu salida al mercado. Para diferenciarte, tienes que construir lo que tus competidores no pueden comprar.\"],\"OACAVp\":[\"Croatia 🇭🇷\"],\"I6FFSA\":[\"Exportación CSV en cualquier momento\"],\"8RWevB\":[\"Importación y exportación CSV\"],\"s+QiQi\":[\"Flujo de importación CSV\"],\"O2UtEV\":[\"Cuba 🇨🇺\"],\"lh6aPn\":[\"Modelos de IA personalizados\"],\"OaTurC\":[\"Aplicaciones personalizadas\"],\"TcUCTv\":[\"Custom Apps · Scripts · AI/agent integrations\"],\"yBSEtR\":[\"Etapas de negociación personalizadas para tu proceso\"],\"L+b7SB\":[\"Etapas de acuerdos personalizadas, tableros de arrastrar y soltar y seguimiento en tiempo real para que tu pipeline refleje la realidad.\"],\"DUnke3\":[\"Custom Development\"],\"GAD3Dx\":[\"Dominio personalizado\"],\"Vz1Vq2\":[\"Dominio personalizado (crm.yourco.com)\"],\"oPwQt4\":[\"Campos personalizados\"],\"U1RB/7\":[\"Campos y relaciones personalizados\"],\"WGKb6T\":[\"Campos personalizados, relaciones y una cronología unificada para cada contacto y empresa en tu espacio de trabajo.\"],\"prIqWa\":[\"Diseño personalizado\"],\"8skTDV\":[\"Objetos personalizados\"],\"AbyZbl\":[\"Vistas personalizadas\"],\"YjXLAQ\":[\"Historias de clientes\"],\"NihQNk\":[\"Clientes\"],\"qqLY+j\":[\"Personalización\"],\"GRfLAg\":[\"Personalizaciones\"],\"Pj5fGG\":[\"Cyprus 🇨🇾\"],\"w9VTXG\":[\"Czech\"],\"xkuHM6\":[\"Czech Republic 🇨🇿\"],\"4RLD4p\":[\"Mensajes diarios\"],\"Fo2vDn\":[\"Danish\"],\"V0kvgB\":[\"Importación de datos\"],\"5cNMFz\":[\"Modelo de datos\"],\"iq2WTm\":[\"Data modeling · Migrations · No-code workflows · Dashboards · SSO/SCIM · Integrations\"],\"/TlpVf\":[\"Acuerdos que se mueven solos.\"],\"H1UtjM\":[\"Denmark 🇩🇰\"],\"n+SX4g\":[\"Desarrolladores\"],\"Wuqvfz\":[\"Director de Digital e Información, Elevate Consulting\"],\"e7R9Zi\":[\"Discover the newest features and improvements in Twenty,<0/>the #1 Open Source CRM.\"],\"W+b/DF\":[\"Descubre qué hay de nuevo\"],\"rHLwDO\":[\"Djibouti 🇩🇯\"],\"Zjjbne\":[\"¿Necesito un desarrollador para personalizar Twenty?\"],\"Zx22Ih\":[\"¿Twenty funciona con Claude, ChatGPT y Cursor?\"],\"bMDnQR\":[\"Dominica 🇩🇲\"],\"ufcRA6\":[\"Dominican Republic 🇩🇴\"],\"pOLPPB\":[\"No te encierres en el ecosistema de otra persona. La experiencia de desarrollador de Twenty se parece al software normal, con configuración local, datos reales, pruebas en vivo y sin herramientas propietarias.\"],\"HDR0en\":[\"DR Congo 🇨🇩\"],\"mzedFr\":[\"Draft a workflow for an email sequence\"],\"fPma12\":[\"Arrastra y suelta acuerdos entre etapas\"],\"KIjvtr\":[\"Dutch\"],\"6r6pDf\":[\"e.g. React, Postgres, n8n…\"],\"hEtClO\":[\"Ecuador 🇪🇨\"],\"4CJ4xV\":[\"EdTech\"],\"aqxYLv\":[\"Educación\"],\"OAdXUT\":[\"Egypt 🇪🇬\"],\"2xK+An\":[\"El Salvador 🇸🇻\"],\"1wTjWx\":[\"Elevate Consulting es una consultora de gestión con sede en Canadá. Cuando Justin Beadle, Director de Digital e Información, se incorporó, la empresa funcionaba completamente con documentos de Word, hojas de cálculo de Excel, notas adhesivas, correos electrónicos y dependencia de las personas. No había CRM, ni herramientas accesibles por API, solo un remiendo que intentaba reemplazar una única fuente de verdad.\"],\"2THY70\":[\"Elevate Consulting usa Twenty como la espina dorsal de API que conecta la facturación, Teams, la asignación de recursos y un front-end personalizado alrededor de los datos de clientes y oportunidades.\"],\"wiTeYI\":[\"El CEO de Elevate quedó tan impresionado con Twenty que empezó a recomendarlo a los clientes antes de que la configuración interna estuviera completa. El equipo está explorando llevar Twenty a proyectos de clientes como parte de su práctica de consultoría, incluso como backend para productos hechos a medida según necesidades operativas específicas.\"],\"FNyrb0\":[\"Correo y Calendario\"],\"AoN898\":[\"Correo y chat\"],\"ObCvfI\":[\"Compartir correos\"],\"hfqiVr\":[\"Actividad de correo/calendario en cada registro\"],\"XGd8Wo\":[\"Correos y Calendario\"],\"o4/9l1\":[\"Correos y eventos vinculados a registros del CRM\"],\"Qpn/bX\":[\"Cifra tus datos\"],\"Iy8Gze\":[\"Rotación de claves de cifrado\"],\"lYGfRP\":[\"English\"],\"Ijh+h+\":[\"Disfruta de personalización ilimitada usando las herramientas de codificación con IA que ya te encantan. Adapta tu CRM para que se ajuste a la forma en que tu negocio crece y gana.\"],\"xoqD/n\":[\"Introduce una dirección de correo válida.\"],\"/OVUD6\":[\"Enter a valid URL (starting with http:// or https://).\"],\"NTskGY\":[\"Activación de Enterprise | Twenty\"],\"3dQ6zJ\":[\"Entornos\"],\"c0nqfC\":[\"Equatorial Guinea 🇬🇶\"],\"4DIpFY\":[\"Eritrea 🇪🇷\"],\"JIhNLR\":[\"Estonia 🇪🇪\"],\"8yXuJ9\":[\"Eswatini 🇸🇿\"],\"rktGGp\":[\"Ethiopia 🇪🇹\"],\"rQqP1P\":[\"Europe\"],\"IhKZhp\":[\"Hasta el material de formación es una función digna de celebrar.\"],\"sQP1sF\":[\"Cada nuevo lanzamiento de Twenty, el CRM de código abierto n.º 1, con registros de cambios, demos y los aspectos destacados que más importan a los equipos.\"],\"rkZTD7\":[\"Cada conversación, en el registro correcto.\"],\"kz/8m8\":[\"Todo lo de Pro\"],\"zoNk7e\":[\"Todo se actualiza en tiempo real, con un chat de IA siempre listo para ayudarte a moverte más rápido.\"],\"57gG1f\":[\"Experimenta granularidad de nivel empresarial, empezando por un undécimo permiso.\"],\"uZRQi+\":[\"Expertise & experience\"],\"JTM5zS\":[\"Explora historias de clientes\"],\"weFouS\":[\"¡Ejecución extendida!\"],\"akLvep\":[\"Interfaz moderna y familiar\"],\"gKNP7S\":[\"Farsi\"],\"abO45l\":[\"Vía rápida hacia la acción\"],\"e6BgMV\":[\"Permisos a nivel de campo\"],\"z+q1Th\":[\"Fiji 🇫🇯\"],\"sER+bs\":[\"Archivos\"],\"bOidm7\":[\"Filter partners\"],\"iabLgo\":[\"Métricas filtradas de cualquier objeto\"],\"sRUAXp\":[\"Encuentra un socio certificado de Twenty para migrar, personalizar y operar tu CRM de código abierto, o únete al ecosistema y haz crecer tu práctica con nosotros.\"],\"TJ7HQl\":[\"Encuentra un socio\"],\"MD032e\":[\"Encuentra un socio de Twenty\"],\"YeWg37\":[\"Find a Twenty Partner — Certified Open Source CRM Implementers\"],\"wHyJkT\":[\"Encuentra al socio adecuado para implementar, personalizar y adaptar Twenty a tu equipo.\"],\"9V48qi\":[\"Finland 🇫🇮\"],\"USZ2N6\":[\"Finnish\"],\"PHM5wp\":[\"Flexibilidad\"],\"HBJ0P5\":[\"Orquestación\\nde flujos\"],\"obrJBN\":[\"Vuela por tu espacio de trabajo con atajos y tiempos de carga cortos.\"],\"HjFq2b\":[\"Flycoder, un socio de desarrollo full-stack, les ayudó a configurar Twenty como una instancia autoalojada moldeada según cómo AC&T realmente opera. El modelo de datos se centra en los estudiantes, no en un pipeline genérico de contactos y acuerdos. Los estados se actualizan automáticamente: un flujo de trabajo se ejecuta cada noche para mantener actualizados los registros de inscripción. Los recordatorios de correo automatizados cubren fechas importantes. Agregar un nuevo registro toma menos de un minuto.\"],\"1SL9ZF\":[\"Céntrate en el caso de uso, no en la\"],\"P5E+kT\":[\"Céntrate en el caso de uso, no en la infraestructura\"],\"wdVyxi\":[\"Importación de carpetas/etiquetas\"],\"CKQ0za\":[\"Para una empresa que antes funcionaba con notas adhesivas, esto es más que una mejora. Es una transformación completa.\"],\"yAJC9c\":[\"Durante veinte años, CRM significó lo mismo: un lugar para registrar llamadas, seguir acuerdos y sacar informes el viernes. El trabajo real ocurría en la cabeza de las personas, en hilos de Slack, en conversaciones de pasillo. El CRM llevaba la cuenta. Nadie esperaba más de él.\"],\"wSoqhC\":[\"base\"],\"UCoxP5\":[\"Fundador, Nine Dots Ventures\"],\"IPaRlc\":[\"Fundador, Wintactix\"],\"671GY5\":[\"France 🇫🇷\"],\"tUgSXd\":[\"¡Gratis para ti!\"],\"nLC6tu\":[\"French\"],\"weRlb1\":[\"from \",[\"minBudget\"]],\"Iuxc00\":[\"De CSV a CRM en minutos.\"],\"yDeZSV\":[\"De documentos a\"],\"emeKZ7\":[\"De documentos a APIs abiertas\"],\"CMqgta\":[\"De Salesforce a\"],\"kl+hEJ\":[\"De Salesforce a Twenty autohospedado\"],\"syU/BD\":[\"De Salesforce a Twenty autoalojado, impulsado por IA | Alternative Partners\"],\"TH5XjF\":[\"De simple a\"],\"Lf7cb3\":[\"De simple a avanzado\"],\"m1I5TY\":[\"Historial de comunicación completo en un solo lugar\"],\"wXgKOm\":[\"Personalización completa\"],\"YZ7Q3Z\":[\"Propiedad total\"],\"hdxwWi\":[\"Totalmente personalizable\"],\"//hrfs\":[\"Gabon 🇬🇦\"],\"yau9J6\":[\"Gambia 🇬🇲\"],\"S84RWl\":[\"Generate tasks for my top 10 accounts\"],\"GOmD9p\":[\"Georgia 🇬🇪\"],\"DDcvSo\":[\"German\"],\"XcPIuI\":[\"Germany 🇩🇪\"],\"ZDIydz\":[\"Comenzar\"],\"xyKSqi\":[\"Ghana 🇬🇭\"],\"Ay/vbT\":[\"¡Buena elección!\"],\"+tDN2S\":[\"Greece 🇬🇷\"],\"CZXzs4\":[\"Greek\"],\"DDgHcm\":[\"Grenada 🇬🇩\"],\"IsZ6P7\":[\"crecer\"],\"MCLWq4\":[\"Crece con una base flexible\"],\"XpCing\":[\"crece\"],\"M/8CC1\":[\"Guatemala 🇬🇹\"],\"UZbq7J\":[\"Guinea 🇬🇳\"],\"vtpxPx\":[\"Guinea-Bissau 🇬🇼\"],\"GT8Ua2\":[\"Guyana 🇬🇾\"],\"5BLiJj\":[\"Haiti 🇭🇹\"],\"Xf5EJg\":[\"Generador de semitonos\"],\"DHC85F\":[\"Generador de Semitonos | Twenty\"],\"c3XJ18\":[\"Ayuda\"],\"CRzGla\":[\"Centro de ayuda\"],\"LiWOgh\":[\"Hey, I'm interested in meeting. Here's my project:\"],\"tGjibo\":[\"Hindi\"],\"qfSbUb\":[\"Su enfoque fue poco convencional. En lugar de mapear campos manualmente, crear scripts de transformaciones y validar datos paso a paso, entregó el trabajo a herramientas de IA agéntica con un briefing: dónde viven los datos, el repositorio de GitHub de la plataforma de destino y el despliegue en Railway. Empezar, y solo volver si algo se rompe más allá de una corrección con un 70% de confianza.\"],\"i0qMbr\":[\"Inicio\"],\"CtU7yU\":[\"Homeseller\"],\"KYnPnU\":[\"Homeseller es una agencia inmobiliaria de alto volumen en Singapur, fundada por uno de los agentes de bienes raíces con mejor rendimiento del país. Toda la operación funciona en WhatsApp: sin correo, sin calendarios, solo chats grupales, miles de ellos, con clientes, agentes y prospectos juntos.\"],\"v6cmMq\":[\"Homeseller mantuvo sus hábitos. WhatsApp siguió siendo WhatsApp. Lo que cambió es que todo lo que fluye por esas conversaciones ahora aterriza en un sistema estructurado, rastreado, clasificado y visible en tiempo real.\"],\"xaIV9m\":[\"Homeseller, WhatsApp y un CRM construido alrededor del negocio | Nine Dots y Twenty\"],\"zbfmqm\":[\"Honduras 🇭🇳\"],\"mqX9AX\":[\"Hosting & Infrastructure\"],\"SHZNBm\":[\"Hourly\"],\"Ivq5+7\":[\"Hourly rate\"],\"XnFo3G\":[\"Cómo AC&T Education Migration y Flycoder reemplazaron un CRM de proveedor clausurado por Twenty autoalojado, con más del 90% menos de costo y propiedad total.\"],\"PYi0f6\":[\"Cómo Alternative Partners migró de Salesforce a Twenty autoalojado usando IA agéntica en el ciclo de implementación: migración rápida, propiedad duradera.\"],\"+MLOVo\":[\"Cómo Elevate Consulting pasó de documentos y hojas de cálculo a Twenty como el CRM conectado por API en el centro de su stack.\"],\"OIwpKt\":[\"¿Cuánto tiempo se tarda en empezar?\"],\"iRzy9e\":[\"Cómo NetZero usa Twenty en créditos de carbono, productos agrícolas y sistemas industriales franquiciados con un CRM modular y una hoja de ruta hacia flujos de trabajo asistidos por IA.\"],\"NZYA4S\":[\"Cómo Nine Dots Ventures reconstruyó una agencia inmobiliaria de Singapur en Twenty con APIs, n8n, Grafana e IA sobre más de 2,000 mensajes de WhatsApp al día.\"],\"bcln75\":[\"Cómo Twenty recopila, usa, protege y divulga información cuando utilizas Twenty.com y servicios relacionados.\"],\"URQPvK\":[\"Cómo W3villa Technologies lanzó W3Grads, una plataforma de entrevistas simuladas con IA para instituciones, en Twenty como la columna vertebral operativa.\"],\"htrFcw\":[\"Hungary 🇭🇺\"],\"RYDa0v\":[\"Iceland 🇮🇸\"],\"xalbpT\":[\"Ideas del equipo que construye Twenty sobre CRM de código abierto, datos de clientes, sistemas de GTM y creación de software duradero.\"],\"ePYQjq\":[\"Identity\"],\"l0JGUk\":[\"Suplantar usuarios\"],\"N4OVNn\":[\"Implementación\"],\"yHueLx\":[\"Socios de implementación\"],\"ZAKTS6\":[\"Importa tus datos con asignación de campos, incluidas las relaciones. Exporta en cualquier momento: tus datos siempre son tuyos.\"],\"InyU0Z\":[\"En junio de 2025, Justin se enteró de que Twenty v1 había salido. En dos o tres días, el CEO le pidió que explorara la configuración de un CRM. El cambio vino del potencial de lo que podía construirse sobre APIs totalmente abiertas. El momento fue perfecto.\"],\"d1Aru8\":[\"En producción.\"],\"Sqb+jp\":[\"Vista previa en la app para los tipos de archivo compatibles (cuando está habilitada)\"],\"3XP8Lk\":[\"¡Incluido!\"],\"/c4yUr\":[\"India 🇮🇳\"],\"iEJqDi\":[\"Indonesia 🇮🇩\"],\"BQukYF\":[\"Indonesian\"],\"S8gy7K\":[\"Industria\"],\"MeL8SS\":[\"Desplazamiento infinito\"],\"+mOisw\":[\"El desplazamiento infinito aún está por llegar, a diferencia de la factura.\"],\"K8iwJx\":[\"Instalar app de tarball compartido\"],\"AHWM9N\":[\"Integración\"],\"OChKCc\":[\"Generador de semitonos interactivo exportado desde Twenty.\"],\"+83cJG\":[\"Interested in meeting \",[\"partnerName\"]],\"mdsMtj\":[\"despliegue interno\"],\"a+PGuG\":[\"Cuentas de Internet por usuario\"],\"FtgjCv\":[\"Iran 🇮🇷\"],\"8yynyz\":[\"Iraq 🇮🇶\"],\"s7XmoY\":[\"Ireland 🇮🇪\"],\"/yQIKP\":[\"¿Twenty es realmente de código abierto?\"],\"SdtpDP\":[\"Israel 🇮🇱\"],\"QjEULz\":[\"Es una experiencia mucho mejor que lidiar con Salesforce o HubSpot. Mi misión ha sido que todas las herramientas tengan acceso por API, para que todo se comunique entre sí.\"],\"FJ51pP\":[\"Es una experiencia mucho mejor que lidiar con Salesforce o HubSpot. Mi misión ha sido que todas las herramientas tengan acceso por API, para que todo se comunique entre sí. Twenty hizo eso posible de una manera que las plataformas CRM más antiguas simplemente no pueden.\"],\"kqIAbN\":[\"Funcionó. Esto es iteración asistida por IA en la práctica: no IA como una función del producto, sino como parte del trabajo de implementación, comprimiendo lo que normalmente serían semanas en algo que una sola persona puede supervisar sin ser el cuello de botella.\"],\"ltNDOB\":[\"Es frágil. La V1 se lanza rápido, pero mantenerla y hacer cambios es una carga a largo plazo.\"],\"Lj7sBL\":[\"Italian\"],\"OSTD8d\":[\"Italy 🇮🇹\"],\"0BTIQi\":[\"Ivory Coast 🇨🇮\"],\"W6o2Pv\":[\"Jamaica 🇯🇲\"],\"kpk6mj\":[\"Japan 🇯🇵\"],\"dFtidv\":[\"Japanese\"],\"kX2mij\":[\"Únete a nuestro ecosistema y ayuda a las empresas a tomar el control de sus datos de clientes con\"],\"1qiriB\":[\"Únete a nuestro ecosistema de socios en crecimiento\"],\"APYcnh\":[\"Join our partner ecosystem and help businesses<0/>take control of their CRM.\"],\"5emzGz\":[\"Join the teams that chose to own their CRM.<0/>Start building with Twenty today.\"],\"QbxNys\":[\"Jordan 🇯🇴\"],\"pB76mP\":[\"jul 2025\"],\"hvwlu3\":[\"jun 2025\"],\"qrYDGE\":[\"Justin Beadle\"],\"vYXuJI\":[\"Justin creó flujos de trabajo para notificaciones en todo el equipo, alertando a las personas adecuadas en Teams cuando un prospecto se convierte en lead o cuando se alcanzan hitos de proyecto. Los formularios en Twenty permiten que el equipo de desarrollo de negocio registre actividad sin salir de la herramienta. El impacto es real para la organización. La herramienta ha sido adaptable desde el trabajo a nivel de oportunidad en un cliente hasta decisiones a nivel ejecutivo.\"],\"E6Oohx\":[\"La misión más amplia de Justin en Elevate ha sido pasar de documentos estáticos a herramientas con acceso por API. A finales de 2025, eso ya estaba en marcha: facturación por tiempo, planificación de recursos, Microsoft Teams y gestión de proyectos eran accesibles vía API, con Twenty en el centro manteniendo los datos de clientes y oportunidades. Los miembros del equipo pudieron usar esa información de forma estratégica en lugar de volver a teclearla.\"],\"r1cFAW\":[\"Kazakhstan 🇰🇿\"],\"kEahsE\":[\"Kenya 🇰🇪\"],\"IxBSi8\":[\"Kiribati 🇰🇮\"],\"h6S9Yz\":[\"Korean\"],\"PqhUrP\":[\"Kosovo 🇽🇰\"],\"3+TwF3\":[\"Kuwait 🇰🇼\"],\"e9zZkH\":[\"Kyrgyzstan 🇰🇬\"],\"GAmD3h\":[\"Idiomas\"],\"u6jooT\":[\"Languages spoken\"],\"YHacTY\":[\"Laos 🇱🇦\"],\"2lrGbG\":[\"LATAM\"],\"7OHfcc\":[\"Latvia 🇱🇻\"],\"rdU729\":[\"Diseño\"],\"+Ss/og\":[\"Aprende a usar Twenty\"],\"wB0DGn\":[\"Lebanon 🇱🇧\"],\"vifyyw\":[\"Legal\"],\"UqdHpG\":[\"Lesotho 🇱🇸\"],\"rJargy\":[\"Liberia 🇱🇷\"],\"Lzw0kM\":[\"Libya 🇱🇾\"],\"tHFTlp\":[\"Licenciatario:\"],\"K41WYc\":[\"Liechtenstein 🇱🇮\"],\"gggTBm\":[\"LinkedIn\"],\"Gg69LR\":[\"LinkedIn URL\"],\"2WIZYd\":[\"Lithuania 🇱🇹\"],\"AHVzME\":[\"Datos en tiempo real e IA integrada\"],\"GObQuL\":[\"Actualizaciones en tiempo real\"],\"zmRZwk\":[\"Las actualizaciones en tiempo real no están disponibles, lo cual es casi más honesto.\"],\"ObPscj\":[\"Cargando activación…\"],\"7VBQ2j\":[\"Local, Producción\"],\"JO8Bdx\":[\"Bloqueo\"],\"sQia9P\":[\"Iniciar sesión\"],\"KPLAuI\":[\"Reducir el costo del CRM\"],\"J13skq\":[\"Luxembourg 🇱🇺\"],\"nRYQC8\":[\"Madagascar 🇲🇬\"],\"qHvKxh\":[\"Malawi 🇲🇼\"],\"tF97tn\":[\"Malay\"],\"DIOh5g\":[\"Malaysia 🇲🇾\"],\"62/ScF\":[\"Maldives 🇲🇻\"],\"wc5E/3\":[\"Mali 🇲🇱\"],\"04fjhR\":[\"Malta 🇲🇹\"],\"Si4WyF\":[\"Consultoría de gestión\"],\"poX06f\":[\"Trabajo manual en el núcleo\"],\"VJOKPB\":[\"Vista de mapas\"],\"Zt5PUS\":[\"Marketplace\"],\"2jVbnO\":[\"Marshall Islands 🇲🇭\"],\"bJNKJ1\":[\"Domina cada rincón de Twenty\"],\"HG/EUg\":[\"Mauritania 🇲🇷\"],\"YDiaY/\":[\"Mauritius 🇲🇺\"],\"Zw+Zv+\":[\"Servidor MCP\"],\"zxcfgg\":[\"significa control\"],\"bwCiCi\":[\"Conoce a las agencias y consultores certificados que implementan Twenty para equipos de todo el mundo.\"],\"ujYZ+f\":[\"Conoce a los equipos que convirtieron Twenty en su propio CRM con implementaciones autoalojadas, flujos de trabajo asistidos por IA y stacks de producto con prioridad en la API.\"],\"CQ9M36\":[\"MENA\"],\"briyJf\":[\"Métricas en las que realmente puedes confiar.\"],\"YBLFQZ\":[\"Mexico 🇲🇽\"],\"KBirDR\":[\"Micronesia 🇫🇲\"],\"ZdvtU2\":[\"flujo de trabajo de migración\"],\"so04x6\":[\"Mike y Azmat de Nine Dots intervinieron para arreglarlo, no cambiando cómo funciona Homeseller, sino construyendo un sistema que por fin se ajustara a su alrededor.\"],\"izddzp\":[\"Mike Babiy\"],\"FFFENV\":[\"Minimum project budget\"],\"6m8rMT\":[\"Moldova 🇲🇩\"],\"qRRmSe\":[\"Monaco 🇲🇨\"],\"G+EV+A\":[\"Mongolia 🇲🇳\"],\"9VDoNp\":[\"Montenegro 🇲🇪\"],\"+8Nek/\":[\"Mensual\"],\"VqXuUv\":[\"¡Más opciones disponibles!\"],\"LAFO4Y\":[\"Morocco 🇲🇦\"],\"EwJDrS\":[\"Mozambique 🇲🇿\"],\"dlKkNL\":[\"Carga de múltiples archivos en los registros\"],\"QGWbbv\":[\"Myanmar 🇲🇲\"],\"6YtxFj\":[\"Nombre\"],\"yYmxee\":[\"Namibia 🇳🇦\"],\"zVOV14\":[\"Nauru 🇳🇷\"],\"LfNsfa\":[\"¿Necesitas un cambio rápido? Omite el ticket a ingeniería. Personaliza tu espacio de trabajo en minutos.\"],\"4sbgPq\":[\"¿Necesitas ayuda con la personalización?\"],\"LNVNNE\":[\"Nepal 🇳🇵\"],\"g60EgR\":[\"Netherlands 🇳🇱\"],\"8Cp4Of\":[\"NetZero\"],\"J8ZssL\":[\"NetZero ejecuta una instalación modular de Twenty para créditos de carbono, productos agrícolas y sistemas industriales.\"],\"7HVBV+\":[\"NetZero utiliza Twenty como un CRM modular en líneas de producto y países, con una hoja de ruta hacia flujos de trabajo asistidos por IA.\"],\"3PtYTO\":[\"NetZero trabaja con la agroindustria, atendiendo a clientes desde multinacionales hasta pequeños agricultores. Venden créditos de carbono, productos agrícolas y sistemas industriales franquiciados en tres líneas de producto diferentes, múltiples países y múltiples tamaños de empresa. Cuando Olivier Reinaud, cofundador de NetZero, comenzó a evaluar CRMs a finales de 2024, no buscaba la plataforma con más funciones. Quería la base adecuada.\"],\"/DTtCF\":[\"New Zealand 🇳🇿\"],\"GY6uSc\":[\"Next →\"],\"KqojOL\":[\"Próximos pasos\"],\"iBOZv7\":[\"Nicaragua 🇳🇮\"],\"61NU7V\":[\"Niger 🇳🇪\"],\"+2NLII\":[\"Nigeria 🇳🇬\"],\"qZ+egR\":[\"Nine Dots puso Twenty en el centro del stack de Homeseller con APIs, automatización e IA sobre operaciones fuertemente basadas en WhatsApp.\"],\"sGuHDu\":[\"Nine Dots reconstruyó las operaciones de Homeseller en Twenty, con un modelo de datos personalizado moldeado según su flujo de ventas. Como Twenty es abierto y todo es accesible vía API, lo conectaron con lo que el negocio realmente necesitaba: n8n para flujos de trabajo automatizados (los flujos dentro de la app no estaban disponibles en ese momento), Grafana para paneles en vivo alimentados desde Twenty y una capa de IA personalizada para analizar y extraer información estructurada de más de 2,000 mensajes de WhatsApp al día.\"],\"1UzENP\":[\"No\"],\"6tRXQ4\":[\"No matching country.\"],\"o+/Ad5\":[\"No más alquilar lo de otra persona\"],\"LmWdm6\":[\"No más alquilar la estructura de otra persona\"],\"UxK4so\":[\"No partners match your filters\"],\"q9f4Tp\":[\"Sin código\"],\"SiZ/7E\":[\"No. Crea objetos, campos, vistas y flujos de trabajo sin código directamente desde Configuración. Ilimitado, sin costo adicional.\"],\"096JXI\":[\"North Korea 🇰🇵\"],\"IwF7aJ\":[\"North Macedonia 🇲🇰\"],\"sZwk4U\":[\"Norway 🇳🇴\"],\"1IipHp\":[\"Norwegian\"],\"k3T2mM\":[\"Ahora un desarrollador puede describir lo que quiere a Claude Code y tener una app funcionando en una tarde. Un objeto personalizado, un flujo de puntuación, una vista nueva, una integración. El cuello de botella ya no es construir. Es si tu plataforma te lo permite.\"],\"CzeIij\":[\"Número de paneles\"],\"0dVyEt\":[\"de un stack de salida al mercado\"],\"pkrZnO\":[\"Olivier reconoce que el uso actual de Twenty por parte de NetZero sigue siendo relativamente simple: los flujos de trabajo y las integraciones aún no son tan profundos como eventualmente quiere, porque priorizó acertar primero con los cimientos.\"],\"l/1LQc\":[\"Olivier Reinaud\"],\"BdShAR\":[\"Oman 🇴🇲\"],\"D2b+1q\":[\"En un único CRM\"],\"XhXmzW\":[\"En esta página\"],\"jxC7HY\":[\"Onboarding · Documentation · Change management · L1/L2 support · Managed services\"],\"pbmZ7R\":[\"Paquetes de incorporación\"],\"/DFChQ\":[\"Uno\"],\"Zt1UZb\":[\"Una API para gobernarlas a todas\"],\"pShqss\":[\"Solo 5 $ para SSO. Prácticamente un programa de caridad.\"],\"3WErRa\":[\"APIs abiertas\"],\"pkXQA+\":[\"Abre Configuración → Enterprise en tu instancia autoalojada de Twenty.\"],\"wtKPUT\":[\"primitivas de código abierto.\"],\"5RkmVr\":[\"De código abierto, preparado para IA y tuyo para moldear.\"],\"ucgZ0o\":[\"Organización\"],\"dKGg8T\":[\"Agotado\"],\"PASC/7\":[\"Ha sobrevivido a cada rediseño desde 2004.\"],\"Bwsi7B\":[\"Haz tuyo el CRM de extremo a extremo\"],\"oDAEQq\":[\"Propiedad\"],\"NmF/Vo\":[\"Ser dueño de tu stack sigue estando misteriosamente agotado.\"],\"h/oMMb\":[\"Los CRMs en paquete hacen que todas las empresas se vean iguales. Twenty es el CRM de código abierto que los equipos moldean en torno a su flujo de trabajo, con una interfaz moderna y una plataforma con prioridad para desarrolladores.\"],\"+AiiMt\":[\"La paginación forja el carácter.\"],\"sW3DaS\":[\"Pakistan 🇵🇰\"],\"cvRU36\":[\"Palau 🇵🇼\"],\"u2htNd\":[\"Palestine 🇵🇸\"],\"pWLp16\":[\"Panama 🇵🇦\"],\"xOR4tu\":[\"Papua New Guinea 🇵🇬\"],\"kb3PhK\":[\"Paraguay 🇵🇾\"],\"mPkInZ\":[\"Socios\"],\"9yo8NN\":[\"Pega la clave y haz clic en Activar.\"],\"nxV7o2\":[\"dando sus frutos\"],\"OzAIDr\":[\"Peru 🇵🇪\"],\"LqRs8D\":[\"Philippines 🇵🇭\"],\"we6gj5\":[\"Pick every category that applies.\"],\"FFkjaT\":[\"Gestión de pipeline\"],\"gzkkC3\":[\"Pipelines, objetos personalizados, asistentes de IA y una API nativa sobre Postgres. Twenty es el CRM de código abierto con la experiencia moderna que los equipos realmente quieren usar.\"],\"z7gnI9\":[\"Please complete all required fields before continuing.\"],\"iCh6/3\":[\"plomería\"],\"AFr2a5\":[\"Poland 🇵🇱\"],\"trnWaw\":[\"Polish\"],\"8BrmUs\":[\"Portugal 🇵🇹\"],\"MOERNx\":[\"Portuguese\"],\"z87IFG\":[\"Press Enter or comma to add a skill.\"],\"a7u1N9\":[\"Precio\"],\"aHCEmh\":[\"Precios\"],\"J2IAmT\":[\"Director y fundador\"],\"kXBQYM\":[\"Director y fundador, Alternative Partners\"],\"k62X/2\":[\"Soporte prioritario\"],\"LcET2C\":[\"Política de Privacidad\"],\"DJ3uVe\":[\"Política de Privacidad | Twenty\"],\"3fPjUY\":[\"Pro\"],\"kIGKva\":[\"Calidad de nivel de producción\"],\"vERlcd\":[\"Profile\"],\"CcK9cq\":[\"Los programas que antes requerían una coordinación manual pesada ahora funcionan de extremo a extremo con automatización. Las instituciones obtienen un sistema inteligente y escalable; los estudiantes, una preparación más rápida para entrevistas que importan; W3villa entregó un producto alrededor del cual las instituciones pueden generar ingresos.\"],\"PaHxQd\":[\"Project minimum\"],\"9NAqO4\":[\"Automatización de propuestas\"],\"a24q7E\":[\"Lenguajes propietarios, ciclos de despliegue lentos y lógica de \\\"caja negra\\\".\"],\"kS6G/9\":[\"puso fin\"],\"u9RZ7+\":[\"Punjabi\"],\"frfCYp\":[\"T1 2026\"],\"tFx+ES\":[\"Qatar 🇶🇦\"],\"3XOwjg\":[\"Rates\"],\"DnWJal\":[\"Reach out\"],\"gSQVmr\":[\"Leer el caso\"],\"EqCbT9\":[\"Permisos de Lectura/Edición/Eliminación\"],\"Gr9RIC\":[\"Ready to grow<0/>with Twenty?\"],\"zTY2by\":[\"Historias reales de clientes de equipos que gestionan su negocio en Twenty: cómo migraron, qué personalizaron y qué cambió una vez que su CRM por fin encajó.\"],\"NIwjHh\":[\"Inmobiliario\"],\"CH+Ona\":[\"Historias reales de equipos reales sobre cómo moldearon Twenty para adaptarlo a su flujo de trabajo y aceleraron su crecimiento.\"],\"5O1eTm\":[\"¿Cambios en tiempo real? Será una sorpresa premium.\"],\"4hc7hc\":[\"Datos en tiempo real\"],\"dKQCrj\":[\"El tiempo real es un estado mental, no una función.\"],\"Zhiuz9\":[\"Trimestre récord\"],\"PWlTvh\":[\"Registros\"],\"q45OlW\":[\"Regions\"],\"rwWjWg\":[\"Notas de la versión\"],\"5icoS1\":[\"Lanzamientos\"],\"BkBq/5\":[\"Remove \",[\"0\"],\" filter\"],\"a/aGHe\":[\"Renombrar, descargar y eliminar archivos adjuntos\"],\"t9yxlZ\":[\"Informes\"],\"SY/an2\":[\"Informes y Paneles\"],\"s+MGs7\":[\"Recursos\"],\"oC2l7f\":[\"API REST y GraphQL\"],\"kx0s+n\":[\"Resultados\"],\"2itg0p\":[\"Retro 2015\"],\"frqduN\":[\"Notas enriquecidas adjuntas a los registros\"],\"/gaSVU\":[\"Hoja de ruta\"],\"mLp5AP\":[\"Romania 🇷🇴\"],\"uJc01W\":[\"Romanian\"],\"Wdh41P\":[\"Permisos a nivel de fila\"],\"mRpuWW\":[\"Dirigir programas de entrevistas simuladas para cientos de estudiantes suena sencillo. En la práctica, las universidades e institutos de formación chocan con el mismo muro: inscripciones introducidas a mano, enlaces de entrevista enviados uno por uno, el profesorado revisando cada sesión sin puntuación ni clasificación. A escala real, se rompe.\"],\"T1ut28\":[\"Russia 🇷🇺\"],\"nji0/X\":[\"Russian\"],\"dw8D3T\":[\"Rwanda 🇷🇼\"],\"niLOap\":[\"Saint Kitts & Nevis 🇰🇳\"],\"zCHzF/\":[\"Saint Lucia 🇱🇨\"],\"Md/8iQ\":[\"Saint Vincent 🇻🇨\"],\"Burn4/\":[\"Centro de complementos de Salesfarce\"],\"xTfEgV\":[\"Salesfarce Pro\"],\"/UolBB\":[\"Salesforce Classic\"],\"l69E+u\":[\"Migración desde Salesforce\"],\"CADlRK\":[\"El mismo CRM\"],\"60i6S+\":[\"La misma salida\"],\"xl2tJ9\":[\"Los mismos resultados\"],\"w9QWxz\":[\"SSO SAML/OIDC\"],\"R38ZPo\":[\"Samoa 🇼🇸\"],\"fK288K\":[\"San Marino 🇸🇲\"],\"KDcBQd\":[\"São Tomé & Príncipe 🇸🇹\"],\"/BK0Nl\":[\"Saudi Arabia 🇸🇦\"],\"elz5ka\":[\"Ahorrado / mes\"],\"tigXYO\":[\"ahorrado cada mes\"],\"bifv6N\":[\"Escala\"],\"rbgetd\":[\"Escalar sin\"],\"842ybw\":[\"Escalar sin romper las operaciones\"],\"vk6sVR\":[\"Search a country…\"],\"HVOGoW\":[\"Límite de usuarios\"],\"a3LDKx\":[\"Seguridad\"],\"aB+XpI\":[\"Ver más funciones\"],\"FY4ykg\":[\"Ver el último lanzamiento\"],\"JDp1bg\":[\"Ve las actualizaciones a medida que suceden. Trabaja con tu equipo y agentes sin fricciones.\"],\"0kgOPB\":[\"Mira lo que se lanzó en \",[\"0\"]],\"wgNoIs\":[\"Seleccionar todo\"],\"6p/m5q\":[\"Select your country\"],\"6JhL+3\":[\"Autoalojado\"],\"QFK/45\":[\"Self-hosted (Docker/K8s) · Cloud architecture · Scaling · Security · Monitoring\"],\"5CWy3T\":[\"Autoalojado significa que AC&T no asume riesgo de proveedores: ningún modelo de precios que pueda cambiar, ninguna plataforma que pueda desaparecer, ninguna migración forzada. El sistema es suyo.\"],\"5WmQ5O\":[\"Autoalojado significa control\"],\"6QPYP7\":[\"Twenty autoalojado\"],\"GrBvv/\":[\"Autoalojamiento\"],\"YdhUoe\":[\"¡Autoalojamiento, ahora en alquiler!\"],\"NaHz2o\":[\"Autoalojamiento\"],\"D50Vyu\":[\"Senegal 🇸🇳\"],\"eEJlq0\":[\"Serbia 🇷🇸\"],\"62gxWx\":[\"Seychelles 🇸🇨\"],\"3VFzsh\":[\"Lanza un producto en Twenty\"],\"6lGV3K\":[\"Mostrar menos\"],\"RhU4bB\":[\"Showing \",[\"visibleCount\"],\" of \",[\"totalCount\"],\" partners\"],\"I89wN/\":[\"Showing all \",[\"totalCount\"],\" partners\"],\"yhyNch\":[\"Sierra Leone 🇸🇱\"],\"mA6cL1\":[\"Regístrate en Cloud en menos de un minuto y comienza tu prueba de 30 días. Para despliegues más grandes, nuestros Paquetes de incorporación de 4 horas o socios certificados te ponen en producción en 1–2 semanas.\"],\"0eG5g+\":[\"Singapore 🇸🇬\"],\"V9dFwD\":[\"Mapa del sitio\"],\"t6ComU\":[\"Evita la UX torpe que siempre acompaña a lo personalizado.\"],\"U7keXg\":[\"Slovakia 🇸🇰\"],\"o1VTTF\":[\"Slovenia 🇸🇮\"],\"bUmSwL\":[\"Patrones inteligentes, atajos y diseños hacen que las tareas diarias sean más rápidas y fáciles de ejecutar.\"],\"6sKjjx\":[\"Solo\"],\"FX2oa1\":[\"Solo or agency?\"],\"TcZtfs\":[\"Solomon Islands 🇸🇧\"],\"TvdMI3\":[\"Solutioning\"],\"t1E06j\":[\"Somalia 🇸🇴\"],\"AVfp38\":[\"Algunos lo llaman precios empresariales. Preferimos un CRM donde el acceso a la API, los webhooks y los flujos de trabajo no aparezcan como complementos sorpresa.\"],\"B/mYo/\":[\"Acceso al código fuente\"],\"zHJB/O\":[\"South Africa 🇿🇦\"],\"7MdTKh\":[\"South Korea 🇰🇷\"],\"a4jo+V\":[\"South Sudan 🇸🇸\"],\"Kv3C8d\":[\"Spain 🇪🇸\"],\"65A04M\":[\"Spanish\"],\"00jcbn\":[\"Sri Lanka 🇱🇰\"],\"vnS6Rf\":[\"SSO\"],\"uQl22y\":[\"Soporte estándar\"],\"wxW2Sv\":[\"¡Empieza a automatizar a gran escala!\"],\"XO628f\":[\"Comienza gratis\"],\"+6VDIA\":[\"Start your free trial today<0/>without credit card.\"],\"j9c8rb\":[\"Mantente en Flow\"],\"GdGiNi\":[\"Step \",[\"current\"],\" of \",[\"total\"]],\"bxgoJR\":[\"Guías paso a paso y playbooks para ayudar a tu equipo a sacar el máximo partido a su espacio de trabajo.\"],\"UCLArd\":[\"Deja de conformarte con compromisos.\"],\"lm4alq\":[\"estructura\"],\"Sv4BSp\":[\"Subdominio (yourco.twenty.com)\"],\"H5/rZQ\":[\"Enviar solicitud\"],\"MDqQmP\":[\"Enviando…\"],\"8Z1557\":[\"Sudan 🇸🇩\"],\"XYLcNv\":[\"Soporte\"],\"Aq66kg\":[\"Suriname 🇸🇷\"],\"Yz+oFV\":[\"Swahili\"],\"b2//Ip\":[\"Sweden 🇸🇪\"],\"UaISq3\":[\"Swedish\"],\"IImT5c\":[\"Switzerland 🇨🇭\"],\"sjuSub\":[\"Syria 🇸🇾\"],\"3w+Aox\":[\"Tabla, Kanban, Calendario\"],\"ISVD3+\":[\"Tagalog\"],\"9M02G5\":[\"Adapta páginas de registro, menús y vistas\"],\"boABlR\":[\"Taiwan 🇹🇼\"],\"XJspRJ\":[\"Tajikistan 🇹🇯\"],\"JAKtcG\":[\"Habla con nosotros\"],\"fb427h\":[\"Tamil\"],\"ri1l89\":[\"Tanzania 🇹🇿\"],\"GWMpL3\":[\"Tareas y Actividades\"],\"Ye3KKA\":[\"Colabora con un experto en Twenty\"],\"vsdUaL\":[\"Notas técnicas\"],\"y+bLyB\":[\"Technical skills\"],\"1ZwmkP\":[\"plantilla\"],\"mvP/25\":[\"Términos y Condiciones\"],\"BEX1RA\":[\"Términos del Servicio | Twenty\"],\"iqG74V\":[\"Términos del Servicio para Twenty.com PBC, incluido el uso de Twenty.com, subdominios y servicios relacionados.\"],\"SUr44j\":[\"Thai\"],\"6t7gpr\":[\"Thailand 🇹🇭\"],\"pYwj0k\":[\"Thanks,\"],\"FjkPYg\":[\"Eso abrió la puerta a algo más poderoso. Justin creó un front end personalizado que extrae datos en vivo de esos sistemas en una sola vista, adaptada a cada rol. Cuando se gana una propuesta, lo que antes requería que cuatro personas configuraran manualmente instancias en cuatro herramientas diferentes ahora ocurre con un solo clic, aprovechando los datos recopilados en Twenty a lo largo de todo el ciclo de vida de la oportunidad. Es otro cambio hacia trabajo de mayor valor para los clientes.\"],\"8S4psU\":[\"Eso funciona hasta que necesitas entender el negocio subyacente. ¿Qué acuerdos están atascados? ¿De dónde vienen los leads? ¿Cuál es la tasa de cierre? Con hojas de cálculo y un CRM personalizado heredado que no podía seguir el ritmo, esas preguntas eran casi imposibles de responder.\"],\"zXlFuT\":[\"El CRM de código abierto n.º 1 para equipos modernos. Modular, escalable y creado para adaptarse a tu negocio.\"],\"G2IgPj\":[\"La apuesta es\"],\"NT2bSJ\":[\"La apuesta está dando frutos\"],\"Xmr/wH\":[\"el negocio\"],\"Wie492\":[\"El equipo de desarrollo de negocio por fin tenía el CRM que habían estado pidiendo. La adopción llegó de forma natural: sus datos ya estaban allí cuando iniciaron sesión.\"],\"2kHqXc\":[\"El CEO se había resistido a incorporar un CRM durante años. El equipo de desarrollo de negocio no tenía experiencia usando uno, y los costos de licencia de CRMs conocidos como Salesforce o HubSpot eran difíciles de justificar sin ninguna garantía de adopción: los CRMs solo son tan buenos como el mantenimiento de los datos dentro de ellos.\"],\"5DpEh7\":[\"El CRM como un\"],\"2sfVd8\":[\"El CRM como centro de control\"],\"XlFsoH\":[\"La apuesta temprana por la arquitectura se mantiene, y se espera que las próximas funciones de IA la hagan aún más relevante.\"],\"kCUcnD\":[\"La flexibilidad es simplemente increíble. Literalmente, no hay nada que no puedas hacer. Puedes crear objetos, acceder a todo a través de la API, extraer notas y enviarlas al portal. Intenta hacer eso en HubSpot. De ninguna manera. Es la verdadera capacidad de construir exactamente lo que realmente se necesita.\"],\"MaHqAc\":[\"La flexibilidad fue realmente lo que marcó la diferencia. Nuestras necesidades evolucionan muy rápido. Descubro una nueva necesidad y en dos clics puedo abordarla. Eso es una verdadera ventaja cuando te mueves rápido.\"],\"Q5iZ9Q\":[\"La flexibilidad para conectar todo esto, sin ayuda externa y sin pelearse con la plataforma, fue lo que hizo posible que una sola persona levantara y mantuviera un stack conectado en toda una consultora.\"],\"l0eUFC\":[\"El despliegue completo llegó en julio de 2025. Desde entonces, Nine Dots construyó un Asistente Inteligente sobre el sistema, que impulsa a los agentes con tareas, recordatorios y análisis de mercado bajo demanda. Algunos agentes nunca abren Twenty directamente, pero están impulsados por él, superando a sus pares solo con procesos manuales. Para el T1 de 2026, Homeseller había registrado su mejor trimestre de ventas de la historia.\"],\"SiW1pC\":[\"el futuro del CRM\"],\"sm10Rg\":[\"El Gran Monolito\"],\"nFB8I1\":[\"La Carga Interna\"],\"ZNzKXV\":[\"La decisión clave fue no construir todo desde cero. Twenty cubre el modelo de datos, los permisos, la autenticación y el motor de flujos de trabajo, las partes que habrían llevado meses reconstruir, para que el equipo pudiera centrarse en la lógica específica del producto.\"],\"q1kKLq\":[\"La oportunidad\"],\"ZgWQl4\":[\"la sobrecarga\"],\"2NJdyz\":[\"El problema.\"],\"Q8D9Lf\":[\"el producto\"],\"3/wAFg\":[\"El resultado\"],\"nAWeyi\":[\"El resultado es un sistema que se ajusta a cómo AC&T ya trabajaba, en lugar de al revés.\"],\"tfG/xw\":[\"Lo correcto\"],\"nbHA9N\":[\"La base adecuada\"],\"omVXTg\":[\"La configuración autoalojada significa que Alternative Partners posee todo el stack: sin acceso de proveedores a sus datos, sin dependencia de un modelo de precios SaaS, control total sobre cómo evoluciona el sistema. La migración fue rápida gracias a la IA; el resultado es duradero porque el stack es de código abierto.\"],\"1tN3qf\":[\"El cambio\"],\"AnGOwN\":[\"La situación\"],\"u0uFxg\":[\"Ellos son las ventas de verdad\"],\"53RXLB\":[\"Lo llaman fidelidad del cliente. Nosotros lo llamamos una jaula muy afectuosa.\"],\"RhmZMe\":[\"No solo reemplazaron una herramienta. Recuperaron la propiedad de cómo funciona su negocio.\"],\"5YzqyT\":[\"Evaluaron Salesforce, Zoho, Pipedrive y SuiteCRM. Todos venían con los mismos compromisos: demasiado caros, demasiado rígidos o demasiado genéricos, y ninguno solucionaba el problema de fondo. Seguían alquilando una estructura que no controlaban.\"],\"6f8QUY\":[\"Timor-Leste 🇹🇱\"],\"2y6W+f\":[\"para gobernarlas a todas\"],\"DeTupk\":[\"Togo 🇹🇬\"],\"CocxTO\":[\"Tonga 🇹🇴\"],\"5eFktS\":[\"Integración de herramientas\"],\"xv7HSr\":[\"total por mes con costo fijo\"],\"hmu++i\":[\"Sigue el importe y la fecha de cierre\"],\"POzmFl\":[\"Sigue cada lanzamiento con registros de cambios, destacados y demostraciones de las funciones más recientes.\"],\"6vHPh9\":[\"Track relationships, manage pipelines, and take action quickly with an intuitive CRM that helps your team move faster from day one with confidence.\"],\"xwWQ9Q\":[\"Training & Adoption\"],\"MtCqjl\":[\"Training, Adoption & Support\"],\"/ga9kq\":[\"Trinidad & Tobago 🇹🇹\"],\"tdZpCd\":[\"Trust Center\"],\"KtyN0b\":[\"con la confianza de\"],\"eslLQF\":[\"Pruébalo en vivo\"],\"qhmtws\":[\"Try removing some filters or browse all partners.\"],\"E/hGy3\":[\"Prueba Twenty Cloud\"],\"D5Kf4t\":[\"El martes tu equipo descubre que las oportunidades con un champion técnico cierran 3 veces más rápido. El miércoles agregas el campo, conectas la puntuación, ajustas el flujo de trabajo. Para el jueves tus agentes ya están actuando. Ese circuito de retroalimentación es la ventaja. Y solo funciona si el CRM es tuyo.\"],\"y4UxlS\":[\"Tunisia 🇹🇳\"],\"UIDKnJ\":[\"Turkey 🇹🇷\"],\"Kz91g/\":[\"Turkish\"],\"kdJl4v\":[\"Turkmenistan 🇹🇲\"],\"tSc/a3\":[\"Tuvalu 🇹🇻\"],\"O5dAmW\":[\"Twenty | CRM de código abierto n.º 1\"],\"NalB1c\":[\"Twenty Apps abre la puerta a crear productos, no solo implementaciones. Por ejemplo, estamos desarrollando una integración de WhatsApp Business que cualquier cliente de Twenty podría obtener. Es una fuente de ingresos recurrentes que no tendríamos si solo estuviéramos configurando la plataforma de otra empresa.\"],\"q9UWVC\":[\"Artículos de Twenty — Insights sobre CRM de código abierto\"],\"mkTfZ1\":[\"Twenty como el\"],\"+w9xZW\":[\"Twenty como columna vertebral de API de un stack de salida al mercado\"],\"zj0CA+\":[\"Twenty como la columna vertebral de API de un stack de salida al mercado | Elevate Consulting\"],\"neM1Ol\":[\"Funciones de Twenty CRM — Plataforma CRM moderna de código abierto\"],\"8zCqPL\":[\"Precios de Twenty CRM — Planes desde 9 $ por usuario al mes\"],\"D05UQH\":[\"Clientes de Twenty — Cómo los equipos modernos gestionan su CRM\"],\"0qyMhk\":[\"Twenty da a los equipos técnicos los bloques de construcción para un CRM personalizado que cubre necesidades de negocio complejas y se adapta rápidamente a medida que el negocio evoluciona.\"],\"jVhq41\":[\"Twenty te da el tipo de flexibilidad que realmente cambia lo que puedes ofrecer a tus clientes. La experiencia de desarrollo es limpia, las APIs son abiertas y, cuando algo necesita personalizarse, simplemente puedes hacerlo. No hay que pelearse con la plataforma.\"],\"x/I85y\":[\"Twenty no es solo donde viven los datos del CRM. Es la columna vertebral de API que hace posible el resto del stack.\"],\"K+zzSQ\":[\"Twenty nos permite construir un CRM alrededor del negocio y no el negocio alrededor del CRM.\"],\"AxT+g4\":[\"Twenty lo hace sencillo. Es limpio, intuitivo y está diseñado para que se sienta como Notion.\"],\"4SJucz\":[\"Twenty Partners — Implementadores certificados de CRM de código abierto\"],\"X1GHuJ\":[\"Lanzamientos de Twenty — Novedades en el CRM de código abierto\"],\"V1lV7B\":[\"Soporte del equipo de Twenty\"],\"KsFvUt\":[\"Twenty's certified partners help teams migrate, customise, and operate the open source CRM across regions, languages, and deployment models. Browse profiles and book a call.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"O+vc/1\":[\"Type of team *\"],\"P+R1Lc\":[\"Typical project\"],\"HqFilh\":[\"UAE 🇦🇪\"],\"+WNTxL\":[\"Uganda 🇺🇬\"],\"uxuy4l\":[\"Tema de la interfaz de usuario\"],\"tNfmmF\":[\"UK 🇬🇧\"],\"z7UkhA\":[\"Ukraine 🇺🇦\"],\"V9+2pH\":[\"Ukrainian\"],\"jqzUyM\":[\"No disponible\"],\"Hix/m6\":[\"Cronología unificada (correos electrónicos, eventos, tareas, notas, archivos)\"],\"NIuIk1\":[\"Ilimitado\"],\"aGpTSC\":[\"Hasta 5 espacios de trabajo\"],\"SPdRRU\":[\"Upfront consulting, scoping, strategy.\"],\"2vanwz\":[\"Sube, renombra, previsualiza y gestiona archivos directamente en los registros. Todo se mantiene donde corresponde.\"],\"tmwuH9\":[\"Urdu\"],\"huOaG8\":[\"Uruguay 🇺🇾\"],\"RCOibx\":[\"US\"],\"LXHEIS\":[\"USA 🇺🇸\"],\"Roaswv\":[\"Guía del usuario\"],\"3XIgKU\":[\"Roles de usuario\"],\"UCUX2+\":[\"User-side rollout & ongoing support.\"],\"FOOEtP\":[\"Uzbekistan 🇺🇿\"],\"CRXL2j\":[\"Vanuatu 🇻🇺\"],\"NNeEYO\":[\"Vatican 🇻🇦\"],\"BWzac4\":[\"Venezuela 🇻🇪\"],\"FlQ1vR\":[\"Vietnam 🇻🇳\"],\"fROFIL\":[\"Vietnamese\"],\"BRBSny\":[\"View \",[\"0\"],\" on LinkedIn\"],\"ITdNGt\":[\"View on LinkedIn\"],\"73lp8c\":[\"View profile\"],\"BAzC1v\":[\"Tipos de vista\"],\"mHtVst\":[\"¡Visualiza a tus clientes en un mapa!\"],\"CsHuOr\":[\"VP de Ingeniería\"],\"uRh799\":[\"VP de Ingeniería en W3villa Technologies\"],\"w2INie\":[\"VP de Ingeniería, W3villa Technologies\"],\"s0tU5h\":[\"W3Grads\"],\"R8BueT\":[\"W3villa creó W3Grads (w3grads.com), una plataforma de simulación de entrevistas impulsada por IA para universidades e institutos de formación, usando Twenty como columna vertebral operativa.\"],\"7hHsoV\":[\"W3villa creó W3Grads para simulaciones de entrevistas con IA a escala, con Twenty como columna vertebral operativa.\"],\"QBOUnd\":[\"W3villa lanzó W3Grads sobre Twenty para entrevistas con IA, puntuación y flujos de trabajo a escala institucional sin rehacer la infraestructura del CRM.\"],\"7q5Vjn\":[\"W3villa Technologies\"],\"ZabLEt\":[\"W3villa Technologies se propuso resolverlo correctamente, no con un parche, sino con un producto.\"],\"3v2ipf\":[\"W3villa usó Twenty como un framework de nivel de producción para el modelo de datos, los permisos, la autenticación y el motor de flujos de trabajo que de otro modo habrían reconstruido por su cuenta.\"],\"8CHatv\":[\"No pudimos enviar tu solicitud. Inténtalo de nuevo en un momento.\"],\"MjWeUE\":[\"No queríamos parchear el problema. Queríamos crear algo en lo que las instituciones pudieran confiar a escala, y eso significaba partir de una base lo suficientemente sólida como para soportar toda la complejidad de lo que teníamos en mente.\"],\"u7hKUm\":[\"we'll be in touch!\"],\"d5CWI6\":[\"Estamos construyendo el CRM de código abierto n.º 1, pero no podemos hacerlo solos. Únete a nuestro ecosistema de partners y crece con nosotros.\"],\"v1kQyJ\":[\"Webhooks\"],\"ZhnM/K\":[\"Webhooks (Captura de cambios de datos)\"],\"hgDePr\":[\"Website or GitHub\"],\"Lx0cVD\":[\"What an admin can do without writing code.\"],\"Z34FQq\":[\"Lo que convenció a Olivier fue la flexibilidad de la plataforma y hacia dónde se dirigía. Aunque las necesidades iniciales eran un registro básico de datos, seguía necesitando un modelo de datos personalizado con permisos granulares para gestionar la amplia gama de actividades de NetZero. También necesitaba un sistema que pudiera adaptarse rápidamente a una empresa de iteración rápida.\"],\"phiBjc\":[\"¿Cuánto cuesta Twenty?\"],\"WVQaGB\":[\"Lo que llegará en abril de 2026 es lo que ha estado esperando: creación de flujos de trabajo asistida por IA, describir lo que necesita e iterar a partir de ahí en lugar de construir lógica compleja desde cero. Para un fundador que gestiona él mismo el CRM, eso cambia lo que es realísticamente posible.\"],\"iOAq7n\":[\"Qué sigue\"],\"tWd6MT\":[\"Lo que está planificado es significativo. NetZero tiene un data lake, formularios en línea y múltiples sistemas internos que quiere conectar con Twenty. Las canalizaciones ya están; el siguiente paso son automatizaciones que los unan.\"],\"aYRqmz\":[\"Lo que esto significa\"],\"QCHIzm\":[\"What you cover *\"],\"1kfjxX\":[\"Lo que viniera después tenía que ser algo de lo que pudieran ser propietarios.\"],\"cs6VpJ\":[\"Cuando un estudiante se registra mediante un QR en un evento del campus, el sistema asigna un plan, genera una sesión de entrevista y envía un enlace. La IA realiza la entrevista, puntúa al candidato y clasifica el resultado. El profesorado ve en qué situación está cada estudiante sin revisar manualmente cada sesión. Construir e iterar estos flujos de trabajo fue más rápido con la IA en el ciclo.\"],\"I/oPrY\":[\"Cuando el canal es\"],\"JglRo/\":[\"Cuando el canal es el negocio\"],\"ee4xKk\":[\"Cuando el proveedor\"],\"DajeYD\":[\"Cuando el proveedor desconectó el servicio\"],\"X1gdzB\":[\"Cuando tu CRM es\"],\"OQ41z8\":[\"Cuando tu CRM es el producto\"],\"Svuneu\":[\"Cuando tu CRM es el producto: W3Grads en Twenty | W3villa Technologies\"],\"bGN8u+\":[\"Aunque NetZero aún ejecuta un segundo CRM en paralelo para operaciones con gran uso de WhatsApp con agricultores en Brasil, esperan migrarlo todo a Twenty a medida que crezcan las funciones y el ecosistema. Ya, su pipeline estructurado y multinacional funciona con Twenty.\"],\"DJlSwA\":[\"Por qué\"],\"4sOVu+\":[\"Por qué Twenty\"],\"DH7vVZ\":[\"Por qué Twenty — El CRM de código abierto creado para ser personalizado\"],\"OKVlnc\":[\"Con Twenty, cuando surge una nueva necesidad, puede abordarla él mismo: sin desarrollador, sin ticket de soporte.\"],\"KAB1uP\":[\"contigo\"],\"OX5bbs\":[\"Correo electrónico de trabajo *\"],\"woYYQq\":[\"Flujos de trabajo\"],\"1ie9Dm\":[\"Flujos de trabajo que\"],\"AzqmMJ\":[\"Flujos de trabajo que realmente se usan\"],\"pmUArF\":[\"Espacio de trabajo\"],\"bwECg/\":[\"Workspace URL, customer references, relevant links…\"],\"zkWmBh\":[\"Anual\"],\"S6izIJ\":[\"Yemen 🇾🇪\"],\"l75CjT\":[\"Sí\"],\"bo6pUs\":[\"Sí, con nuestro framework de Apps. Inicializa una extensión con `npx create-twenty-app` y entrega objetos personalizados, funciones de lógica del lado del servidor, componentes de React que se renderizan dentro de la interfaz de Twenty, habilidades y agentes de IA, vistas y navegación, todo en TypeScript, desplegable en cualquier espacio de trabajo.\"],\"yIcBW6\":[\"Sí. Cada espacio de trabajo Cloud incluye un servidor MCP nativo. Conecta tu asistente de IA mediante OAuth y podrá leer y escribir tus datos del CRM en lenguaje natural.\"],\"8xYMYQ\":[\"Sí. Importa tus datos vía CSV, o usa nuestra API para 50,000+ registros. Nuestros partners pueden encargarse de toda la migración por ti.\"],\"8m0eN9\":[\"Sí. Twenty es el CRM de código abierto n.º 1 en GitHub. Puedes autoalojarlo para poseer por completo tu infraestructura, o ejecutarlo en nuestra nube gestionada para una configuración sin operaciones.\"],\"LJ3sTb\":[\"No compras tu pipeline de despliegue ya hecho. No alquilas tu almacén de datos a un proveedor que decide el esquema. Lo construyes, es tuyo y iteras sobre él cada semana. El CRM va por el mismo camino. Los equipos que lo traten como una infraestructura propia acumularán una ventaja cada trimestre.\"],\"SfJVcK\":[\"Tu compra se ha completado. Sigue los pasos a continuación para copiar tu clave de licencia en tu instancia de Twenty.\"],\"krHgj1\":[\"Tu clave empresarial\"],\"+dxjCu\":[\"Tu licencia empresarial se ha activado correctamente.\"],\"pEQiCY\":[\"Tu nombre *\"],\"fQATWn\":[\"Tu red, completamente mapeada.\"],\"CgGN5T\":[\"Zambia 🇿🇲\"],\"wHjFOw\":[\"Cero\"],\"xlFvlS\":[\"Cero trabajo manual\"],\"ZvEoMq\":[\"Cero trabajo manual en el núcleo. Automatización total. Construido sobre Twenty.\"],\"TT3YXb\":[\"Zimbabwe 🇿🇼\"]}")as Messages;
\ No newline at end of file
+/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"BUIzFF\":[\"-33% de descuento\"],\"q0ur5+\":[[\"0\"],\" | Caso de cliente de Twenty\"],\"NSO/FI\":[[\"hourly\"],\"/hr\"],\"2Ha6K9\":[[\"labelText\"],\" filter, \",[\"0\"],\" selected, click to open\"],\"0Xh9/0\":[[\"labelText\"],\" filter, click to open\"],\"icND7o\":[\"/ asiento / mes - facturado anualmente\"],\"XUqxHW\":[\"/usuario/mes\"],\"ojimXJ\":[\"© 2026 – Twenty\"],\"2ygf/L\":[\"← Back\"],\"9j/bUt\":[\"← Twenty partners\"],\"foGG8A\":[\"+$105/usuario por mes\"],\"Bsq9GJ\":[\"+$35/usuario por mes\"],\"mWSpW5\":[\"+$5/usuario por mes\"],\"JIwDAd\":[\"+$7000/organización al mes\"],\"yVr18d\":[\"+$75/usuario al mes\\n¡Pásate a Enterprise!\"],\"iK+ikF\":[\"+10k más\"],\"nRtVCK\":[\"+20% del gasto neto\\n+$75/usuario al mes\\n¡Pásate a Enterprise!\"],\"Uqm/0u\":[\"<0>...with AI that actually0><1/><2>helps you2><3>work faster3>\"],\"ZKcQvG\":[\"<0>A CRM for teams0><1/><2>that2><3>move fast3>\"],\"2Avwos\":[\"<0>A custom CRM gives your org an edge,0><1>but building one1><2>comes with2><3>tradeoffs3>\"],\"GIqRh7\":[\"<0>A demo worth a0><1/><2>thousand words2>\"],\"h5K9X+\":[\"<0>A modern CRM with0><1>an intuitive interface1>\"],\"YXQqRD\":[\"<0>Assemble, iterate and adapt a robust CRM,0><1>that's quick to flex1>\"],\"XnXDNI\":[\"<0>Become0><1/><2>our partner2>\"],\"Tp01iS\":[\"<0>Begin with production-grade0><1>building blocks1>\"],\"LCx6+8\":[\"<0>Build a CRM your competitors0><1>can't buy.1>\"],\"lt0XAM\":[\"<0>Build it in an afternoon.0><1>AI made the gap that small.1>\"],\"y8AZXw\":[\"<0>Build your Enterprise CRM0><1>at AI Speed1>\"],\"OGcRSu\":[\"<0>Continue iteration0><1>without friction1>\"],\"2fzdgb\":[\"<0>CRM was a ledger.0><1>AI turned it into an operating system.1>\"],\"gx6Utt\":[\"<0>Dev teams power<1/>company-wide0><2/><3>change with Twenty3>\"],\"FyjPh/\":[\"<0>Differentiation now0><1>lives in the code you own.1>\"],\"FymD+X\":[\"<0>Enterprise0><1>activation1>\"],\"V7uulz\":[\"<0>Everything you need,0><1>out of the box1>\"],\"IvtaRX\":[\"<0>Find your0><1>Twenty partner1>\"],\"f36X9W\":[\"<0>Go the extra mile0><1>with no-code1>\"],\"NUko9S\":[\"<0>How teams0><1/><2>built with Twenty2>\"],\"WCsM/Q\":[\"<0>Latest0><1/><2>Releases2>\"],\"1LHR8V\":[\"<0>Make your GTM team happy0><1/><2>with2><3>a CRM they'll love3>\"],\"K6xBTA\":[\"<0>Ready to build0><1/><2>your own story?2>\"],\"pddHmc\":[\"<0>Ready to grow0><1/><2>with Twenty?2>\"],\"mzlPTg\":[\"<0>See how teams0><1/><2>build2><3>on Twenty3>\"],\"7D+4tN\":[\"<0>Simple0><1/><2>Pricing2>\"],\"pj2iec\":[\"<0>Stay in control with our0><1>open-source software1>\"],\"Oc/cFZ\":[\"<0>Stop fighting custom.0><1/><2>Start building, with Twenty2>\"],\"zykz1r\":[\"<0>The future of CRM is built,0><1>not bought.1>\"],\"6LusuM\":[\"<0>Trust the n°1 CRM,0><1>or not!1>\"],\"be30i9\":[\"$0\"],\"6inRXo\":[\"$1/ejecución de orquestación/organización\\n+$75/usuario al mes\\n¡Pásate a Enterprise!\"],\"EkIZkY\":[\"$19\"],\"8r6DgO\":[\"$9\"],\"EHNAf2\":[\"1 clic\"],\"qvNspm\":[\"1‑800‑YES‑SOFTWARE\"],\"6WQdu8\":[\"100 por minuto\"],\"uuKUqZ\":[\"11 grupos\\nde permisos\"],\"2szX5S\":[\"150\"],\"SaSafJ\":[\"150 horas\"],\"9ntyY8\":[\"150 h\"],\"2z1Znr\":[\"Contrato de 2 años\"],\"l6Vx4q\":[\"2,000+\"],\"FKcV/y\":[\"2025\"],\"PJgfBS\":[\"3\"],\"BL47wE\":[\"3 contratos de 2 años\\n-33% de descuento\"],\"/jgC+9\":[\"3 líneas de producto\"],\"7SJhyh\":[\"30+\"],\"Pdl2UE\":[\"4 herramientas\"],\"2ScEtE\":[\"5 créditos de flujo de trabajo/mes incluidos\"],\"hIKxCy\":[\"5,000\"],\"Z2TH0F\":[\"50 por minuto\"],\"CiRGZ8\":[\"50 créditos de flujo de trabajo/año incluidos\"],\"tZvajW\":[\"6 flujos de trabajo\"],\"AQPMc4\":[\"90%\"],\"fHxYPM\":[\"90%+\"],\"1GAcp6\":[\"Un negocio que no encaja en una\"],\"NLSM5L\":[\"Un negocio que no encaja en una plantilla\"],\"GSM5RA\":[\"Un CRM que\"],\"diWAWP\":[\"Un CRM que crece contigo\"],\"och6cp\":[\"Un CRM que crece contigo | NetZero y Twenty\"],\"EewhZt\":[\"Un CRM que\"],\"muZzEA\":[\"Un CRM que realmente les pertenece\"],\"GoyOzl\":[\"Una plataforma lista para\"],\"rxMguZ\":[\"Una plataforma lista para crecer\"],\"R5hTKX\":[\"Una agencia inmobiliaria en WhatsApp\"],\"hwoGni\":[\"Una agencia inmobiliaria en WhatsApp creó un CRM a su alrededor\"],\"WjUlJr\":[\"Que un tema retro sea un complemento de pago es, de algún modo, la parte más creíble.\"],\"r9Msiv\":[\"Hace un año, personalizar tu CRM significaba contratar a un consultor de Salesforce, aprender Apex y esperar meses. La brecha entre \\\"lo quiero\\\" y \\\"ya está en producción\\\" se medía en trimestres y facturas. Así que la gente se conformaba. Doblaban su proceso para adaptarlo a la herramienta y lo llamaban adopción.\"],\"c0RR2h\":[\"Unas 150 horas al mes ahorradas en operaciones manuales. Métricas en tiempo real para el propietario del negocio. Preparación para crecer sin añadir personal operativo. Un equipo que puede responder preguntas que antes llevaban días en responder.\"],\"41o3VS\":[\"AC&T y Flycoder pasaron de una exportación de un proveedor inactivo a Twenty autoalojado, con más del 90% de reducción en el costo del CRM y control total.\"],\"TuJiQF\":[\"AC&T Education Migration\"],\"yHUdh6\":[\"AC&T Education Migration (actimmi.com) es una agencia educativa en Australia. Ayudan a estudiantes internacionales con solicitudes a instituciones educativas y visas. Habían estado en un CRM anterior hasta que el proveedor cerró el sistema, dejando solo una exportación CSV.\"],\"MPzy5R\":[\"AC&T pasó a una instancia de Twenty autoalojada sin riesgo del proveedor, sin migraciones forzadas y con costos de CRM reducidos en más del 90%.\"],\"J+A83M\":[\"AC&T reemplazó un CRM de proveedor clausurado por Twenty autoalojado y redujo los costos del CRM en más del 90%.\"],\"muhZ+X\":[\"Activando tu licencia Enterprise…\"],\"Yyn/dP\":[\"Active filters\"],\"TDMykO\":[\"realmente se use\"],\"+/fX0G\":[\"realmente poseen\"],\"woOp+c\":[\"Añade objetos y campos\"],\"Y2K3rp\":[\"Complementos\"],\"Op7nVF\":[\"Adopción\"],\"TeMRC2\":[\"avanzado\"],\"2050Pj\":[\"Advisory & Discovery\"],\"QjSFuI\":[\"Afghanistan 🇦🇫\"],\"StqEz0\":[\"Africa\"],\"NmHsVh\":[\"Agency\"],\"vZKKhf\":[\"Aggregate, bar, line, and pie widgets\"],\"rp2omj\":[\"Agroindustria\"],\"jiGK6+\":[\"IA (Einstein)\"],\"aUn7Ps\":[\"IA y automatizaciones\"],\"HbXHSp\":[\"Agentes de IA\"],\"WGXwzu\":[\"Los agentes de IA están empezando a redactar mensajes de prospección, puntuar prospectos, investigar cuentas, escribir seguimientos y actualizar las etapas de los acuerdos. Cada una de estas acciones lee y escribe en el CRM. El marcador se convirtió en el libro de jugadas. La base de datos se convirtió en el cerebro.\"],\"Rsxdfy\":[\"Agentes de IA con habilidades personalizadas\"],\"TfV/y9\":[\"Chat de IA, ajustes y registros en paneles laterales para un acceso rápido en una sola pantalla.\"],\"R+bwFB\":[\"IA para iteraciones rápidas\"],\"+pgY/C\":[\"IA en el\"],\"A6v5aI\":[\"IA en el flujo de migración\"],\"t97j+F\":[\"Asistido por IA\"],\"7xlBwk\":[\"Albania 🇦🇱\"],\"EszGq4\":[\"Algeria 🇩🇿\"],\"LIGwFL\":[\"Alternative Partners\"],\"GDVvyT\":[\"Alternative Partners es una firma de consultoría que pasó de Salesforce a una instancia de Twenty autoalojada. Benjamin Reynolds lideró la migración. Ya se había convertido en un experto en Twenty al implementarlo para uno de los primeros clientes en la nube de Twenty.\"],\"CCrRuT\":[\"Alternative Partners reemplazó Salesforce por Twenty autoalojado, usando IA agéntica para comprimir el trabajo de migración.\"],\"UIu18Y\":[\"Alternative Partners utilizó IA agéntica para comprimir lo que normalmente serían semanas de trabajo de migración de Salesforce en algo que una sola persona pudiera supervisar.\"],\"iFLhqi\":[\"Amrendra Pratap Singh\"],\"Sbiivs\":[\"Andorra 🇦🇩\"],\"Uv5eaJ\":[\"Angola 🇦🇴\"],\"qKANz3\":[\"Antigua & Barbuda 🇦🇬\"],\"aGCcXe\":[\"¿Alguna pregunta?\"],\"lgSvgF\":[\"Anything else we should know?\"],\"pkMjbA\":[\"Anything that needs a developer.\"],\"dYZUP3\":[\"Anything that needs devops skills.\"],\"AfiWqP\":[\"APAC\"],\"/AMVjF\":[\"Tutoriales de APEX\"],\"OZtEcz\":[\"API\"],\"yKBF3l\":[\"Acceso a la API\"],\"GpYSXo\":[\"Espina dorsal de la API\"],\"30KnZB\":[\"Llamadas a la API\"],\"42FQ3y\":[\"API primero\"],\"azQMHP\":[\"Las APIs se pagan aparte. La simplicidad tiene un precio.\"],\"MqJvvH\":[\"APIs, SDKs y webhooks para ampliar Twenty y lanzar aplicaciones sobre los datos de tu CRM.\"],\"I1Z4AM\":[\"Solicita para crear\"],\"zX3HUD\":[\"Apply to join the Twenty certified partner ecosystem.\"],\"8HV3WN\":[\"Arabic\"],\"uicv6Z\":[\"Arquitectura\"],\"fT9xVz\":[\"Argentina 🇦🇷\"],\"3KxGep\":[\"Armenia 🇦🇲\"],\"Sfa0xD\":[\"a su alrededor\"],\"S+Q+1d\":[\"Ask questions, automate tasks, and get insights with AI that understands your data and helps you move faster every day, end to end across teams.\"],\"v7zTZl\":[\"Asigna responsables y fechas de vencimiento\"],\"4/b98B\":[\"en el núcleo\"],\"fxL/Km\":[\"Archivos adjuntos sin caos.\"],\"y2W2Hg\":[\"Registros de auditoría\"],\"tw0/s1\":[\"Australia 🇦🇺\"],\"4cf5s+\":[\"Austria 🇦🇹\"],\"FFv0Vh\":[\"Automatización\"],\"SJ7WSP\":[\"¡Disponible en YouTube!\"],\"8d+jRc\":[\"Azerbaijan 🇦🇿\"],\"iH8pgl\":[\"Volver\"],\"wIoAQo\":[\"Bahamas 🇧🇸\"],\"Rhju1T\":[\"Bahrain 🇧🇭\"],\"LxzgmZ\":[\"Bangladesh 🇧🇩\"],\"rtcPS0\":[\"Barbados 🇧🇧\"],\"RownlY\":[\"Based in\"],\"jQLfIW\":[\"Porque, al parecer, la privacidad se siente más premium con un recargo.\"],\"qEQv1F\":[\"Como todo está construido sobre la base abierta de Twenty, Flycoder pudo conectar la lógica exacta que AC&T necesitaba sin pelear con la plataforma.\"],\"uIG0OH\":[\"Como la base es sólida, W3Grads está diseñado para lo que viene, incluida una capa de pagos para futuros planes de entrevistas de pago y escala nacional sin reescrituras estructurales.\"],\"JGM+JO\":[\"Porque la verdadera orquestación significa poner un signo de dólar en cada entrada dramática.\"],\"PKMHNe\":[\"¡Conviértete en un genio!\"],\"6ZCRfT\":[\"Conviértete en socio\"],\"7ysT6Z\":[\"Become a Twenty Partner — Application\"],\"0TCnEf\":[\"Belarus 🇧🇾\"],\"qblg4t\":[\"Belgium 🇧🇪\"],\"pSF7xM\":[\"Belize 🇧🇿\"],\"Hds3Bq\":[\"Bengali\"],\"cTWkw3\":[\"Benin 🇧🇯\"],\"SYfuGP\":[\"Benjamin Reynolds\"],\"YfjrMq\":[\"Bertrams\"],\"mzTjnf\":[\"¡Mejor que Liquid Glass!\"],\"GvGk4g\":[\"Más allá\"],\"OPnz/X\":[\"Bhutan 🇧🇹\"],\"TVJDFA\":[\"Bolivia 🇧🇴\"],\"MkvsWx\":[\"Book a call\"],\"Wzdd8u\":[\"Bosnia & Herzegovina 🇧🇦\"],\"wtNsrt\":[\"Botswana 🇧🇼\"],\"yCaNfF\":[\"Brazil 🇧🇷\"],\"bxWnM1\":[\"romper operaciones\"],\"fYFNV7\":[\"Browse Twenty's certified partner network: regional coverage, languages, deployment expertise, and direct booking links.\"],\"VX4eI/\":[\"Brunei 🇧🇳\"],\"sbr0X/\":[\"Build a dashboard of pipeline by stage\"],\"uetyzD\":[\"Build a pipeline board grouped by stage\"],\"Utc5RF\":[\"Crea paneles personalizados a partir de datos de CRM en tiempo real. Agrupa cualquier cosa — acuerdos, cuentas, actividad — en gráficos que tu equipo realmente consulte.\"],\"e1u+Zh\":[\"Construye sobre una plataforma abierta\"],\"/ETeLn\":[\"construyó un\"],\"SoAKmY\":[\"Construido para la velocidad\"],\"sdItv6\":[\"Bulgaria 🇧🇬\"],\"dNnRlc\":[\"Burkina Faso 🇧🇫\"],\"j8RGrG\":[\"Quemados por el bloqueo del proveedor, AC&T construyó un CRM del que realmente son dueños | Twenty\"],\"jtdtLa\":[\"Burundi 🇧🇮\"],\"L40Ae7\":[\"Calendar / booking link\"],\"4yFkf9\":[\"Cambodia 🇰🇭\"],\"AvRzYu\":[\"Cameroon 🇨🇲\"],\"wCALve\":[\"¿Pueden los desarrolladores ampliar Twenty con código?\"],\"6mytgb\":[\"¿Puedo migrar desde Salesforce o HubSpot?\"],\"nEOTNi\":[\"Canada 🇨🇦\"],\"hRO6uK\":[\"Cape Verde 🇨🇻\"],\"M1RLfx\":[\"Catalan\"],\"NUrY9o\":[\"Categories\"],\"dBApoS\":[\"Central African Republic 🇨🇫\"],\"iI3Dq9\":[\"Chad 🇹🇩\"],\"2D9CbR\":[\"Ver más complementos\"],\"2BY3So\":[\"Chile 🇨🇱\"],\"zG6t8U\":[\"China 🇨🇳\"],\"h1IXFK\":[\"Chinese\"],\"3wV73y\":[\"City\"],\"ZbCD7v\":[\"Lo clásico nunca muere. Solo se extiende una vez más.\"],\"u8JHrO\":[\"Clear filters\"],\"L/LPQZ\":[\"Cloud Pro cuesta $9/usuario/mes (anual). Organization cuesta $19/usuario/mes y desbloquea SSO y permisos a nivel de fila para equipos que necesitan un control de acceso más fino.\"],\"WYgF8M\":[\"Cloud Pro empieza en $9/usuario/mes con objetos personalizados ilimitados. Aloja tú mismo el núcleo de código abierto gratis o actualiza a Organization para SSO y permisos a nivel de fila.\"],\"1YncLF\":[\"Cofundador en NetZero\"],\"vWaYWP\":[\"Cofundador, NetZero\"],\"dcLsG5\":[\"Colombia 🇨🇴\"],\"b5bnuN\":[\"Asignación de columna a campo (incluyendo relaciones)\"],\"ofoEsM\":[\"¡Próximamente!\"],\"KGD9Kt\":[\"Licencia comercial (sin obligaciones AGPL)\"],\"OnPROL\":[\"Commercials\"],\"chL5IG\":[\"Comunidad\"],\"8CLnho\":[\"Soporte de la comunidad\"],\"RxpseA\":[\"Comoros 🇰🇲\"],\"SHjhDC\":[\"Empresa o marca *\"],\"P/f7ez\":[\"Completa la activación de tu licencia Enterprise de Twenty autoalojada.\"],\"Fkb+LW\":[\"Compón tu CRM y tus aplicaciones internas con un único kit de extensibilidad.\"],\"kD7ZGH\":[\"Compón tu CRM y tus aplicaciones internas con un único kit de extensibilidad. Modelo de datos, diseño y automatización.\"],\"2DQw7/\":[\"Congo 🇨🇬\"],\"iSLIjg\":[\"Conectar\"],\"90KBr0\":[\"Conecta cuentas de Google o Microsoft\"],\"xgrBCK\":[\"Conecta cuentas de Google o Microsoft y ve automáticamente los correos y eventos vinculados a los registros de CRM.\"],\"MVrQxI\":[\"Conectado vía API\"],\"cfAG43\":[\"Consultoría\"],\"GsUBlG\":[\"Contact \",[\"partnerName\"]],\"Oii3vg\":[\"Contactos y Empresas\"],\"24qVhV\":[\"El contexto vive con el registro.\"],\"+Uepfb\":[\"Control\"],\"VOpE1H\":[\"centro de control\"],\"sTIhSj\":[\"Control sin\"],\"wH1xmY\":[\"Control sin fricción\"],\"Bj7igG\":[\"Control sin la sobrecarga\"],\"PiH3UR\":[\"¡Copiado!\"],\"he3ygx\":[\"Copiar\"],\"7qTWwB\":[\"Copia la clave de Enterprise de arriba.\"],\"PXnj76\":[\"Copia esta clave y pégala en la configuración de tu instancia autoalojada de Twenty.\"],\"FapWIq\":[\"Funciones básicas\"],\"Al/blj\":[\"Costa Rica 🇨🇷\"],\"JRK+HF\":[\"Costos reducidos en más de\"],\"cRA2/z\":[\"Country *\"],\"Xn2Nlq\":[\"Crea un flujo de trabajo\"],\"B9nLrl\":[\"Crea aplicaciones en Twenty\"],\"yAL7FY\":[\"Crea aplicaciones personalizadas\"],\"oS1RiS\":[\"Crea tareas desde los registros\"],\"D3S5+x\":[\"Crea tareas, asigna responsables y adjunta notas detalladas directamente desde cualquier registro. Sin cambiar de pestaña, sin perder el contexto.\"],\"MSlbwg\":[\"CRM\"],\"NLgmM4\":[\"CRM audit · Requirements · Process mapping · ROI · RevOps · Vendor selection\"],\"Y44Xsf\":[\"Los costos del CRM cayeron más de un 90%. La carga manual ligada al sistema antiguo desapareció. Por primera vez, AC&T tiene un CRM que no volverán a perder.\"],\"wDasLa\":[\"Ingeniero de CRM\"],\"DqkzNV\":[\"Ingeniero de CRM, AC&T Education Migration\"],\"b7vNti\":[\"El CRM era una base de datos que rellenabas los viernes. La IA lo convirtió en el sistema que impulsa tu salida al mercado. Para diferenciarte, tienes que construir lo que tus competidores no pueden comprar.\"],\"OACAVp\":[\"Croatia 🇭🇷\"],\"I6FFSA\":[\"Exportación CSV en cualquier momento\"],\"8RWevB\":[\"Importación y exportación CSV\"],\"s+QiQi\":[\"Flujo de importación CSV\"],\"O2UtEV\":[\"Cuba 🇨🇺\"],\"lh6aPn\":[\"Modelos de IA personalizados\"],\"OaTurC\":[\"Aplicaciones personalizadas\"],\"TcUCTv\":[\"Custom Apps · Scripts · AI/agent integrations\"],\"yBSEtR\":[\"Etapas de negociación personalizadas para tu proceso\"],\"L+b7SB\":[\"Etapas de acuerdos personalizadas, tableros de arrastrar y soltar y seguimiento en tiempo real para que tu pipeline refleje la realidad.\"],\"DUnke3\":[\"Custom Development\"],\"GAD3Dx\":[\"Dominio personalizado\"],\"Vz1Vq2\":[\"Dominio personalizado (crm.yourco.com)\"],\"oPwQt4\":[\"Campos personalizados\"],\"U1RB/7\":[\"Campos y relaciones personalizados\"],\"WGKb6T\":[\"Campos personalizados, relaciones y una cronología unificada para cada contacto y empresa en tu espacio de trabajo.\"],\"prIqWa\":[\"Diseño personalizado\"],\"8skTDV\":[\"Objetos personalizados\"],\"AbyZbl\":[\"Vistas personalizadas\"],\"YjXLAQ\":[\"Historias de clientes\"],\"NihQNk\":[\"Clientes\"],\"qqLY+j\":[\"Personalización\"],\"GRfLAg\":[\"Personalizaciones\"],\"Pj5fGG\":[\"Cyprus 🇨🇾\"],\"w9VTXG\":[\"Czech\"],\"xkuHM6\":[\"Czech Republic 🇨🇿\"],\"4RLD4p\":[\"Mensajes diarios\"],\"Fo2vDn\":[\"Danish\"],\"V0kvgB\":[\"Importación de datos\"],\"5cNMFz\":[\"Modelo de datos\"],\"iq2WTm\":[\"Data modeling · Migrations · No-code workflows · Dashboards · SSO/SCIM · Integrations\"],\"/TlpVf\":[\"Acuerdos que se mueven solos.\"],\"H1UtjM\":[\"Denmark 🇩🇰\"],\"n+SX4g\":[\"Desarrolladores\"],\"Wuqvfz\":[\"Director de Digital e Información, Elevate Consulting\"],\"e7R9Zi\":[\"Discover the newest features and improvements in Twenty,<0/>the #1 Open Source CRM.\"],\"W+b/DF\":[\"Descubre qué hay de nuevo\"],\"rHLwDO\":[\"Djibouti 🇩🇯\"],\"Zjjbne\":[\"¿Necesito un desarrollador para personalizar Twenty?\"],\"Zx22Ih\":[\"¿Twenty funciona con Claude, ChatGPT y Cursor?\"],\"bMDnQR\":[\"Dominica 🇩🇲\"],\"ufcRA6\":[\"Dominican Republic 🇩🇴\"],\"pOLPPB\":[\"No te encierres en el ecosistema de otra persona. La experiencia de desarrollador de Twenty se parece al software normal, con configuración local, datos reales, pruebas en vivo y sin herramientas propietarias.\"],\"HDR0en\":[\"DR Congo 🇨🇩\"],\"mzedFr\":[\"Draft a workflow for an email sequence\"],\"fPma12\":[\"Arrastra y suelta acuerdos entre etapas\"],\"KIjvtr\":[\"Dutch\"],\"6r6pDf\":[\"e.g. React, Postgres, n8n…\"],\"hEtClO\":[\"Ecuador 🇪🇨\"],\"4CJ4xV\":[\"EdTech\"],\"aqxYLv\":[\"Educación\"],\"OAdXUT\":[\"Egypt 🇪🇬\"],\"2xK+An\":[\"El Salvador 🇸🇻\"],\"1wTjWx\":[\"Elevate Consulting es una consultora de gestión con sede en Canadá. Cuando Justin Beadle, Director de Digital e Información, se incorporó, la empresa funcionaba completamente con documentos de Word, hojas de cálculo de Excel, notas adhesivas, correos electrónicos y dependencia de las personas. No había CRM, ni herramientas accesibles por API, solo un remiendo que intentaba reemplazar una única fuente de verdad.\"],\"2THY70\":[\"Elevate Consulting usa Twenty como la espina dorsal de API que conecta la facturación, Teams, la asignación de recursos y un front-end personalizado alrededor de los datos de clientes y oportunidades.\"],\"wiTeYI\":[\"El CEO de Elevate quedó tan impresionado con Twenty que empezó a recomendarlo a los clientes antes de que la configuración interna estuviera completa. El equipo está explorando llevar Twenty a proyectos de clientes como parte de su práctica de consultoría, incluso como backend para productos hechos a medida según necesidades operativas específicas.\"],\"FNyrb0\":[\"Correo y Calendario\"],\"AoN898\":[\"Correo y chat\"],\"ObCvfI\":[\"Compartir correos\"],\"hfqiVr\":[\"Actividad de correo/calendario en cada registro\"],\"XGd8Wo\":[\"Correos y Calendario\"],\"o4/9l1\":[\"Correos y eventos vinculados a registros del CRM\"],\"Qpn/bX\":[\"Cifra tus datos\"],\"Iy8Gze\":[\"Rotación de claves de cifrado\"],\"lYGfRP\":[\"English\"],\"Ijh+h+\":[\"Disfruta de personalización ilimitada usando las herramientas de codificación con IA que ya te encantan. Adapta tu CRM para que se ajuste a la forma en que tu negocio crece y gana.\"],\"xoqD/n\":[\"Introduce una dirección de correo válida.\"],\"/OVUD6\":[\"Enter a valid URL (starting with http:// or https://).\"],\"NTskGY\":[\"Activación de Enterprise | Twenty\"],\"3dQ6zJ\":[\"Entornos\"],\"c0nqfC\":[\"Equatorial Guinea 🇬🇶\"],\"4DIpFY\":[\"Eritrea 🇪🇷\"],\"JIhNLR\":[\"Estonia 🇪🇪\"],\"8yXuJ9\":[\"Eswatini 🇸🇿\"],\"rktGGp\":[\"Ethiopia 🇪🇹\"],\"rQqP1P\":[\"Europe\"],\"IhKZhp\":[\"Hasta el material de formación es una función digna de celebrar.\"],\"sQP1sF\":[\"Cada nuevo lanzamiento de Twenty, el CRM de código abierto n.º 1, con registros de cambios, demos y los aspectos destacados que más importan a los equipos.\"],\"rkZTD7\":[\"Cada conversación, en el registro correcto.\"],\"kz/8m8\":[\"Todo lo de Pro\"],\"zoNk7e\":[\"Todo se actualiza en tiempo real, con un chat de IA siempre listo para ayudarte a moverte más rápido.\"],\"57gG1f\":[\"Experimenta granularidad de nivel empresarial, empezando por un undécimo permiso.\"],\"uZRQi+\":[\"Expertise & experience\"],\"JTM5zS\":[\"Explora historias de clientes\"],\"weFouS\":[\"¡Ejecución extendida!\"],\"akLvep\":[\"Interfaz moderna y familiar\"],\"gKNP7S\":[\"Farsi\"],\"abO45l\":[\"Vía rápida hacia la acción\"],\"e6BgMV\":[\"Permisos a nivel de campo\"],\"z+q1Th\":[\"Fiji 🇫🇯\"],\"sER+bs\":[\"Archivos\"],\"bOidm7\":[\"Filter partners\"],\"iabLgo\":[\"Métricas filtradas de cualquier objeto\"],\"sRUAXp\":[\"Encuentra un socio certificado de Twenty para migrar, personalizar y operar tu CRM de código abierto, o únete al ecosistema y haz crecer tu práctica con nosotros.\"],\"TJ7HQl\":[\"Encuentra un socio\"],\"MD032e\":[\"Encuentra un socio de Twenty\"],\"YeWg37\":[\"Find a Twenty Partner — Certified Open Source CRM Implementers\"],\"wHyJkT\":[\"Encuentra al socio adecuado para implementar, personalizar y adaptar Twenty a tu equipo.\"],\"9V48qi\":[\"Finland 🇫🇮\"],\"USZ2N6\":[\"Finnish\"],\"PHM5wp\":[\"Flexibilidad\"],\"HBJ0P5\":[\"Orquestación\\nde flujos\"],\"obrJBN\":[\"Vuela por tu espacio de trabajo con atajos y tiempos de carga cortos.\"],\"HjFq2b\":[\"Flycoder, un socio de desarrollo full-stack, les ayudó a configurar Twenty como una instancia autoalojada moldeada según cómo AC&T realmente opera. El modelo de datos se centra en los estudiantes, no en un pipeline genérico de contactos y acuerdos. Los estados se actualizan automáticamente: un flujo de trabajo se ejecuta cada noche para mantener actualizados los registros de inscripción. Los recordatorios de correo automatizados cubren fechas importantes. Agregar un nuevo registro toma menos de un minuto.\"],\"1SL9ZF\":[\"Céntrate en el caso de uso, no en la\"],\"P5E+kT\":[\"Céntrate en el caso de uso, no en la infraestructura\"],\"wdVyxi\":[\"Importación de carpetas/etiquetas\"],\"CKQ0za\":[\"Para una empresa que antes funcionaba con notas adhesivas, esto es más que una mejora. Es una transformación completa.\"],\"yAJC9c\":[\"Durante veinte años, CRM significó lo mismo: un lugar para registrar llamadas, seguir acuerdos y sacar informes el viernes. El trabajo real ocurría en la cabeza de las personas, en hilos de Slack, en conversaciones de pasillo. El CRM llevaba la cuenta. Nadie esperaba más de él.\"],\"wSoqhC\":[\"base\"],\"UCoxP5\":[\"Fundador, Nine Dots Ventures\"],\"IPaRlc\":[\"Fundador, Wintactix\"],\"671GY5\":[\"France 🇫🇷\"],\"tUgSXd\":[\"¡Gratis para ti!\"],\"nLC6tu\":[\"French\"],\"weRlb1\":[\"from \",[\"minBudget\"]],\"Iuxc00\":[\"De CSV a CRM en minutos.\"],\"yDeZSV\":[\"De documentos a\"],\"emeKZ7\":[\"De documentos a APIs abiertas\"],\"CMqgta\":[\"De Salesforce a\"],\"kl+hEJ\":[\"De Salesforce a Twenty autohospedado\"],\"syU/BD\":[\"De Salesforce a Twenty autoalojado, impulsado por IA | Alternative Partners\"],\"TH5XjF\":[\"De simple a\"],\"Lf7cb3\":[\"De simple a avanzado\"],\"m1I5TY\":[\"Historial de comunicación completo en un solo lugar\"],\"wXgKOm\":[\"Personalización completa\"],\"YZ7Q3Z\":[\"Propiedad total\"],\"hdxwWi\":[\"Totalmente personalizable\"],\"//hrfs\":[\"Gabon 🇬🇦\"],\"yau9J6\":[\"Gambia 🇬🇲\"],\"S84RWl\":[\"Generate tasks for my top 10 accounts\"],\"GOmD9p\":[\"Georgia 🇬🇪\"],\"DDcvSo\":[\"German\"],\"XcPIuI\":[\"Germany 🇩🇪\"],\"ZDIydz\":[\"Comenzar\"],\"xyKSqi\":[\"Ghana 🇬🇭\"],\"Ay/vbT\":[\"¡Buena elección!\"],\"Zh0acB\":[\"Grab 30 minutes so we can get to know your team.\"],\"+tDN2S\":[\"Greece 🇬🇷\"],\"CZXzs4\":[\"Greek\"],\"DDgHcm\":[\"Grenada 🇬🇩\"],\"IsZ6P7\":[\"crecer\"],\"MCLWq4\":[\"Crece con una base flexible\"],\"XpCing\":[\"crece\"],\"M/8CC1\":[\"Guatemala 🇬🇹\"],\"UZbq7J\":[\"Guinea 🇬🇳\"],\"vtpxPx\":[\"Guinea-Bissau 🇬🇼\"],\"GT8Ua2\":[\"Guyana 🇬🇾\"],\"5BLiJj\":[\"Haiti 🇭🇹\"],\"Xf5EJg\":[\"Generador de semitonos\"],\"DHC85F\":[\"Generador de Semitonos | Twenty\"],\"c3XJ18\":[\"Ayuda\"],\"CRzGla\":[\"Centro de ayuda\"],\"LiWOgh\":[\"Hey, I'm interested in meeting. Here's my project:\"],\"tGjibo\":[\"Hindi\"],\"qfSbUb\":[\"Su enfoque fue poco convencional. En lugar de mapear campos manualmente, crear scripts de transformaciones y validar datos paso a paso, entregó el trabajo a herramientas de IA agéntica con un briefing: dónde viven los datos, el repositorio de GitHub de la plataforma de destino y el despliegue en Railway. Empezar, y solo volver si algo se rompe más allá de una corrección con un 70% de confianza.\"],\"i0qMbr\":[\"Inicio\"],\"CtU7yU\":[\"Homeseller\"],\"KYnPnU\":[\"Homeseller es una agencia inmobiliaria de alto volumen en Singapur, fundada por uno de los agentes de bienes raíces con mejor rendimiento del país. Toda la operación funciona en WhatsApp: sin correo, sin calendarios, solo chats grupales, miles de ellos, con clientes, agentes y prospectos juntos.\"],\"v6cmMq\":[\"Homeseller mantuvo sus hábitos. WhatsApp siguió siendo WhatsApp. Lo que cambió es que todo lo que fluye por esas conversaciones ahora aterriza en un sistema estructurado, rastreado, clasificado y visible en tiempo real.\"],\"xaIV9m\":[\"Homeseller, WhatsApp y un CRM construido alrededor del negocio | Nine Dots y Twenty\"],\"zbfmqm\":[\"Honduras 🇭🇳\"],\"mqX9AX\":[\"Hosting & Infrastructure\"],\"SHZNBm\":[\"Hourly\"],\"Ivq5+7\":[\"Hourly rate\"],\"XnFo3G\":[\"Cómo AC&T Education Migration y Flycoder reemplazaron un CRM de proveedor clausurado por Twenty autoalojado, con más del 90% menos de costo y propiedad total.\"],\"PYi0f6\":[\"Cómo Alternative Partners migró de Salesforce a Twenty autoalojado usando IA agéntica en el ciclo de implementación: migración rápida, propiedad duradera.\"],\"+MLOVo\":[\"Cómo Elevate Consulting pasó de documentos y hojas de cálculo a Twenty como el CRM conectado por API en el centro de su stack.\"],\"OIwpKt\":[\"¿Cuánto tiempo se tarda en empezar?\"],\"iRzy9e\":[\"Cómo NetZero usa Twenty en créditos de carbono, productos agrícolas y sistemas industriales franquiciados con un CRM modular y una hoja de ruta hacia flujos de trabajo asistidos por IA.\"],\"NZYA4S\":[\"Cómo Nine Dots Ventures reconstruyó una agencia inmobiliaria de Singapur en Twenty con APIs, n8n, Grafana e IA sobre más de 2,000 mensajes de WhatsApp al día.\"],\"bcln75\":[\"Cómo Twenty recopila, usa, protege y divulga información cuando utilizas Twenty.com y servicios relacionados.\"],\"URQPvK\":[\"Cómo W3villa Technologies lanzó W3Grads, una plataforma de entrevistas simuladas con IA para instituciones, en Twenty como la columna vertebral operativa.\"],\"htrFcw\":[\"Hungary 🇭🇺\"],\"T6wyby\":[\"I'll book later →\"],\"RYDa0v\":[\"Iceland 🇮🇸\"],\"xalbpT\":[\"Ideas del equipo que construye Twenty sobre CRM de código abierto, datos de clientes, sistemas de GTM y creación de software duradero.\"],\"ePYQjq\":[\"Identity\"],\"l0JGUk\":[\"Suplantar usuarios\"],\"N4OVNn\":[\"Implementación\"],\"yHueLx\":[\"Socios de implementación\"],\"ZAKTS6\":[\"Importa tus datos con asignación de campos, incluidas las relaciones. Exporta en cualquier momento: tus datos siempre son tuyos.\"],\"InyU0Z\":[\"En junio de 2025, Justin se enteró de que Twenty v1 había salido. En dos o tres días, el CEO le pidió que explorara la configuración de un CRM. El cambio vino del potencial de lo que podía construirse sobre APIs totalmente abiertas. El momento fue perfecto.\"],\"d1Aru8\":[\"En producción.\"],\"Sqb+jp\":[\"Vista previa en la app para los tipos de archivo compatibles (cuando está habilitada)\"],\"3XP8Lk\":[\"¡Incluido!\"],\"/c4yUr\":[\"India 🇮🇳\"],\"iEJqDi\":[\"Indonesia 🇮🇩\"],\"BQukYF\":[\"Indonesian\"],\"S8gy7K\":[\"Industria\"],\"MeL8SS\":[\"Desplazamiento infinito\"],\"+mOisw\":[\"El desplazamiento infinito aún está por llegar, a diferencia de la factura.\"],\"K8iwJx\":[\"Instalar app de tarball compartido\"],\"AHWM9N\":[\"Integración\"],\"OChKCc\":[\"Generador de semitonos interactivo exportado desde Twenty.\"],\"+83cJG\":[\"Interested in meeting \",[\"partnerName\"]],\"mdsMtj\":[\"despliegue interno\"],\"a+PGuG\":[\"Cuentas de Internet por usuario\"],\"FtgjCv\":[\"Iran 🇮🇷\"],\"8yynyz\":[\"Iraq 🇮🇶\"],\"s7XmoY\":[\"Ireland 🇮🇪\"],\"/yQIKP\":[\"¿Twenty es realmente de código abierto?\"],\"SdtpDP\":[\"Israel 🇮🇱\"],\"QjEULz\":[\"Es una experiencia mucho mejor que lidiar con Salesforce o HubSpot. Mi misión ha sido que todas las herramientas tengan acceso por API, para que todo se comunique entre sí.\"],\"FJ51pP\":[\"Es una experiencia mucho mejor que lidiar con Salesforce o HubSpot. Mi misión ha sido que todas las herramientas tengan acceso por API, para que todo se comunique entre sí. Twenty hizo eso posible de una manera que las plataformas CRM más antiguas simplemente no pueden.\"],\"kqIAbN\":[\"Funcionó. Esto es iteración asistida por IA en la práctica: no IA como una función del producto, sino como parte del trabajo de implementación, comprimiendo lo que normalmente serían semanas en algo que una sola persona puede supervisar sin ser el cuello de botella.\"],\"ltNDOB\":[\"Es frágil. La V1 se lanza rápido, pero mantenerla y hacer cambios es una carga a largo plazo.\"],\"Lj7sBL\":[\"Italian\"],\"OSTD8d\":[\"Italy 🇮🇹\"],\"0BTIQi\":[\"Ivory Coast 🇨🇮\"],\"W6o2Pv\":[\"Jamaica 🇯🇲\"],\"kpk6mj\":[\"Japan 🇯🇵\"],\"dFtidv\":[\"Japanese\"],\"kX2mij\":[\"Únete a nuestro ecosistema y ayuda a las empresas a tomar el control de sus datos de clientes con\"],\"1qiriB\":[\"Únete a nuestro ecosistema de socios en crecimiento\"],\"APYcnh\":[\"Join our partner ecosystem and help businesses<0/>take control of their CRM.\"],\"5emzGz\":[\"Join the teams that chose to own their CRM.<0/>Start building with Twenty today.\"],\"QbxNys\":[\"Jordan 🇯🇴\"],\"pB76mP\":[\"jul 2025\"],\"hvwlu3\":[\"jun 2025\"],\"qrYDGE\":[\"Justin Beadle\"],\"vYXuJI\":[\"Justin creó flujos de trabajo para notificaciones en todo el equipo, alertando a las personas adecuadas en Teams cuando un prospecto se convierte en lead o cuando se alcanzan hitos de proyecto. Los formularios en Twenty permiten que el equipo de desarrollo de negocio registre actividad sin salir de la herramienta. El impacto es real para la organización. La herramienta ha sido adaptable desde el trabajo a nivel de oportunidad en un cliente hasta decisiones a nivel ejecutivo.\"],\"E6Oohx\":[\"La misión más amplia de Justin en Elevate ha sido pasar de documentos estáticos a herramientas con acceso por API. A finales de 2025, eso ya estaba en marcha: facturación por tiempo, planificación de recursos, Microsoft Teams y gestión de proyectos eran accesibles vía API, con Twenty en el centro manteniendo los datos de clientes y oportunidades. Los miembros del equipo pudieron usar esa información de forma estratégica en lugar de volver a teclearla.\"],\"r1cFAW\":[\"Kazakhstan 🇰🇿\"],\"kEahsE\":[\"Kenya 🇰🇪\"],\"IxBSi8\":[\"Kiribati 🇰🇮\"],\"h6S9Yz\":[\"Korean\"],\"PqhUrP\":[\"Kosovo 🇽🇰\"],\"3+TwF3\":[\"Kuwait 🇰🇼\"],\"e9zZkH\":[\"Kyrgyzstan 🇰🇬\"],\"GAmD3h\":[\"Idiomas\"],\"u6jooT\":[\"Languages spoken\"],\"YHacTY\":[\"Laos 🇱🇦\"],\"2lrGbG\":[\"LATAM\"],\"7OHfcc\":[\"Latvia 🇱🇻\"],\"rdU729\":[\"Diseño\"],\"+Ss/og\":[\"Aprende a usar Twenty\"],\"wB0DGn\":[\"Lebanon 🇱🇧\"],\"vifyyw\":[\"Legal\"],\"UqdHpG\":[\"Lesotho 🇱🇸\"],\"rJargy\":[\"Liberia 🇱🇷\"],\"Lzw0kM\":[\"Libya 🇱🇾\"],\"tHFTlp\":[\"Licenciatario:\"],\"K41WYc\":[\"Liechtenstein 🇱🇮\"],\"gggTBm\":[\"LinkedIn\"],\"Gg69LR\":[\"LinkedIn URL\"],\"2WIZYd\":[\"Lithuania 🇱🇹\"],\"AHVzME\":[\"Datos en tiempo real e IA integrada\"],\"GObQuL\":[\"Actualizaciones en tiempo real\"],\"zmRZwk\":[\"Las actualizaciones en tiempo real no están disponibles, lo cual es casi más honesto.\"],\"ObPscj\":[\"Cargando activación…\"],\"7VBQ2j\":[\"Local, Producción\"],\"JO8Bdx\":[\"Bloqueo\"],\"sQia9P\":[\"Iniciar sesión\"],\"KPLAuI\":[\"Reducir el costo del CRM\"],\"J13skq\":[\"Luxembourg 🇱🇺\"],\"nRYQC8\":[\"Madagascar 🇲🇬\"],\"qHvKxh\":[\"Malawi 🇲🇼\"],\"tF97tn\":[\"Malay\"],\"DIOh5g\":[\"Malaysia 🇲🇾\"],\"62/ScF\":[\"Maldives 🇲🇻\"],\"wc5E/3\":[\"Mali 🇲🇱\"],\"04fjhR\":[\"Malta 🇲🇹\"],\"Si4WyF\":[\"Consultoría de gestión\"],\"poX06f\":[\"Trabajo manual en el núcleo\"],\"VJOKPB\":[\"Vista de mapas\"],\"Zt5PUS\":[\"Marketplace\"],\"2jVbnO\":[\"Marshall Islands 🇲🇭\"],\"bJNKJ1\":[\"Domina cada rincón de Twenty\"],\"HG/EUg\":[\"Mauritania 🇲🇷\"],\"YDiaY/\":[\"Mauritius 🇲🇺\"],\"Zw+Zv+\":[\"Servidor MCP\"],\"zxcfgg\":[\"significa control\"],\"bwCiCi\":[\"Conoce a las agencias y consultores certificados que implementan Twenty para equipos de todo el mundo.\"],\"ujYZ+f\":[\"Conoce a los equipos que convirtieron Twenty en su propio CRM con implementaciones autoalojadas, flujos de trabajo asistidos por IA y stacks de producto con prioridad en la API.\"],\"CQ9M36\":[\"MENA\"],\"briyJf\":[\"Métricas en las que realmente puedes confiar.\"],\"YBLFQZ\":[\"Mexico 🇲🇽\"],\"KBirDR\":[\"Micronesia 🇫🇲\"],\"ZdvtU2\":[\"flujo de trabajo de migración\"],\"so04x6\":[\"Mike y Azmat de Nine Dots intervinieron para arreglarlo, no cambiando cómo funciona Homeseller, sino construyendo un sistema que por fin se ajustara a su alrededor.\"],\"izddzp\":[\"Mike Babiy\"],\"FFFENV\":[\"Minimum project budget\"],\"6m8rMT\":[\"Moldova 🇲🇩\"],\"qRRmSe\":[\"Monaco 🇲🇨\"],\"G+EV+A\":[\"Mongolia 🇲🇳\"],\"9VDoNp\":[\"Montenegro 🇲🇪\"],\"+8Nek/\":[\"Mensual\"],\"VqXuUv\":[\"¡Más opciones disponibles!\"],\"LAFO4Y\":[\"Morocco 🇲🇦\"],\"EwJDrS\":[\"Mozambique 🇲🇿\"],\"dlKkNL\":[\"Carga de múltiples archivos en los registros\"],\"QGWbbv\":[\"Myanmar 🇲🇲\"],\"6YtxFj\":[\"Nombre\"],\"yYmxee\":[\"Namibia 🇳🇦\"],\"zVOV14\":[\"Nauru 🇳🇷\"],\"LfNsfa\":[\"¿Necesitas un cambio rápido? Omite el ticket a ingeniería. Personaliza tu espacio de trabajo en minutos.\"],\"4sbgPq\":[\"¿Necesitas ayuda con la personalización?\"],\"LNVNNE\":[\"Nepal 🇳🇵\"],\"g60EgR\":[\"Netherlands 🇳🇱\"],\"8Cp4Of\":[\"NetZero\"],\"J8ZssL\":[\"NetZero ejecuta una instalación modular de Twenty para créditos de carbono, productos agrícolas y sistemas industriales.\"],\"7HVBV+\":[\"NetZero utiliza Twenty como un CRM modular en líneas de producto y países, con una hoja de ruta hacia flujos de trabajo asistidos por IA.\"],\"3PtYTO\":[\"NetZero trabaja con la agroindustria, atendiendo a clientes desde multinacionales hasta pequeños agricultores. Venden créditos de carbono, productos agrícolas y sistemas industriales franquiciados en tres líneas de producto diferentes, múltiples países y múltiples tamaños de empresa. Cuando Olivier Reinaud, cofundador de NetZero, comenzó a evaluar CRMs a finales de 2024, no buscaba la plataforma con más funciones. Quería la base adecuada.\"],\"/DTtCF\":[\"New Zealand 🇳🇿\"],\"GY6uSc\":[\"Next →\"],\"KqojOL\":[\"Próximos pasos\"],\"iBOZv7\":[\"Nicaragua 🇳🇮\"],\"61NU7V\":[\"Niger 🇳🇪\"],\"+2NLII\":[\"Nigeria 🇳🇬\"],\"qZ+egR\":[\"Nine Dots puso Twenty en el centro del stack de Homeseller con APIs, automatización e IA sobre operaciones fuertemente basadas en WhatsApp.\"],\"sGuHDu\":[\"Nine Dots reconstruyó las operaciones de Homeseller en Twenty, con un modelo de datos personalizado moldeado según su flujo de ventas. Como Twenty es abierto y todo es accesible vía API, lo conectaron con lo que el negocio realmente necesitaba: n8n para flujos de trabajo automatizados (los flujos dentro de la app no estaban disponibles en ese momento), Grafana para paneles en vivo alimentados desde Twenty y una capa de IA personalizada para analizar y extraer información estructurada de más de 2,000 mensajes de WhatsApp al día.\"],\"1UzENP\":[\"No\"],\"6tRXQ4\":[\"No matching country.\"],\"o+/Ad5\":[\"No más alquilar lo de otra persona\"],\"LmWdm6\":[\"No más alquilar la estructura de otra persona\"],\"UxK4so\":[\"No partners match your filters\"],\"q9f4Tp\":[\"Sin código\"],\"SiZ/7E\":[\"No. Crea objetos, campos, vistas y flujos de trabajo sin código directamente desde Configuración. Ilimitado, sin costo adicional.\"],\"096JXI\":[\"North Korea 🇰🇵\"],\"IwF7aJ\":[\"North Macedonia 🇲🇰\"],\"sZwk4U\":[\"Norway 🇳🇴\"],\"1IipHp\":[\"Norwegian\"],\"k3T2mM\":[\"Ahora un desarrollador puede describir lo que quiere a Claude Code y tener una app funcionando en una tarde. Un objeto personalizado, un flujo de puntuación, una vista nueva, una integración. El cuello de botella ya no es construir. Es si tu plataforma te lo permite.\"],\"WFvpMn\":[\"Now book your intro call.\"],\"CzeIij\":[\"Número de paneles\"],\"0dVyEt\":[\"de un stack de salida al mercado\"],\"pkrZnO\":[\"Olivier reconoce que el uso actual de Twenty por parte de NetZero sigue siendo relativamente simple: los flujos de trabajo y las integraciones aún no son tan profundos como eventualmente quiere, porque priorizó acertar primero con los cimientos.\"],\"l/1LQc\":[\"Olivier Reinaud\"],\"BdShAR\":[\"Oman 🇴🇲\"],\"D2b+1q\":[\"En un único CRM\"],\"XhXmzW\":[\"En esta página\"],\"jxC7HY\":[\"Onboarding · Documentation · Change management · L1/L2 support · Managed services\"],\"pbmZ7R\":[\"Paquetes de incorporación\"],\"/DFChQ\":[\"Uno\"],\"Zt1UZb\":[\"Una API para gobernarlas a todas\"],\"pShqss\":[\"Solo 5 $ para SSO. Prácticamente un programa de caridad.\"],\"3WErRa\":[\"APIs abiertas\"],\"pkXQA+\":[\"Abre Configuración → Enterprise en tu instancia autoalojada de Twenty.\"],\"wtKPUT\":[\"primitivas de código abierto.\"],\"5RkmVr\":[\"De código abierto, preparado para IA y tuyo para moldear.\"],\"ucgZ0o\":[\"Organización\"],\"dKGg8T\":[\"Agotado\"],\"PASC/7\":[\"Ha sobrevivido a cada rediseño desde 2004.\"],\"Bwsi7B\":[\"Haz tuyo el CRM de extremo a extremo\"],\"oDAEQq\":[\"Propiedad\"],\"NmF/Vo\":[\"Ser dueño de tu stack sigue estando misteriosamente agotado.\"],\"h/oMMb\":[\"Los CRMs en paquete hacen que todas las empresas se vean iguales. Twenty es el CRM de código abierto que los equipos moldean en torno a su flujo de trabajo, con una interfaz moderna y una plataforma con prioridad para desarrolladores.\"],\"+AiiMt\":[\"La paginación forja el carácter.\"],\"sW3DaS\":[\"Pakistan 🇵🇰\"],\"cvRU36\":[\"Palau 🇵🇼\"],\"u2htNd\":[\"Palestine 🇵🇸\"],\"pWLp16\":[\"Panama 🇵🇦\"],\"xOR4tu\":[\"Papua New Guinea 🇵🇬\"],\"kb3PhK\":[\"Paraguay 🇵🇾\"],\"mPkInZ\":[\"Socios\"],\"9yo8NN\":[\"Pega la clave y haz clic en Activar.\"],\"nxV7o2\":[\"dando sus frutos\"],\"OzAIDr\":[\"Peru 🇵🇪\"],\"LqRs8D\":[\"Philippines 🇵🇭\"],\"we6gj5\":[\"Pick every category that applies.\"],\"FFkjaT\":[\"Gestión de pipeline\"],\"gzkkC3\":[\"Pipelines, objetos personalizados, asistentes de IA y una API nativa sobre Postgres. Twenty es el CRM de código abierto con la experiencia moderna que los equipos realmente quieren usar.\"],\"z7gnI9\":[\"Please complete all required fields before continuing.\"],\"iCh6/3\":[\"plomería\"],\"AFr2a5\":[\"Poland 🇵🇱\"],\"trnWaw\":[\"Polish\"],\"8BrmUs\":[\"Portugal 🇵🇹\"],\"MOERNx\":[\"Portuguese\"],\"z87IFG\":[\"Press Enter or comma to add a skill.\"],\"a7u1N9\":[\"Precio\"],\"aHCEmh\":[\"Precios\"],\"J2IAmT\":[\"Director y fundador\"],\"kXBQYM\":[\"Director y fundador, Alternative Partners\"],\"k62X/2\":[\"Soporte prioritario\"],\"LcET2C\":[\"Política de Privacidad\"],\"DJ3uVe\":[\"Política de Privacidad | Twenty\"],\"3fPjUY\":[\"Pro\"],\"kIGKva\":[\"Calidad de nivel de producción\"],\"vERlcd\":[\"Profile\"],\"CcK9cq\":[\"Los programas que antes requerían una coordinación manual pesada ahora funcionan de extremo a extremo con automatización. Las instituciones obtienen un sistema inteligente y escalable; los estudiantes, una preparación más rápida para entrevistas que importan; W3villa entregó un producto alrededor del cual las instituciones pueden generar ingresos.\"],\"PaHxQd\":[\"Project minimum\"],\"9NAqO4\":[\"Automatización de propuestas\"],\"a24q7E\":[\"Lenguajes propietarios, ciclos de despliegue lentos y lógica de \\\"caja negra\\\".\"],\"kS6G/9\":[\"puso fin\"],\"u9RZ7+\":[\"Punjabi\"],\"frfCYp\":[\"T1 2026\"],\"tFx+ES\":[\"Qatar 🇶🇦\"],\"3XOwjg\":[\"Rates\"],\"DnWJal\":[\"Reach out\"],\"gSQVmr\":[\"Leer el caso\"],\"EqCbT9\":[\"Permisos de Lectura/Edición/Eliminación\"],\"Gr9RIC\":[\"Ready to grow<0/>with Twenty?\"],\"zTY2by\":[\"Historias reales de clientes de equipos que gestionan su negocio en Twenty: cómo migraron, qué personalizaron y qué cambió una vez que su CRM por fin encajó.\"],\"NIwjHh\":[\"Inmobiliario\"],\"CH+Ona\":[\"Historias reales de equipos reales sobre cómo moldearon Twenty para adaptarlo a su flujo de trabajo y aceleraron su crecimiento.\"],\"5O1eTm\":[\"¿Cambios en tiempo real? Será una sorpresa premium.\"],\"4hc7hc\":[\"Datos en tiempo real\"],\"dKQCrj\":[\"El tiempo real es un estado mental, no una función.\"],\"Zhiuz9\":[\"Trimestre récord\"],\"PWlTvh\":[\"Registros\"],\"q45OlW\":[\"Regions\"],\"rwWjWg\":[\"Notas de la versión\"],\"5icoS1\":[\"Lanzamientos\"],\"BkBq/5\":[\"Remove \",[\"0\"],\" filter\"],\"a/aGHe\":[\"Renombrar, descargar y eliminar archivos adjuntos\"],\"t9yxlZ\":[\"Informes\"],\"SY/an2\":[\"Informes y Paneles\"],\"s+MGs7\":[\"Recursos\"],\"oC2l7f\":[\"API REST y GraphQL\"],\"kx0s+n\":[\"Resultados\"],\"2itg0p\":[\"Retro 2015\"],\"frqduN\":[\"Notas enriquecidas adjuntas a los registros\"],\"/gaSVU\":[\"Hoja de ruta\"],\"mLp5AP\":[\"Romania 🇷🇴\"],\"uJc01W\":[\"Romanian\"],\"Wdh41P\":[\"Permisos a nivel de fila\"],\"mRpuWW\":[\"Dirigir programas de entrevistas simuladas para cientos de estudiantes suena sencillo. En la práctica, las universidades e institutos de formación chocan con el mismo muro: inscripciones introducidas a mano, enlaces de entrevista enviados uno por uno, el profesorado revisando cada sesión sin puntuación ni clasificación. A escala real, se rompe.\"],\"T1ut28\":[\"Russia 🇷🇺\"],\"nji0/X\":[\"Russian\"],\"dw8D3T\":[\"Rwanda 🇷🇼\"],\"niLOap\":[\"Saint Kitts & Nevis 🇰🇳\"],\"zCHzF/\":[\"Saint Lucia 🇱🇨\"],\"Md/8iQ\":[\"Saint Vincent 🇻🇨\"],\"Burn4/\":[\"Centro de complementos de Salesfarce\"],\"xTfEgV\":[\"Salesfarce Pro\"],\"/UolBB\":[\"Salesforce Classic\"],\"l69E+u\":[\"Migración desde Salesforce\"],\"CADlRK\":[\"El mismo CRM\"],\"60i6S+\":[\"La misma salida\"],\"xl2tJ9\":[\"Los mismos resultados\"],\"w9QWxz\":[\"SSO SAML/OIDC\"],\"R38ZPo\":[\"Samoa 🇼🇸\"],\"fK288K\":[\"San Marino 🇸🇲\"],\"KDcBQd\":[\"São Tomé & Príncipe 🇸🇹\"],\"/BK0Nl\":[\"Saudi Arabia 🇸🇦\"],\"elz5ka\":[\"Ahorrado / mes\"],\"tigXYO\":[\"ahorrado cada mes\"],\"bifv6N\":[\"Escala\"],\"rbgetd\":[\"Escalar sin\"],\"842ybw\":[\"Escalar sin romper las operaciones\"],\"vk6sVR\":[\"Search a country…\"],\"HVOGoW\":[\"Límite de usuarios\"],\"a3LDKx\":[\"Seguridad\"],\"aB+XpI\":[\"Ver más funciones\"],\"FY4ykg\":[\"Ver el último lanzamiento\"],\"JDp1bg\":[\"Ve las actualizaciones a medida que suceden. Trabaja con tu equipo y agentes sin fricciones.\"],\"0kgOPB\":[\"Mira lo que se lanzó en \",[\"0\"]],\"wgNoIs\":[\"Seleccionar todo\"],\"6p/m5q\":[\"Select your country\"],\"6JhL+3\":[\"Autoalojado\"],\"QFK/45\":[\"Self-hosted (Docker/K8s) · Cloud architecture · Scaling · Security · Monitoring\"],\"5CWy3T\":[\"Autoalojado significa que AC&T no asume riesgo de proveedores: ningún modelo de precios que pueda cambiar, ninguna plataforma que pueda desaparecer, ninguna migración forzada. El sistema es suyo.\"],\"5WmQ5O\":[\"Autoalojado significa control\"],\"6QPYP7\":[\"Twenty autoalojado\"],\"GrBvv/\":[\"Autoalojamiento\"],\"YdhUoe\":[\"¡Autoalojamiento, ahora en alquiler!\"],\"NaHz2o\":[\"Autoalojamiento\"],\"D50Vyu\":[\"Senegal 🇸🇳\"],\"eEJlq0\":[\"Serbia 🇷🇸\"],\"62gxWx\":[\"Seychelles 🇸🇨\"],\"3VFzsh\":[\"Lanza un producto en Twenty\"],\"6lGV3K\":[\"Mostrar menos\"],\"RhU4bB\":[\"Showing \",[\"visibleCount\"],\" of \",[\"totalCount\"],\" partners\"],\"I89wN/\":[\"Showing all \",[\"totalCount\"],\" partners\"],\"yhyNch\":[\"Sierra Leone 🇸🇱\"],\"mA6cL1\":[\"Regístrate en Cloud en menos de un minuto y comienza tu prueba de 30 días. Para despliegues más grandes, nuestros Paquetes de incorporación de 4 horas o socios certificados te ponen en producción en 1–2 semanas.\"],\"0eG5g+\":[\"Singapore 🇸🇬\"],\"V9dFwD\":[\"Mapa del sitio\"],\"t6ComU\":[\"Evita la UX torpe que siempre acompaña a lo personalizado.\"],\"U7keXg\":[\"Slovakia 🇸🇰\"],\"o1VTTF\":[\"Slovenia 🇸🇮\"],\"bUmSwL\":[\"Patrones inteligentes, atajos y diseños hacen que las tareas diarias sean más rápidas y fáciles de ejecutar.\"],\"6sKjjx\":[\"Solo\"],\"FX2oa1\":[\"Solo or agency?\"],\"TcZtfs\":[\"Solomon Islands 🇸🇧\"],\"TvdMI3\":[\"Solutioning\"],\"t1E06j\":[\"Somalia 🇸🇴\"],\"AVfp38\":[\"Algunos lo llaman precios empresariales. Preferimos un CRM donde el acceso a la API, los webhooks y los flujos de trabajo no aparezcan como complementos sorpresa.\"],\"B/mYo/\":[\"Acceso al código fuente\"],\"zHJB/O\":[\"South Africa 🇿🇦\"],\"7MdTKh\":[\"South Korea 🇰🇷\"],\"a4jo+V\":[\"South Sudan 🇸🇸\"],\"Kv3C8d\":[\"Spain 🇪🇸\"],\"65A04M\":[\"Spanish\"],\"00jcbn\":[\"Sri Lanka 🇱🇰\"],\"vnS6Rf\":[\"SSO\"],\"uQl22y\":[\"Soporte estándar\"],\"wxW2Sv\":[\"¡Empieza a automatizar a gran escala!\"],\"XO628f\":[\"Comienza gratis\"],\"+6VDIA\":[\"Start your free trial today<0/>without credit card.\"],\"j9c8rb\":[\"Mantente en Flow\"],\"GdGiNi\":[\"Step \",[\"current\"],\" of \",[\"total\"]],\"bxgoJR\":[\"Guías paso a paso y playbooks para ayudar a tu equipo a sacar el máximo partido a su espacio de trabajo.\"],\"UCLArd\":[\"Deja de conformarte con compromisos.\"],\"lm4alq\":[\"estructura\"],\"Sv4BSp\":[\"Subdominio (yourco.twenty.com)\"],\"H5/rZQ\":[\"Enviar solicitud\"],\"MDqQmP\":[\"Enviando…\"],\"8Z1557\":[\"Sudan 🇸🇩\"],\"XYLcNv\":[\"Soporte\"],\"Aq66kg\":[\"Suriname 🇸🇷\"],\"Yz+oFV\":[\"Swahili\"],\"b2//Ip\":[\"Sweden 🇸🇪\"],\"UaISq3\":[\"Swedish\"],\"IImT5c\":[\"Switzerland 🇨🇭\"],\"sjuSub\":[\"Syria 🇸🇾\"],\"3w+Aox\":[\"Tabla, Kanban, Calendario\"],\"ISVD3+\":[\"Tagalog\"],\"9M02G5\":[\"Adapta páginas de registro, menús y vistas\"],\"boABlR\":[\"Taiwan 🇹🇼\"],\"XJspRJ\":[\"Tajikistan 🇹🇯\"],\"JAKtcG\":[\"Habla con nosotros\"],\"fb427h\":[\"Tamil\"],\"ri1l89\":[\"Tanzania 🇹🇿\"],\"GWMpL3\":[\"Tareas y Actividades\"],\"Ye3KKA\":[\"Colabora con un experto en Twenty\"],\"vsdUaL\":[\"Notas técnicas\"],\"y+bLyB\":[\"Technical skills\"],\"1ZwmkP\":[\"plantilla\"],\"mvP/25\":[\"Términos y Condiciones\"],\"BEX1RA\":[\"Términos del Servicio | Twenty\"],\"iqG74V\":[\"Términos del Servicio para Twenty.com PBC, incluido el uso de Twenty.com, subdominios y servicios relacionados.\"],\"SUr44j\":[\"Thai\"],\"6t7gpr\":[\"Thailand 🇹🇭\"],\"eRjhUK\":[\"Thanks, you're in.\"],\"FjkPYg\":[\"Eso abrió la puerta a algo más poderoso. Justin creó un front end personalizado que extrae datos en vivo de esos sistemas en una sola vista, adaptada a cada rol. Cuando se gana una propuesta, lo que antes requería que cuatro personas configuraran manualmente instancias en cuatro herramientas diferentes ahora ocurre con un solo clic, aprovechando los datos recopilados en Twenty a lo largo de todo el ciclo de vida de la oportunidad. Es otro cambio hacia trabajo de mayor valor para los clientes.\"],\"8S4psU\":[\"Eso funciona hasta que necesitas entender el negocio subyacente. ¿Qué acuerdos están atascados? ¿De dónde vienen los leads? ¿Cuál es la tasa de cierre? Con hojas de cálculo y un CRM personalizado heredado que no podía seguir el ritmo, esas preguntas eran casi imposibles de responder.\"],\"zXlFuT\":[\"El CRM de código abierto n.º 1 para equipos modernos. Modular, escalable y creado para adaptarse a tu negocio.\"],\"G2IgPj\":[\"La apuesta es\"],\"NT2bSJ\":[\"La apuesta está dando frutos\"],\"Xmr/wH\":[\"el negocio\"],\"Wie492\":[\"El equipo de desarrollo de negocio por fin tenía el CRM que habían estado pidiendo. La adopción llegó de forma natural: sus datos ya estaban allí cuando iniciaron sesión.\"],\"2kHqXc\":[\"El CEO se había resistido a incorporar un CRM durante años. El equipo de desarrollo de negocio no tenía experiencia usando uno, y los costos de licencia de CRMs conocidos como Salesforce o HubSpot eran difíciles de justificar sin ninguna garantía de adopción: los CRMs solo son tan buenos como el mantenimiento de los datos dentro de ellos.\"],\"5DpEh7\":[\"El CRM como un\"],\"2sfVd8\":[\"El CRM como centro de control\"],\"XlFsoH\":[\"La apuesta temprana por la arquitectura se mantiene, y se espera que las próximas funciones de IA la hagan aún más relevante.\"],\"kCUcnD\":[\"La flexibilidad es simplemente increíble. Literalmente, no hay nada que no puedas hacer. Puedes crear objetos, acceder a todo a través de la API, extraer notas y enviarlas al portal. Intenta hacer eso en HubSpot. De ninguna manera. Es la verdadera capacidad de construir exactamente lo que realmente se necesita.\"],\"MaHqAc\":[\"La flexibilidad fue realmente lo que marcó la diferencia. Nuestras necesidades evolucionan muy rápido. Descubro una nueva necesidad y en dos clics puedo abordarla. Eso es una verdadera ventaja cuando te mueves rápido.\"],\"Q5iZ9Q\":[\"La flexibilidad para conectar todo esto, sin ayuda externa y sin pelearse con la plataforma, fue lo que hizo posible que una sola persona levantara y mantuviera un stack conectado en toda una consultora.\"],\"l0eUFC\":[\"El despliegue completo llegó en julio de 2025. Desde entonces, Nine Dots construyó un Asistente Inteligente sobre el sistema, que impulsa a los agentes con tareas, recordatorios y análisis de mercado bajo demanda. Algunos agentes nunca abren Twenty directamente, pero están impulsados por él, superando a sus pares solo con procesos manuales. Para el T1 de 2026, Homeseller había registrado su mejor trimestre de ventas de la historia.\"],\"SiW1pC\":[\"el futuro del CRM\"],\"sm10Rg\":[\"El Gran Monolito\"],\"nFB8I1\":[\"La Carga Interna\"],\"ZNzKXV\":[\"La decisión clave fue no construir todo desde cero. Twenty cubre el modelo de datos, los permisos, la autenticación y el motor de flujos de trabajo, las partes que habrían llevado meses reconstruir, para que el equipo pudiera centrarse en la lógica específica del producto.\"],\"q1kKLq\":[\"La oportunidad\"],\"ZgWQl4\":[\"la sobrecarga\"],\"2NJdyz\":[\"El problema.\"],\"Q8D9Lf\":[\"el producto\"],\"3/wAFg\":[\"El resultado\"],\"nAWeyi\":[\"El resultado es un sistema que se ajusta a cómo AC&T ya trabajaba, en lugar de al revés.\"],\"tfG/xw\":[\"Lo correcto\"],\"nbHA9N\":[\"La base adecuada\"],\"omVXTg\":[\"La configuración autoalojada significa que Alternative Partners posee todo el stack: sin acceso de proveedores a sus datos, sin dependencia de un modelo de precios SaaS, control total sobre cómo evoluciona el sistema. La migración fue rápida gracias a la IA; el resultado es duradero porque el stack es de código abierto.\"],\"1tN3qf\":[\"El cambio\"],\"AnGOwN\":[\"La situación\"],\"u0uFxg\":[\"Ellos son las ventas de verdad\"],\"53RXLB\":[\"Lo llaman fidelidad del cliente. Nosotros lo llamamos una jaula muy afectuosa.\"],\"RhmZMe\":[\"No solo reemplazaron una herramienta. Recuperaron la propiedad de cómo funciona su negocio.\"],\"5YzqyT\":[\"Evaluaron Salesforce, Zoho, Pipedrive y SuiteCRM. Todos venían con los mismos compromisos: demasiado caros, demasiado rígidos o demasiado genéricos, y ninguno solucionaba el problema de fondo. Seguían alquilando una estructura que no controlaban.\"],\"6f8QUY\":[\"Timor-Leste 🇹🇱\"],\"2y6W+f\":[\"para gobernarlas a todas\"],\"DeTupk\":[\"Togo 🇹🇬\"],\"CocxTO\":[\"Tonga 🇹🇴\"],\"5eFktS\":[\"Integración de herramientas\"],\"xv7HSr\":[\"total por mes con costo fijo\"],\"hmu++i\":[\"Sigue el importe y la fecha de cierre\"],\"POzmFl\":[\"Sigue cada lanzamiento con registros de cambios, destacados y demostraciones de las funciones más recientes.\"],\"6vHPh9\":[\"Track relationships, manage pipelines, and take action quickly with an intuitive CRM that helps your team move faster from day one with confidence.\"],\"xwWQ9Q\":[\"Training & Adoption\"],\"MtCqjl\":[\"Training, Adoption & Support\"],\"/ga9kq\":[\"Trinidad & Tobago 🇹🇹\"],\"tdZpCd\":[\"Trust Center\"],\"KtyN0b\":[\"con la confianza de\"],\"eslLQF\":[\"Pruébalo en vivo\"],\"qhmtws\":[\"Try removing some filters or browse all partners.\"],\"E/hGy3\":[\"Prueba Twenty Cloud\"],\"D5Kf4t\":[\"El martes tu equipo descubre que las oportunidades con un champion técnico cierran 3 veces más rápido. El miércoles agregas el campo, conectas la puntuación, ajustas el flujo de trabajo. Para el jueves tus agentes ya están actuando. Ese circuito de retroalimentación es la ventaja. Y solo funciona si el CRM es tuyo.\"],\"y4UxlS\":[\"Tunisia 🇹🇳\"],\"UIDKnJ\":[\"Turkey 🇹🇷\"],\"Kz91g/\":[\"Turkish\"],\"kdJl4v\":[\"Turkmenistan 🇹🇲\"],\"tSc/a3\":[\"Tuvalu 🇹🇻\"],\"O5dAmW\":[\"Twenty | CRM de código abierto n.º 1\"],\"NalB1c\":[\"Twenty Apps abre la puerta a crear productos, no solo implementaciones. Por ejemplo, estamos desarrollando una integración de WhatsApp Business que cualquier cliente de Twenty podría obtener. Es una fuente de ingresos recurrentes que no tendríamos si solo estuviéramos configurando la plataforma de otra empresa.\"],\"q9UWVC\":[\"Artículos de Twenty — Insights sobre CRM de código abierto\"],\"mkTfZ1\":[\"Twenty como el\"],\"+w9xZW\":[\"Twenty como columna vertebral de API de un stack de salida al mercado\"],\"zj0CA+\":[\"Twenty como la columna vertebral de API de un stack de salida al mercado | Elevate Consulting\"],\"neM1Ol\":[\"Funciones de Twenty CRM — Plataforma CRM moderna de código abierto\"],\"8zCqPL\":[\"Precios de Twenty CRM — Planes desde 9 $ por usuario al mes\"],\"D05UQH\":[\"Clientes de Twenty — Cómo los equipos modernos gestionan su CRM\"],\"0qyMhk\":[\"Twenty da a los equipos técnicos los bloques de construcción para un CRM personalizado que cubre necesidades de negocio complejas y se adapta rápidamente a medida que el negocio evoluciona.\"],\"jVhq41\":[\"Twenty te da el tipo de flexibilidad que realmente cambia lo que puedes ofrecer a tus clientes. La experiencia de desarrollo es limpia, las APIs son abiertas y, cuando algo necesita personalizarse, simplemente puedes hacerlo. No hay que pelearse con la plataforma.\"],\"x/I85y\":[\"Twenty no es solo donde viven los datos del CRM. Es la columna vertebral de API que hace posible el resto del stack.\"],\"K+zzSQ\":[\"Twenty nos permite construir un CRM alrededor del negocio y no el negocio alrededor del CRM.\"],\"AxT+g4\":[\"Twenty lo hace sencillo. Es limpio, intuitivo y está diseñado para que se sienta como Notion.\"],\"4SJucz\":[\"Twenty Partners — Implementadores certificados de CRM de código abierto\"],\"X1GHuJ\":[\"Lanzamientos de Twenty — Novedades en el CRM de código abierto\"],\"V1lV7B\":[\"Soporte del equipo de Twenty\"],\"KsFvUt\":[\"Twenty's certified partners help teams migrate, customise, and operate the open source CRM across regions, languages, and deployment models. Browse profiles and book a call.\"],\"EIU345\":[\"Autenticación de dos factores\"],\"O+vc/1\":[\"Type of team *\"],\"P+R1Lc\":[\"Typical project\"],\"HqFilh\":[\"UAE 🇦🇪\"],\"+WNTxL\":[\"Uganda 🇺🇬\"],\"uxuy4l\":[\"Tema de la interfaz de usuario\"],\"tNfmmF\":[\"UK 🇬🇧\"],\"z7UkhA\":[\"Ukraine 🇺🇦\"],\"V9+2pH\":[\"Ukrainian\"],\"jqzUyM\":[\"No disponible\"],\"Hix/m6\":[\"Cronología unificada (correos electrónicos, eventos, tareas, notas, archivos)\"],\"NIuIk1\":[\"Ilimitado\"],\"aGpTSC\":[\"Hasta 5 espacios de trabajo\"],\"SPdRRU\":[\"Upfront consulting, scoping, strategy.\"],\"2vanwz\":[\"Sube, renombra, previsualiza y gestiona archivos directamente en los registros. Todo se mantiene donde corresponde.\"],\"tmwuH9\":[\"Urdu\"],\"huOaG8\":[\"Uruguay 🇺🇾\"],\"RCOibx\":[\"US\"],\"LXHEIS\":[\"USA 🇺🇸\"],\"Roaswv\":[\"Guía del usuario\"],\"3XIgKU\":[\"Roles de usuario\"],\"UCUX2+\":[\"User-side rollout & ongoing support.\"],\"FOOEtP\":[\"Uzbekistan 🇺🇿\"],\"CRXL2j\":[\"Vanuatu 🇻🇺\"],\"NNeEYO\":[\"Vatican 🇻🇦\"],\"BWzac4\":[\"Venezuela 🇻🇪\"],\"FlQ1vR\":[\"Vietnam 🇻🇳\"],\"fROFIL\":[\"Vietnamese\"],\"BRBSny\":[\"View \",[\"0\"],\" on LinkedIn\"],\"ITdNGt\":[\"View on LinkedIn\"],\"73lp8c\":[\"View profile\"],\"BAzC1v\":[\"Tipos de vista\"],\"mHtVst\":[\"¡Visualiza a tus clientes en un mapa!\"],\"CsHuOr\":[\"VP de Ingeniería\"],\"uRh799\":[\"VP de Ingeniería en W3villa Technologies\"],\"w2INie\":[\"VP de Ingeniería, W3villa Technologies\"],\"s0tU5h\":[\"W3Grads\"],\"R8BueT\":[\"W3villa creó W3Grads (w3grads.com), una plataforma de simulación de entrevistas impulsada por IA para universidades e institutos de formación, usando Twenty como columna vertebral operativa.\"],\"7hHsoV\":[\"W3villa creó W3Grads para simulaciones de entrevistas con IA a escala, con Twenty como columna vertebral operativa.\"],\"QBOUnd\":[\"W3villa lanzó W3Grads sobre Twenty para entrevistas con IA, puntuación y flujos de trabajo a escala institucional sin rehacer la infraestructura del CRM.\"],\"7q5Vjn\":[\"W3villa Technologies\"],\"ZabLEt\":[\"W3villa Technologies se propuso resolverlo correctamente, no con un parche, sino con un producto.\"],\"3v2ipf\":[\"W3villa usó Twenty como un framework de nivel de producción para el modelo de datos, los permisos, la autenticación y el motor de flujos de trabajo que de otro modo habrían reconstruido por su cuenta.\"],\"8CHatv\":[\"No pudimos enviar tu solicitud. Inténtalo de nuevo en un momento.\"],\"MjWeUE\":[\"No queríamos parchear el problema. Queríamos crear algo en lo que las instituciones pudieran confiar a escala, y eso significaba partir de una base lo suficientemente sólida como para soportar toda la complejidad de lo que teníamos en mente.\"],\"d5CWI6\":[\"Estamos construyendo el CRM de código abierto n.º 1, pero no podemos hacerlo solos. Únete a nuestro ecosistema de partners y crece con nosotros.\"],\"v1kQyJ\":[\"Webhooks\"],\"ZhnM/K\":[\"Webhooks (Captura de cambios de datos)\"],\"hgDePr\":[\"Website or GitHub\"],\"Lx0cVD\":[\"What an admin can do without writing code.\"],\"Z34FQq\":[\"Lo que convenció a Olivier fue la flexibilidad de la plataforma y hacia dónde se dirigía. Aunque las necesidades iniciales eran un registro básico de datos, seguía necesitando un modelo de datos personalizado con permisos granulares para gestionar la amplia gama de actividades de NetZero. También necesitaba un sistema que pudiera adaptarse rápidamente a una empresa de iteración rápida.\"],\"phiBjc\":[\"¿Cuánto cuesta Twenty?\"],\"WVQaGB\":[\"Lo que llegará en abril de 2026 es lo que ha estado esperando: creación de flujos de trabajo asistida por IA, describir lo que necesita e iterar a partir de ahí en lugar de construir lógica compleja desde cero. Para un fundador que gestiona él mismo el CRM, eso cambia lo que es realísticamente posible.\"],\"iOAq7n\":[\"Qué sigue\"],\"tWd6MT\":[\"Lo que está planificado es significativo. NetZero tiene un data lake, formularios en línea y múltiples sistemas internos que quiere conectar con Twenty. Las canalizaciones ya están; el siguiente paso son automatizaciones que los unan.\"],\"aYRqmz\":[\"Lo que esto significa\"],\"QCHIzm\":[\"What you cover *\"],\"1kfjxX\":[\"Lo que viniera después tenía que ser algo de lo que pudieran ser propietarios.\"],\"cs6VpJ\":[\"Cuando un estudiante se registra mediante un QR en un evento del campus, el sistema asigna un plan, genera una sesión de entrevista y envía un enlace. La IA realiza la entrevista, puntúa al candidato y clasifica el resultado. El profesorado ve en qué situación está cada estudiante sin revisar manualmente cada sesión. Construir e iterar estos flujos de trabajo fue más rápido con la IA en el ciclo.\"],\"I/oPrY\":[\"Cuando el canal es\"],\"JglRo/\":[\"Cuando el canal es el negocio\"],\"ee4xKk\":[\"Cuando el proveedor\"],\"DajeYD\":[\"Cuando el proveedor desconectó el servicio\"],\"X1gdzB\":[\"Cuando tu CRM es\"],\"OQ41z8\":[\"Cuando tu CRM es el producto\"],\"Svuneu\":[\"Cuando tu CRM es el producto: W3Grads en Twenty | W3villa Technologies\"],\"bGN8u+\":[\"Aunque NetZero aún ejecuta un segundo CRM en paralelo para operaciones con gran uso de WhatsApp con agricultores en Brasil, esperan migrarlo todo a Twenty a medida que crezcan las funciones y el ecosistema. Ya, su pipeline estructurado y multinacional funciona con Twenty.\"],\"DJlSwA\":[\"Por qué\"],\"4sOVu+\":[\"Por qué Twenty\"],\"DH7vVZ\":[\"Por qué Twenty — El CRM de código abierto creado para ser personalizado\"],\"OKVlnc\":[\"Con Twenty, cuando surge una nueva necesidad, puede abordarla él mismo: sin desarrollador, sin ticket de soporte.\"],\"KAB1uP\":[\"contigo\"],\"OX5bbs\":[\"Correo electrónico de trabajo *\"],\"woYYQq\":[\"Flujos de trabajo\"],\"1ie9Dm\":[\"Flujos de trabajo que\"],\"AzqmMJ\":[\"Flujos de trabajo que realmente se usan\"],\"pmUArF\":[\"Espacio de trabajo\"],\"bwECg/\":[\"Workspace URL, customer references, relevant links…\"],\"zkWmBh\":[\"Anual\"],\"S6izIJ\":[\"Yemen 🇾🇪\"],\"l75CjT\":[\"Sí\"],\"bo6pUs\":[\"Sí, con nuestro framework de Apps. Inicializa una extensión con `npx create-twenty-app` y entrega objetos personalizados, funciones de lógica del lado del servidor, componentes de React que se renderizan dentro de la interfaz de Twenty, habilidades y agentes de IA, vistas y navegación, todo en TypeScript, desplegable en cualquier espacio de trabajo.\"],\"yIcBW6\":[\"Sí. Cada espacio de trabajo Cloud incluye un servidor MCP nativo. Conecta tu asistente de IA mediante OAuth y podrá leer y escribir tus datos del CRM en lenguaje natural.\"],\"8xYMYQ\":[\"Sí. Importa tus datos vía CSV, o usa nuestra API para 50,000+ registros. Nuestros partners pueden encargarse de toda la migración por ti.\"],\"8m0eN9\":[\"Sí. Twenty es el CRM de código abierto n.º 1 en GitHub. Puedes autoalojarlo para poseer por completo tu infraestructura, o ejecutarlo en nuestra nube gestionada para una configuración sin operaciones.\"],\"LJ3sTb\":[\"No compras tu pipeline de despliegue ya hecho. No alquilas tu almacén de datos a un proveedor que decide el esquema. Lo construyes, es tuyo y iteras sobre él cada semana. El CRM va por el mismo camino. Los equipos que lo traten como una infraestructura propia acumularán una ventaja cada trimestre.\"],\"SfJVcK\":[\"Tu compra se ha completado. Sigue los pasos a continuación para copiar tu clave de licencia en tu instancia de Twenty.\"],\"krHgj1\":[\"Tu clave empresarial\"],\"+dxjCu\":[\"Tu licencia empresarial se ha activado correctamente.\"],\"pEQiCY\":[\"Tu nombre *\"],\"fQATWn\":[\"Tu red, completamente mapeada.\"],\"CgGN5T\":[\"Zambia 🇿🇲\"],\"wHjFOw\":[\"Cero\"],\"xlFvlS\":[\"Cero trabajo manual\"],\"ZvEoMq\":[\"Cero trabajo manual en el núcleo. Automatización total. Construido sobre Twenty.\"],\"TT3YXb\":[\"Zimbabwe 🇿🇼\"]}")as Messages;
\ No newline at end of file
diff --git a/packages/twenty-website/src/locales/generated/fr-FR.ts b/packages/twenty-website/src/locales/generated/fr-FR.ts
index d2e394a2e62..2475c4cd81b 100644
--- a/packages/twenty-website/src/locales/generated/fr-FR.ts
+++ b/packages/twenty-website/src/locales/generated/fr-FR.ts
@@ -1 +1 @@
-/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"BUIzFF\":[\"-33 % de réduction},{\"],\"q0ur5+\":[[\"0\"],\" | Étude de cas client de Twenty},{\"],\"NSO/FI\":[[\"hourly\"],\"/hr\"],\"2Ha6K9\":[[\"labelText\"],\" filter, \",[\"0\"],\" selected, click to open\"],\"0Xh9/0\":[[\"labelText\"],\" filter, click to open\"],\"icND7o\":[\"/ utilisateur / mois - facturé annuellement},{\"],\"XUqxHW\":[\"/utilisateur/mois},{\"],\"ojimXJ\":[\"© 2026 – Twenty},{\"],\"2ygf/L\":[\"← Back\"],\"9j/bUt\":[\"← Twenty partners\"],\"foGG8A\":[\"+$105/utilisateur par mois},{\"],\"Bsq9GJ\":[\"+$35/utilisateur par mois},{\"],\"mWSpW5\":[\"+$5/utilisateur par mois},{\"],\"JIwDAd\":[\"+$7000/organisation par mois\"],\"yVr18d\":[\"+$75/utilisateur par mois\\nPassez à Enterprise !\"],\"iK+ikF\":[\"+10k autres\"],\"nRtVCK\":[\"+20% des dépenses nettes\\n+$75/utilisateur par mois\\nPassez à Enterprise !\"],\"Uqm/0u\":[\"<0>...with AI that actually0><1/><2>helps you2><3>work faster3>\"],\"ZKcQvG\":[\"<0>A CRM for teams0><1/><2>that2><3>move fast3>\"],\"2Avwos\":[\"<0>A custom CRM gives your org an edge,0><1>but building one1><2>comes with2><3>tradeoffs3>\"],\"GIqRh7\":[\"<0>A demo worth a0><1/><2>thousand words2>\"],\"h5K9X+\":[\"<0>A modern CRM with0><1>an intuitive interface1>\"],\"YXQqRD\":[\"<0>Assemble, iterate and adapt a robust CRM,0><1>that's quick to flex1>\"],\"XnXDNI\":[\"<0>Become0><1/><2>our partner2>\"],\"Tp01iS\":[\"<0>Begin with production-grade0><1>building blocks1>\"],\"LCx6+8\":[\"<0>Build a CRM your competitors0><1>can't buy.1>\"],\"lt0XAM\":[\"<0>Build it in an afternoon.0><1>AI made the gap that small.1>\"],\"y8AZXw\":[\"<0>Build your Enterprise CRM0><1>at AI Speed1>\"],\"OGcRSu\":[\"<0>Continue iteration0><1>without friction1>\"],\"2fzdgb\":[\"<0>CRM was a ledger.0><1>AI turned it into an operating system.1>\"],\"gx6Utt\":[\"<0>Dev teams power<1/>company-wide0><2/><3>change with Twenty3>\"],\"FyjPh/\":[\"<0>Differentiation now0><1>lives in the code you own.1>\"],\"FymD+X\":[\"<0>Enterprise0><1>activation1>\"],\"V7uulz\":[\"<0>Everything you need,0><1>out of the box1>\"],\"IvtaRX\":[\"<0>Find your0><1>Twenty partner1>\"],\"f36X9W\":[\"<0>Go the extra mile0><1>with no-code1>\"],\"NUko9S\":[\"<0>How teams0><1/><2>built with Twenty2>\"],\"WCsM/Q\":[\"<0>Latest0><1/><2>Releases2>\"],\"1LHR8V\":[\"<0>Make your GTM team happy0><1/><2>with2><3>a CRM they'll love3>\"],\"K6xBTA\":[\"<0>Ready to build0><1/><2>your own story?2>\"],\"pddHmc\":[\"<0>Ready to grow0><1/><2>with Twenty?2>\"],\"mzlPTg\":[\"<0>See how teams0><1/><2>build2><3>on Twenty3>\"],\"7D+4tN\":[\"<0>Simple0><1/><2>Pricing2>\"],\"pj2iec\":[\"<0>Stay in control with our0><1>open-source software1>\"],\"Oc/cFZ\":[\"<0>Stop fighting custom.0><1/><2>Start building, with Twenty2>\"],\"zykz1r\":[\"<0>The future of CRM is built,0><1>not bought.1>\"],\"6LusuM\":[\"<0>Trust the n°1 CRM,0><1>or not!1>\"],\"be30i9\":[\"$0\"],\"6inRXo\":[\"$1/exécution d’orchestration/organisation\\n+$75/utilisateur par mois\\nPassez à Enterprise !\"],\"EkIZkY\":[\"$19\"],\"8r6DgO\":[\"$9\"],\"EHNAf2\":[\"1 clic\"],\"qvNspm\":[\"1‑800‑YES‑SOFTWARE\"],\"6WQdu8\":[\"100 par minute\"],\"uuKUqZ\":[\"11 groupes\\nd’autorisations\"],\"2szX5S\":[\"150\"],\"SaSafJ\":[\"150 heures\"],\"9ntyY8\":[\"150 h\"],\"2z1Znr\":[\"Contrat de 2 ans\"],\"l6Vx4q\":[\"2,000+\"],\"FKcV/y\":[\"2025\"],\"PJgfBS\":[\"3\"],\"BL47wE\":[\"3 contrat de 2 ans\\n-33% de réduction\"],\"/jgC+9\":[\"3 gammes de produits\"],\"7SJhyh\":[\"30+\"],\"Pdl2UE\":[\"4 outils\"],\"2ScEtE\":[\"5 crédits de workflow/mois inclus\"],\"hIKxCy\":[\"5,000\"],\"Z2TH0F\":[\"50 par minute\"],\"CiRGZ8\":[\"50 crédits de workflow/an inclus\"],\"tZvajW\":[\"6 workflows\"],\"AQPMc4\":[\"90%\"],\"fHxYPM\":[\"90%+\"],\"1GAcp6\":[\"Une entreprise qui ne correspond pas à un\"],\"NLSM5L\":[\"Une entreprise qui ne correspond pas à un modèle\"],\"GSM5RA\":[\"Un CRM qui\"],\"diWAWP\":[\"Un CRM qui grandit avec vous\"],\"och6cp\":[\"Un CRM qui grandit avec vous | NetZero & Twenty\"],\"EewhZt\":[\"Un CRM qu’ils\"],\"muZzEA\":[\"Un CRM qu’ils possèdent vraiment\"],\"GoyOzl\":[\"Une plateforme prête à\"],\"rxMguZ\":[\"Une plateforme prête à évoluer\"],\"R5hTKX\":[\"Une agence immobilière sur WhatsApp\"],\"hwoGni\":[\"Une agence immobilière sur WhatsApp a construit un CRM autour de celui-ci\"],\"WjUlJr\":[\"Qu’un thème rétro soit un module complémentaire payant est, d’une certaine manière, la partie la plus crédible.\"],\"r9Msiv\":[\"Il y a un an, personnaliser votre CRM signifiait embaucher un consultant Salesforce, apprendre Apex, attendre des mois. L’écart entre « je veux ça » et « c’est en ligne » se mesurait en trimestres et en factures. Alors les gens ont fait des compromis. Ils ont plié leur processus pour s’adapter à l’outil et ont appelé cela de l’adoption.\"],\"c0RR2h\":[\"Environ 150 heures par mois économisées sur les opérations manuelles. Des métriques en temps réel pour le dirigeant. Une préparation à la croissance sans ajouter d’effectifs opérationnels. Une équipe capable de répondre à des questions qui prenaient auparavant des jours à reconstituer.\"],\"41o3VS\":[\"AC&T et Flycoder sont passés d’un export d’un fournisseur défaillant à Twenty auto-hébergé, avec plus de 90% de réduction des coûts CRM et un contrôle total.\"],\"TuJiQF\":[\"Migration AC&T Education\"],\"yHUdh6\":[\"AC&T Education Migration (actimmi.com) est une agence éducative en Australie. Ils aident les étudiants internationaux pour les candidatures auprès des établissements et les visas. Ils utilisaient un CRM précédent jusqu’à ce que le fournisseur ferme le système, ne laissant rien d’autre qu’un export CSV.\"],\"MPzy5R\":[\"AC&T est passé à une instance Twenty auto-hébergée sans risque fournisseur, sans migration forcée, et avec des coûts CRM réduits de plus de 90%.\"],\"J+A83M\":[\"AC&T a remplacé un CRM fournisseur fermé par Twenty auto-hébergé et a réduit les coûts CRM de plus de 90%.\"],\"muhZ+X\":[\"Activation de votre licence Enterprise…\"],\"Yyn/dP\":[\"Active filters\"],\"TDMykO\":[\"vraiment utilisés\"],\"+/fX0G\":[\"possèdent réellement\"],\"woOp+c\":[\"Ajouter des objets et des champs\"],\"Y2K3rp\":[\"Modules complémentaires\"],\"Op7nVF\":[\"Adoption\"],\"TeMRC2\":[\"avancé\"],\"2050Pj\":[\"Advisory & Discovery\"],\"QjSFuI\":[\"Afghanistan 🇦🇫\"],\"StqEz0\":[\"Africa\"],\"NmHsVh\":[\"Agency\"],\"vZKKhf\":[\"Aggregate, bar, line, and pie widgets\"],\"rp2omj\":[\"Agro-industrie\"],\"jiGK6+\":[\"IA (Einstein)\"],\"aUn7Ps\":[\"IA et automatisations\"],\"HbXHSp\":[\"Agents IA\"],\"WGXwzu\":[\"Les agents IA commencent à rédiger l’outreach, noter les leads, rechercher des comptes, écrire des relances, mettre à jour les étapes des opportunités. Chacune de ces actions lit et écrit dans le CRM. Le tableau de bord est devenu le livre de jeu. La base de données est devenue le cerveau.\"],\"Rsxdfy\":[\"Agents IA avec compétences personnalisées\"],\"TfV/y9\":[\"Chat IA, paramètres et enregistrements dans des panneaux latéraux pour un accès rapide sur un seul écran.\"],\"R+bwFB\":[\"IA pour des itérations rapides\"],\"+pgY/C\":[\"IA dans le\"],\"A6v5aI\":[\"IA dans le workflow de migration\"],\"t97j+F\":[\"Assisté par IA\"],\"7xlBwk\":[\"Albania 🇦🇱\"],\"EszGq4\":[\"Algeria 🇩🇿\"],\"LIGwFL\":[\"Alternative Partners\"],\"GDVvyT\":[\"Alternative Partners est un cabinet de conseil qui est passé de Salesforce à une instance Twenty auto-hébergée. Benjamin Reynolds a dirigé la migration. Il était déjà devenu expert Twenty en mettant en œuvre Twenty pour l’un des premiers clients cloud de Twenty.\"],\"CCrRuT\":[\"Alternative Partners a remplacé Salesforce par Twenty auto-hébergé, en utilisant de l’IA agentique pour compresser le travail de migration.\"],\"UIu18Y\":[\"Alternative Partners a utilisé de l’IA agentique pour condenser ce qui prendrait normalement des semaines de travail de migration Salesforce en quelque chose qu’une seule personne pouvait superviser.\"],\"iFLhqi\":[\"Amrendra Pratap Singh\"],\"Sbiivs\":[\"Andorra 🇦🇩\"],\"Uv5eaJ\":[\"Angola 🇦🇴\"],\"qKANz3\":[\"Antigua & Barbuda 🇦🇬\"],\"aGCcXe\":[\"Des questions ?\"],\"lgSvgF\":[\"Anything else we should know?\"],\"pkMjbA\":[\"Anything that needs a developer.\"],\"dYZUP3\":[\"Anything that needs devops skills.\"],\"AfiWqP\":[\"APAC\"],\"/AMVjF\":[\"Tutoriels APEX\"],\"OZtEcz\":[\"API\"],\"yKBF3l\":[\"Accès API\"],\"GpYSXo\":[\"Dorsale API\"],\"30KnZB\":[\"Appels API\"],\"42FQ3y\":[\"API-first\"],\"azQMHP\":[\"Les API sont en supplément. La simplicité a un prix.\"],\"MqJvvH\":[\"Des API, SDK et webhooks pour étendre Twenty et livrer des apps au-dessus de vos données CRM.\"],\"I1Z4AM\":[\"Postuler pour développer\"],\"zX3HUD\":[\"Apply to join the Twenty certified partner ecosystem.\"],\"8HV3WN\":[\"Arabic\"],\"uicv6Z\":[\"Architecture\"],\"fT9xVz\":[\"Argentina 🇦🇷\"],\"3KxGep\":[\"Armenia 🇦🇲\"],\"Sfa0xD\":[\"autour de cela\"],\"S+Q+1d\":[\"Ask questions, automate tasks, and get insights with AI that understands your data and helps you move faster every day, end to end across teams.\"],\"v7zTZl\":[\"Attribuez des responsables et des dates d’échéance\"],\"4/b98B\":[\"au cœur\"],\"fxL/Km\":[\"Pièces jointes sans le chaos.\"],\"y2W2Hg\":[\"Journaux d’audit\"],\"tw0/s1\":[\"Australia 🇦🇺\"],\"4cf5s+\":[\"Austria 🇦🇹\"],\"FFv0Vh\":[\"Automatisation\"],\"SJ7WSP\":[\"Disponible sur YouTube !\"],\"8d+jRc\":[\"Azerbaijan 🇦🇿\"],\"iH8pgl\":[\"Retour\"],\"wIoAQo\":[\"Bahamas 🇧🇸\"],\"Rhju1T\":[\"Bahrain 🇧🇭\"],\"LxzgmZ\":[\"Bangladesh 🇧🇩\"],\"rtcPS0\":[\"Barbados 🇧🇧\"],\"RownlY\":[\"Based in\"],\"jQLfIW\":[\"Parce qu’apparemment, la confidentialité paraît plus haut de gamme avec un supplément.\"],\"qEQv1F\":[\"Parce que tout est construit sur le socle ouvert de Twenty, Flycoder a pu câbler exactement la logique dont AC&T avait besoin sans lutter contre la plateforme.\"],\"uIG0OH\":[\"Parce que la fondation est solide, W3Grads est architecturé pour la suite, y compris une couche de paiement pour de futurs plans d’entretiens payants et une échelle nationale sans réécritures structurelles.\"],\"JGM+JO\":[\"Parce que la véritable orchestration consiste à mettre un signe dollar sur chaque entrée spectaculaire.\"],\"PKMHNe\":[\"devenez un génie !\"],\"6ZCRfT\":[\"Devenir partenaire\"],\"7ysT6Z\":[\"Become a Twenty Partner — Application\"],\"0TCnEf\":[\"Belarus 🇧🇾\"],\"qblg4t\":[\"Belgium 🇧🇪\"],\"pSF7xM\":[\"Belize 🇧🇿\"],\"Hds3Bq\":[\"Bengali\"],\"cTWkw3\":[\"Benin 🇧🇯\"],\"SYfuGP\":[\"Benjamin Reynolds\"],\"YfjrMq\":[\"Bertrams\"],\"mzTjnf\":[\"Mieux que Liquid Glass !\"],\"GvGk4g\":[\"Au-delà\"],\"OPnz/X\":[\"Bhutan 🇧🇹\"],\"TVJDFA\":[\"Bolivia 🇧🇴\"],\"MkvsWx\":[\"Book a call\"],\"Wzdd8u\":[\"Bosnia & Herzegovina 🇧🇦\"],\"wtNsrt\":[\"Botswana 🇧🇼\"],\"yCaNfF\":[\"Brazil 🇧🇷\"],\"bxWnM1\":[\"perturber les opérations\"],\"fYFNV7\":[\"Browse Twenty's certified partner network: regional coverage, languages, deployment expertise, and direct booking links.\"],\"VX4eI/\":[\"Brunei 🇧🇳\"],\"sbr0X/\":[\"Build a dashboard of pipeline by stage\"],\"uetyzD\":[\"Build a pipeline board grouped by stage\"],\"Utc5RF\":[\"Créez des tableaux de bord personnalisés à partir de données CRM en temps réel. Agrégez tout — affaires, comptes, activités — dans des graphiques que votre équipe lit vraiment.\"],\"e1u+Zh\":[\"Créez sur une plateforme ouverte\"],\"/ETeLn\":[\"a construit un\"],\"SoAKmY\":[\"Conçu pour la vitesse\"],\"sdItv6\":[\"Bulgaria 🇧🇬\"],\"dNnRlc\":[\"Burkina Faso 🇧🇫\"],\"j8RGrG\":[\"Échaudée par le verrouillage fournisseur, AC&T a construit un CRM qu’elle possède réellement | Twenty\"],\"jtdtLa\":[\"Burundi 🇧🇮\"],\"L40Ae7\":[\"Calendar / booking link\"],\"4yFkf9\":[\"Cambodia 🇰🇭\"],\"AvRzYu\":[\"Cameroon 🇨🇲\"],\"wCALve\":[\"Les développeurs peuvent-ils étendre Twenty avec du code ?\"],\"6mytgb\":[\"Puis-je migrer depuis Salesforce ou HubSpot ?\"],\"nEOTNi\":[\"Canada 🇨🇦\"],\"hRO6uK\":[\"Cape Verde 🇨🇻\"],\"M1RLfx\":[\"Catalan\"],\"NUrY9o\":[\"Categories\"],\"dBApoS\":[\"Central African Republic 🇨🇫\"],\"iI3Dq9\":[\"Chad 🇹🇩\"],\"2D9CbR\":[\"Voir plus de modules complémentaires\"],\"2BY3So\":[\"Chile 🇨🇱\"],\"zG6t8U\":[\"China 🇨🇳\"],\"h1IXFK\":[\"Chinese\"],\"3wV73y\":[\"City\"],\"ZbCD7v\":[\"Le classique ne meurt jamais. Il est simplement étendu une fois de plus.\"],\"u8JHrO\":[\"Clear filters\"],\"yz7wBu\":[\"Close\"],\"L/LPQZ\":[\"Cloud Pro est à 9 $/utilisateur/mois (annuel). Organization est à 19 $/utilisateur/mois et débloque le SSO et des autorisations au niveau des lignes pour les équipes qui ont besoin d’un contrôle d’accès plus fin.\"],\"WYgF8M\":[\"Cloud Pro commence à 9 $/utilisateur/mois avec des objets personnalisés illimités. Auto-hébergez le cœur open source gratuitement, ou passez à Organization pour le SSO et des autorisations au niveau des lignes.\"],\"1YncLF\":[\"Cofondateur chez NetZero\"],\"vWaYWP\":[\"Cofondateur, NetZero\"],\"dcLsG5\":[\"Colombia 🇨🇴\"],\"b5bnuN\":[\"Correspondance colonnes-vers-champs (y compris les relations)\"],\"ofoEsM\":[\"Bientôt disponible !\"],\"KGD9Kt\":[\"Licence commerciale (aucune obligation AGPL)\"],\"OnPROL\":[\"Commercials\"],\"chL5IG\":[\"Communauté\"],\"8CLnho\":[\"Support communautaire\"],\"RxpseA\":[\"Comoros 🇰🇲\"],\"SHjhDC\":[\"Entreprise ou marque *\"],\"P/f7ez\":[\"Terminez l’activation de votre licence Enterprise Twenty auto-hébergée.\"],\"Fkb+LW\":[\"Composez votre CRM et vos applications internes avec une seule boîte à outils d’extensibilité.\"],\"kD7ZGH\":[\"Composez votre CRM et vos applications internes avec une seule boîte à outils d’extensibilité. Modèle de données, mise en page et automatisation.\"],\"2DQw7/\":[\"Congo 🇨🇬\"],\"iSLIjg\":[\"Connecter\"],\"90KBr0\":[\"Connectez des comptes Google ou Microsoft\"],\"xgrBCK\":[\"Connectez des comptes Google ou Microsoft et voyez les e-mails et événements liés automatiquement aux enregistrements du CRM.\"],\"MVrQxI\":[\"Connecté via API\"],\"cfAG43\":[\"Conseil\"],\"GsUBlG\":[\"Contact \",[\"partnerName\"]],\"Oii3vg\":[\"Contacts et entreprises\"],\"24qVhV\":[\"Le contexte vit avec l’enregistrement.\"],\"+Uepfb\":[\"Contrôle\"],\"VOpE1H\":[\"hub de contrôle\"],\"sTIhSj\":[\"Contrôle sans\"],\"wH1xmY\":[\"Contrôle sans lourdeur\"],\"Bj7igG\":[\"Contrôle sans surcharge\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"7qTWwB\":[\"Copiez la clé Enterprise ci-dessus.\"],\"PXnj76\":[\"Copiez cette clé et collez-la dans les paramètres de votre instance Twenty auto-hébergée.\"],\"FapWIq\":[\"Fonctionnalités principales\"],\"Al/blj\":[\"Costa Rica 🇨🇷\"],\"JRK+HF\":[\"Coûts réduits de plus de\"],\"cRA2/z\":[\"Country *\"],\"Xn2Nlq\":[\"Créer un workflow\"],\"B9nLrl\":[\"Créer des applications sur Twenty\"],\"yAL7FY\":[\"Créer des applications personnalisées\"],\"oS1RiS\":[\"Créer des tâches à partir des enregistrements\"],\"D3S5+x\":[\"Créez des tâches, attribuez des responsables et joignez des notes riches directement depuis n’importe quel enregistrement. Aucun changement d’onglet, aucun contexte perdu.\"],\"MSlbwg\":[\"CRM\"],\"NLgmM4\":[\"CRM audit · Requirements · Process mapping · ROI · RevOps · Vendor selection\"],\"Y44Xsf\":[\"Les coûts CRM ont chuté de plus de 90%. La surcharge manuelle liée à l’ancien système a disparu. Pour la première fois, AC&T a un CRM qu’ils ne perdront plus.\"],\"wDasLa\":[\"Ingénieur CRM\"],\"DqkzNV\":[\"Ingénieur CRM, AC&T Education Migration\"],\"b7vNti\":[\"Le CRM était une base de données que vous remplissiez le vendredi. L’IA l’a transformé en système qui fait fonctionner votre go-to-market. Pour vous différencier, vous devez construire ce que vos concurrents ne peuvent pas acheter.\"],\"OACAVp\":[\"Croatia 🇭🇷\"],\"I6FFSA\":[\"Export CSV à tout moment\"],\"8RWevB\":[\"Import et export CSV\"],\"s+QiQi\":[\"Flux d’import CSV\"],\"O2UtEV\":[\"Cuba 🇨🇺\"],\"lh6aPn\":[\"Modèles IA personnalisés\"],\"OaTurC\":[\"Applications personnalisées\"],\"TcUCTv\":[\"Custom Apps · Scripts · AI/agent integrations\"],\"yBSEtR\":[\"Étapes d’opportunité personnalisées pour votre processus\"],\"L+b7SB\":[\"Étapes d’affaires personnalisées, tableaux en glisser-déposer et suivi en temps réel pour que votre pipeline reflète la réalité.\"],\"DUnke3\":[\"Custom Development\"],\"GAD3Dx\":[\"Domaine personnalisé\"],\"Vz1Vq2\":[\"Domaine personnalisé (crm.yourco.com)\"],\"oPwQt4\":[\"Champs personnalisés\"],\"U1RB/7\":[\"Champs et relations personnalisés\"],\"WGKb6T\":[\"Champs personnalisés, relations et chronologie unifiée pour chaque contact et chaque entreprise dans votre espace de travail.\"],\"prIqWa\":[\"Disposition personnalisée\"],\"8skTDV\":[\"Objets personnalisés\"],\"AbyZbl\":[\"Vues personnalisées\"],\"YjXLAQ\":[\"Témoignages clients\"],\"NihQNk\":[\"Clients\"],\"qqLY+j\":[\"Personnalisation\"],\"GRfLAg\":[\"Personnalisations\"],\"Pj5fGG\":[\"Cyprus 🇨🇾\"],\"w9VTXG\":[\"Czech\"],\"xkuHM6\":[\"Czech Republic 🇨🇿\"],\"4RLD4p\":[\"Messages quotidiens\"],\"Fo2vDn\":[\"Danish\"],\"V0kvgB\":[\"Import de données\"],\"5cNMFz\":[\"Modèle de données\"],\"iq2WTm\":[\"Data modeling · Migrations · No-code workflows · Dashboards · SSO/SCIM · Integrations\"],\"/TlpVf\":[\"Des affaires qui avancent toutes seules.\"],\"H1UtjM\":[\"Denmark 🇩🇰\"],\"n+SX4g\":[\"Développeurs\"],\"Wuqvfz\":[\"Directeur du numérique et de l’information, Elevate Consulting\"],\"e7R9Zi\":[\"Discover the newest features and improvements in Twenty,<0/>the #1 Open Source CRM.\"],\"W+b/DF\":[\"Découvrir les nouveautés\"],\"rHLwDO\":[\"Djibouti 🇩🇯\"],\"Zjjbne\":[\"Ai-je besoin d’un développeur pour personnaliser Twenty ?\"],\"Zx22Ih\":[\"Twenty fonctionne-t-il avec Claude, ChatGPT et Cursor ?\"],\"bMDnQR\":[\"Dominica 🇩🇲\"],\"ufcRA6\":[\"Dominican Republic 🇩🇴\"],\"pOLPPB\":[\"Ne vous laissez pas enfermer dans l’écosystème de quelqu’un d’autre. L’expérience développeur de Twenty ressemble à un logiciel normal, avec une configuration locale, de vraies données, des tests en direct et aucun outil propriétaire.\"],\"HDR0en\":[\"DR Congo 🇨🇩\"],\"mzedFr\":[\"Draft a workflow for an email sequence\"],\"fPma12\":[\"Glissez-déposez les opportunités entre les étapes\"],\"KIjvtr\":[\"Dutch\"],\"6r6pDf\":[\"e.g. React, Postgres, n8n…\"],\"hEtClO\":[\"Ecuador 🇪🇨\"],\"4CJ4xV\":[\"EdTech\"],\"aqxYLv\":[\"Éducation\"],\"OAdXUT\":[\"Egypt 🇪🇬\"],\"2xK+An\":[\"El Salvador 🇸🇻\"],\"1wTjWx\":[\"Elevate Consulting est un cabinet de conseil en management basé au Canada. Lorsque Justin Beadle, Directeur du numérique et de l’information, a rejoint l’entreprise, celle-ci fonctionnait entièrement avec des documents Word, des feuilles Excel, des notes adhésives, des e-mails et la dépendance aux personnes. Il n’y avait pas de CRM, pas d’outils accessibles via API, seulement un patchwork tentant de remplacer une source unique de vérité.\"],\"2THY70\":[\"Elevate Consulting utilise Twenty comme dorsale API connectant la facturation, Teams, la planification des ressources et un front-end personnalisé autour des données clients et opportunités.\"],\"wiTeYI\":[\"Le PDG d’Elevate a été tellement impressionné par Twenty qu’il a commencé à le recommander aux clients avant même que la configuration interne ne soit terminée. L’équipe envisage d’apporter Twenty aux projets clients dans le cadre de leur activité de conseil, notamment comme back-end pour des produits sur mesure adaptés à des besoins opérationnels spécifiques.\"],\"FNyrb0\":[\"E-mails et calendrier\"],\"AoN898\":[\"E-mails et chat\"],\"ObCvfI\":[\"Partage des e-mails\"],\"hfqiVr\":[\"Activité e-mail/calendrier sur chaque enregistrement\"],\"XGd8Wo\":[\"E-mails et calendrier\"],\"o4/9l1\":[\"E-mails et événements liés aux enregistrements du CRM\"],\"Qpn/bX\":[\"Chiffrez vos données\"],\"Iy8Gze\":[\"Rotation de clé de chiffrement\"],\"lYGfRP\":[\"English\"],\"Ijh+h+\":[\"Profitez d’une personnalisation illimitée en utilisant les outils de codage IA que vous aimez déjà. Adaptez votre CRM à la manière dont votre entreprise grandit et gagne.\"],\"xoqD/n\":[\"Saisissez une adresse e-mail valide.\"],\"/OVUD6\":[\"Enter a valid URL (starting with http:// or https://).\"],\"NTskGY\":[\"Activation Enterprise | Twenty\"],\"3dQ6zJ\":[\"Environnements\"],\"c0nqfC\":[\"Equatorial Guinea 🇬🇶\"],\"4DIpFY\":[\"Eritrea 🇪🇷\"],\"JIhNLR\":[\"Estonia 🇪🇪\"],\"8yXuJ9\":[\"Eswatini 🇸🇿\"],\"rktGGp\":[\"Ethiopia 🇪🇹\"],\"rQqP1P\":[\"Europe\"],\"IhKZhp\":[\"Même le matériel de formation est une fonctionnalité à célébrer.\"],\"sQP1sF\":[\"Chaque nouvelle version de Twenty, le CRM Open Source n°1, avec des journaux de modifications, des démos et les points forts qui importent le plus aux équipes.\"],\"rkZTD7\":[\"Chaque fil de discussion, sur le bon enregistrement.\"],\"kz/8m8\":[\"Tout ce qui est dans Pro\"],\"zoNk7e\":[\"Tout se met à jour en temps réel, avec un chat IA toujours prêt à vous aider à aller plus vite.\"],\"57gG1f\":[\"Découvrez une granularité de niveau entreprise, en commençant par un onzième droit.\"],\"uZRQi+\":[\"Expertise & experience\"],\"JTM5zS\":[\"Explorer les témoignages clients\"],\"weFouS\":[\"Exécution prolongée !\"],\"akLvep\":[\"Interface familière et moderne\"],\"gKNP7S\":[\"Farsi\"],\"abO45l\":[\"Chemin rapide vers l’action\"],\"e6BgMV\":[\"Autorisations au niveau des champs\"],\"z+q1Th\":[\"Fiji 🇫🇯\"],\"sER+bs\":[\"Fichiers\"],\"bOidm7\":[\"Filter partners\"],\"iabLgo\":[\"Des indicateurs filtrés à partir de n’importe quel objet\"],\"sRUAXp\":[\"Trouvez un partenaire Twenty certifié pour migrer, personnaliser et exploiter votre CRM open source, ou rejoignez l’écosystème et développez votre activité avec nous.\"],\"TJ7HQl\":[\"Trouver un partenaire\"],\"MD032e\":[\"Trouver un partenaire Twenty\"],\"YeWg37\":[\"Find a Twenty Partner — Certified Open Source CRM Implementers\"],\"wHyJkT\":[\"Trouvez le bon partenaire pour implémenter, personnaliser et adapter Twenty à votre équipe.\"],\"9V48qi\":[\"Finland 🇫🇮\"],\"USZ2N6\":[\"Finnish\"],\"PHM5wp\":[\"Flexibilité\"],\"HBJ0P5\":[\"Orchestration\\ndes flux\"],\"obrJBN\":[\"Parcourez votre espace de travail avec des raccourcis et des temps de chargement courts.\"],\"HjFq2b\":[\"Flycoder, un partenaire de développement full-stack, les a aidés à configurer Twenty comme une instance auto-hébergée façonnée autour de la manière dont AC&T opère réellement. Le modèle de données est centré sur les étudiants, pas sur un pipeline générique contact-et-opportunité. Les statuts se mettent à jour automatiquement : un workflow s’exécute chaque nuit pour garder les dossiers d’inscription à jour. Des rappels e-mail automatisés couvrent les dates importantes. Ajouter un nouvel enregistrement prend moins d’une minute.\"],\"1SL9ZF\":[\"Concentrez-vous sur le cas d’usage, pas sur la\"],\"P5E+kT\":[\"Concentrez-vous sur le cas d’usage, pas sur la plomberie\"],\"wdVyxi\":[\"Import des dossiers/libellés\"],\"CKQ0za\":[\"Pour une entreprise qui a autrefois fonctionné avec des notes adhésives, c’est plus qu’une mise à niveau. C’est une transformation complète.\"],\"yAJC9c\":[\"Pendant vingt ans, le CRM signifiait la même chose : un endroit pour enregistrer des appels, suivre des opportunités et sortir des rapports le vendredi. Le vrai travail se faisait dans la tête des gens, dans des fils Slack, dans des conversations de couloir. Le CRM tenait le score. Personne n’en attendait davantage.\"],\"wSoqhC\":[\"fondation\"],\"UCoxP5\":[\"Fondateur, Nine Dots Ventures\"],\"IPaRlc\":[\"Fondateur, Wintactix\"],\"671GY5\":[\"France 🇫🇷\"],\"tUgSXd\":[\"Gratuit pour vous !\"],\"nLC6tu\":[\"French\"],\"weRlb1\":[\"from \",[\"minBudget\"]],\"Iuxc00\":[\"Du CSV au CRM en quelques minutes.\"],\"yDeZSV\":[\"Des documents à\"],\"emeKZ7\":[\"Des documents aux API ouvertes\"],\"CMqgta\":[\"De Salesforce à\"],\"kl+hEJ\":[\"De Salesforce à Twenty auto‑hébergé\"],\"syU/BD\":[\"De Salesforce à Twenty auto-hébergé, propulsé par l’IA | Alternative Partners\"],\"TH5XjF\":[\"Du simple au\"],\"Lf7cb3\":[\"Du simple à l’avancé\"],\"m1I5TY\":[\"Historique complet des communications en un seul endroit\"],\"wXgKOm\":[\"Personnalisation complète\"],\"YZ7Q3Z\":[\"Pleine propriété\"],\"hdxwWi\":[\"Entièrement personnalisable\"],\"//hrfs\":[\"Gabon 🇬🇦\"],\"yau9J6\":[\"Gambia 🇬🇲\"],\"S84RWl\":[\"Generate tasks for my top 10 accounts\"],\"GOmD9p\":[\"Georgia 🇬🇪\"],\"DDcvSo\":[\"German\"],\"XcPIuI\":[\"Germany 🇩🇪\"],\"ZDIydz\":[\"Commencer\"],\"xyKSqi\":[\"Ghana 🇬🇭\"],\"Ay/vbT\":[\"Bon choix !\"],\"+tDN2S\":[\"Greece 🇬🇷\"],\"CZXzs4\":[\"Greek\"],\"DDgHcm\":[\"Grenada 🇬🇩\"],\"IsZ6P7\":[\"se développer\"],\"MCLWq4\":[\"Développez-vous avec une base flexible\"],\"XpCing\":[\"évolue\"],\"M/8CC1\":[\"Guatemala 🇬🇹\"],\"UZbq7J\":[\"Guinea 🇬🇳\"],\"vtpxPx\":[\"Guinea-Bissau 🇬🇼\"],\"GT8Ua2\":[\"Guyana 🇬🇾\"],\"5BLiJj\":[\"Haiti 🇭🇹\"],\"Xf5EJg\":[\"Générateur de tramage\"],\"DHC85F\":[\"Générateur de tramage | Twenty\"],\"c3XJ18\":[\"Aide\"],\"CRzGla\":[\"Centre d’aide\"],\"LiWOgh\":[\"Hey, I'm interested in meeting. Here's my project:\"],\"tGjibo\":[\"Hindi\"],\"qfSbUb\":[\"Son approche était peu conventionnelle. Au lieu de mapper les champs manuellement, d’écrire des scripts de transformation et de valider les données étape par étape, il a confié le travail à des outils d’IA agentique avec un bref cahier des charges : où se trouvent les données, le dépôt GitHub de la plateforme cible et le déploiement Railway. Démarrer, et ne revenir que si quelque chose casse au-delà d’un correctif à 70% de confiance.\"],\"i0qMbr\":[\"Accueil\"],\"CtU7yU\":[\"Homeseller\"],\"KYnPnU\":[\"Homeseller est une agence immobilière à gros volume à Singapour, fondée par l’un des agents immobiliers les plus performants du pays. Toute l’opération fonctionne sur WhatsApp : pas d’e-mail, pas d’agendas, seulement des discussions de groupe, des milliers, avec clients, agents et prospects ensemble.\"],\"v6cmMq\":[\"Homeseller a gardé ses habitudes. WhatsApp est resté WhatsApp. Ce qui a changé, c’est que tout ce qui transite par ces conversations arrive désormais dans un système structuré, suivi, classé et visible en temps réel.\"],\"xaIV9m\":[\"Homeseller, WhatsApp, et un CRM construit autour de l’entreprise | Nine Dots & Twenty\"],\"zbfmqm\":[\"Honduras 🇭🇳\"],\"mqX9AX\":[\"Hosting & Infrastructure\"],\"SHZNBm\":[\"Hourly\"],\"Ivq5+7\":[\"Hourly rate\"],\"XnFo3G\":[\"Comment AC&T Education Migration et Flycoder ont remplacé un CRM fournisseur fermé par Twenty auto-hébergé, avec un coût inférieur de plus de 90% et une pleine propriété.\"],\"PYi0f6\":[\"Comment Alternative Partners a migré de Salesforce vers Twenty auto-hébergé en utilisant de l’IA agentique dans la boucle d’implémentation : migration rapide, propriété durable.\"],\"+MLOVo\":[\"Comment Elevate Consulting est passé des documents et feuilles de calcul à Twenty comme CRM connecté par API au centre de leur pile.\"],\"OIwpKt\":[\"Combien de temps pour commencer ?\"],\"iRzy9e\":[\"Comment NetZero utilise Twenty sur les crédits carbone, les produits agricoles et des systèmes industriels franchisés avec un CRM modulaire et une feuille de route vers des workflows assistés par IA.\"],\"NZYA4S\":[\"Comment Nine Dots Ventures a reconstruit une agence immobilière de Singapour sur Twenty avec des API, n8n, Grafana et de l’IA au-dessus de plus de 2,000+ messages WhatsApp par jour.\"],\"bcln75\":[\"Comment Twenty collecte, utilise, protège et divulgue des informations lorsque vous utilisez Twenty.com et les services associés.\"],\"URQPvK\":[\"Comment W3villa Technologies a livré W3Grads, une plateforme d’entretiens simulés par IA pour les établissements, sur Twenty comme colonne vertébrale opérationnelle.\"],\"htrFcw\":[\"Hungary 🇭🇺\"],\"RYDa0v\":[\"Iceland 🇮🇸\"],\"xalbpT\":[\"Idées de l’équipe qui développe Twenty sur le CRM open source, les données clients, les systèmes GTM et la création de logiciels durables.\"],\"ePYQjq\":[\"Identity\"],\"l0JGUk\":[\"Usurper l’identité d’utilisateurs\"],\"N4OVNn\":[\"Mise en œuvre\"],\"yHueLx\":[\"Partenaires d’implémentation\"],\"ZAKTS6\":[\"Importez vos données avec mappage des champs, y compris les relations. Exportez-les à tout moment — vos données vous appartiennent toujours.\"],\"InyU0Z\":[\"En juin 2025, Justin a appris que Twenty v1 avait été publié. En deux ou trois jours, le PDG lui a demandé d’étudier la mise en place d’un CRM. Le déclic est venu du potentiel de ce qui pouvait être construit au-dessus d’API entièrement ouvertes. Le timing était parfait.\"],\"d1Aru8\":[\"En production.\"],\"Sqb+jp\":[\"Aperçu dans l’application pour les types de fichiers pris en charge (lorsqu’il est activé)\"],\"3XP8Lk\":[\"Inclus !\"],\"/c4yUr\":[\"India 🇮🇳\"],\"iEJqDi\":[\"Indonesia 🇮🇩\"],\"BQukYF\":[\"Indonesian\"],\"S8gy7K\":[\"Secteur\"],\"MeL8SS\":[\"Défilement infini\"],\"+mOisw\":[\"Le défilement infini est toujours « bientôt disponible », contrairement à la facture.\"],\"K8iwJx\":[\"Installer l’application tarball partagée\"],\"AHWM9N\":[\"Intégration\"],\"OChKCc\":[\"Générateur de trames interactif exporté depuis Twenty.\"],\"+83cJG\":[\"Interested in meeting \",[\"partnerName\"]],\"mdsMtj\":[\"déploiement interne\"],\"a+PGuG\":[\"Comptes Internet par utilisateur\"],\"FtgjCv\":[\"Iran 🇮🇷\"],\"8yynyz\":[\"Iraq 🇮🇶\"],\"s7XmoY\":[\"Ireland 🇮🇪\"],\"/yQIKP\":[\"Twenty est-il vraiment open source ?\"],\"SdtpDP\":[\"Israel 🇮🇱\"],\"QjEULz\":[\"C’est tout simplement une expérience bien plus agréable que d’avoir à gérer Salesforce ou HubSpot. Ma mission a été de rendre chaque outil accessible via API, pour que tout communique entre eux.\"],\"FJ51pP\":[\"C’est tout simplement une expérience bien plus agréable que d’avoir à gérer Salesforce ou HubSpot. Ma mission a été de rendre chaque outil accessible via API, pour que tout communique entre eux. Twenty a rendu cela possible d’une manière que les anciennes plateformes de CRM ne permettent tout simplement pas.\"],\"kqIAbN\":[\"Ça a fonctionné. C’est l’itération assistée par IA en pratique : non pas l’IA comme fonctionnalité produit, mais comme partie du travail d’implémentation, compressant ce qui prendrait normalement des semaines en quelque chose qu’une seule personne peut superviser sans devenir le goulet d’étranglement.\"],\"ltNDOB\":[\"C’est fragile. La V1 sort vite, mais la maintenance et les évolutions deviennent un fardeau à long terme.\"],\"Lj7sBL\":[\"Italian\"],\"OSTD8d\":[\"Italy 🇮🇹\"],\"0BTIQi\":[\"Ivory Coast 🇨🇮\"],\"W6o2Pv\":[\"Jamaica 🇯🇲\"],\"kpk6mj\":[\"Japan 🇯🇵\"],\"dFtidv\":[\"Japanese\"],\"kX2mij\":[\"Rejoignez notre écosystème et aidez les entreprises à reprendre le contrôle de leurs données clients avec\"],\"1qiriB\":[\"Rejoignez notre écosystème de partenaires en pleine croissance\"],\"APYcnh\":[\"Join our partner ecosystem and help businesses<0/>take control of their CRM.\"],\"5emzGz\":[\"Join the teams that chose to own their CRM.<0/>Start building with Twenty today.\"],\"QbxNys\":[\"Jordan 🇯🇴\"],\"pB76mP\":[\"juil. 2025\"],\"hvwlu3\":[\"juin 2025\"],\"qrYDGE\":[\"Justin Beadle\"],\"vYXuJI\":[\"Justin a créé des workflows de notification pour toute l’équipe, alertant les bonnes personnes dans Teams lorsqu’un prospect devient un lead ou lorsque des jalons de projet sont atteints. Les formulaires dans Twenty permettent à l’équipe de développement commercial d’enregistrer son activité sans quitter l’outil. L’impact est réel pour l’organisation. L’outil s’est révélé adaptable, du travail au niveau des opportunités chez un client jusqu’aux décisions au niveau de la direction.\"],\"E6Oohx\":[\"La mission plus large de Justin chez Elevate a été de faire passer l’entreprise de documents statiques à des outils avec accès API. Fin 2025, c’était en place : facturation du temps, planification des ressources, Microsoft Teams et gestion de projet étaient tous accessibles via API, avec Twenty au centre, conservant les données clients et opportunités. Les membres de l’équipe pouvaient utiliser ces informations de manière stratégique au lieu de les ressaisir.\"],\"r1cFAW\":[\"Kazakhstan 🇰🇿\"],\"kEahsE\":[\"Kenya 🇰🇪\"],\"IxBSi8\":[\"Kiribati 🇰🇮\"],\"h6S9Yz\":[\"Korean\"],\"PqhUrP\":[\"Kosovo 🇽🇰\"],\"3+TwF3\":[\"Kuwait 🇰🇼\"],\"e9zZkH\":[\"Kyrgyzstan 🇰🇬\"],\"GAmD3h\":[\"Langues\"],\"u6jooT\":[\"Languages spoken\"],\"YHacTY\":[\"Laos 🇱🇦\"],\"2lrGbG\":[\"LATAM\"],\"7OHfcc\":[\"Latvia 🇱🇻\"],\"rdU729\":[\"Mise en page\"],\"+Ss/og\":[\"Apprenez à utiliser Twenty\"],\"wB0DGn\":[\"Lebanon 🇱🇧\"],\"vifyyw\":[\"Mentions légales\"],\"UqdHpG\":[\"Lesotho 🇱🇸\"],\"rJargy\":[\"Liberia 🇱🇷\"],\"Lzw0kM\":[\"Libya 🇱🇾\"],\"tHFTlp\":[\"Titulaire de la licence :\"],\"K41WYc\":[\"Liechtenstein 🇱🇮\"],\"gggTBm\":[\"LinkedIn\"],\"Gg69LR\":[\"LinkedIn URL\"],\"2WIZYd\":[\"Lithuania 🇱🇹\"],\"AHVzME\":[\"Données en direct et IA intégrées\"],\"GObQuL\":[\"Mises à jour en direct\"],\"zmRZwk\":[\"Les mises à jour en direct ne sont pas disponibles, ce qui est presque plus honnête.\"],\"ObPscj\":[\"Chargement de l’activation…\"],\"7VBQ2j\":[\"Local, Production\"],\"JO8Bdx\":[\"Verrouillage\"],\"sQia9P\":[\"Se connecter\"],\"KPLAuI\":[\"Réduire le coût du CRM\"],\"J13skq\":[\"Luxembourg 🇱🇺\"],\"nRYQC8\":[\"Madagascar 🇲🇬\"],\"qHvKxh\":[\"Malawi 🇲🇼\"],\"tF97tn\":[\"Malay\"],\"DIOh5g\":[\"Malaysia 🇲🇾\"],\"62/ScF\":[\"Maldives 🇲🇻\"],\"wc5E/3\":[\"Mali 🇲🇱\"],\"04fjhR\":[\"Malta 🇲🇹\"],\"Si4WyF\":[\"Conseil en management\"],\"poX06f\":[\"Travail manuel au cœur\"],\"VJOKPB\":[\"Vue carte\"],\"Zt5PUS\":[\"Marketplace\"],\"2jVbnO\":[\"Marshall Islands 🇲🇭\"],\"bJNKJ1\":[\"Maîtrisez chaque recoin de Twenty\"],\"HG/EUg\":[\"Mauritania 🇲🇷\"],\"YDiaY/\":[\"Mauritius 🇲🇺\"],\"Zw+Zv+\":[\"Serveur MCP\"],\"zxcfgg\":[\"signifie le contrôle\"],\"bwCiCi\":[\"Découvrez les agences et consultants certifiés qui déploient Twenty pour des équipes dans le monde entier.\"],\"ujYZ+f\":[\"Découvrez les équipes qui ont façonné Twenty en leur propre CRM grâce à des déploiements auto-hébergés, des workflows assistés par IA et des stacks produits « API-first ».\"],\"CQ9M36\":[\"MENA\"],\"briyJf\":[\"Des indicateurs auxquels vous pouvez réellement faire confiance.\"],\"YBLFQZ\":[\"Mexico 🇲🇽\"],\"KBirDR\":[\"Micronesia 🇫🇲\"],\"ZdvtU2\":[\"workflow de migration\"],\"so04x6\":[\"Mike et Azmat de Nine Dots sont intervenus pour résoudre cela, non pas en changeant le fonctionnement de Homeseller, mais en construisant un système qui, enfin, s’y est adapté.\"],\"izddzp\":[\"Mike Babiy\"],\"FFFENV\":[\"Minimum project budget\"],\"6m8rMT\":[\"Moldova 🇲🇩\"],\"qRRmSe\":[\"Monaco 🇲🇨\"],\"G+EV+A\":[\"Mongolia 🇲🇳\"],\"9VDoNp\":[\"Montenegro 🇲🇪\"],\"+8Nek/\":[\"Mensuel\"],\"VqXuUv\":[\"Plus d’options disponibles !\"],\"LAFO4Y\":[\"Morocco 🇲🇦\"],\"EwJDrS\":[\"Mozambique 🇲🇿\"],\"dlKkNL\":[\"Téléversement multi-fichiers sur les enregistrements\"],\"QGWbbv\":[\"Myanmar 🇲🇲\"],\"6YtxFj\":[\"Nom\"],\"yYmxee\":[\"Namibia 🇳🇦\"],\"zVOV14\":[\"Nauru 🇳🇷\"],\"LfNsfa\":[\"Besoin d’un changement rapide ? Évitez le ticket pour l’équipe d’ingénierie. Personnalisez votre espace de travail en quelques minutes.\"],\"4sbgPq\":[\"Besoin d’aide pour la personnalisation ?\"],\"LNVNNE\":[\"Nepal 🇳🇵\"],\"g60EgR\":[\"Netherlands 🇳🇱\"],\"8Cp4Of\":[\"NetZero\"],\"J8ZssL\":[\"NetZero exploite une configuration Twenty modulaire couvrant les crédits carbone, les produits agricoles et les systèmes industriels.\"],\"7HVBV+\":[\"NetZero utilise Twenty comme CRM modulaire sur plusieurs lignes de produits et pays, avec une feuille de route vers des workflows assistés par IA.\"],\"3PtYTO\":[\"NetZero travaille avec l’agro-industrie, au service de clients allant de multinationales à de petits exploitants agricoles. Ils vendent des crédits carbone, des produits agricoles et des systèmes industriels en franchise sur trois lignes de produits différentes, plusieurs pays et plusieurs tailles d’entreprise. Lorsque Olivier Reinaud, cofondateur de NetZero, a commencé à examiner les CRM fin 2024, il ne cherchait pas la plateforme la plus riche en fonctionnalités. Il voulait les bonnes fondations.\"],\"/DTtCF\":[\"New Zealand 🇳🇿\"],\"GY6uSc\":[\"Next →\"],\"KqojOL\":[\"Prochaines étapes\"],\"iBOZv7\":[\"Nicaragua 🇳🇮\"],\"61NU7V\":[\"Niger 🇳🇪\"],\"+2NLII\":[\"Nigeria 🇳🇬\"],\"qZ+egR\":[\"Nine Dots a placé Twenty au centre de la stack de Homeseller avec des API, de l’automatisation et de l’IA au-dessus d’opérations fortement axées sur WhatsApp.\"],\"sGuHDu\":[\"Nine Dots a reconstruit les opérations de Homeseller sur Twenty, avec un modèle de données personnalisé façonné autour de leur flux de vente. Parce que Twenty est ouvert et que tout est accessible via API, ils l’ont connecté à ce dont l’entreprise avait réellement besoin : n8n pour les workflows automatisés (les workflows intégrés à l’application n’étaient pas disponibles à ce moment-là), Grafana pour des tableaux de bord en direct alimentés depuis Twenty, et une couche d’IA personnalisée pour analyser et extraire des informations structurées à partir de plus de 2 000 messages WhatsApp par jour.\"],\"1UzENP\":[\"Non\"],\"6tRXQ4\":[\"No matching country.\"],\"o+/Ad5\":[\"Ne plus louer celui de quelqu’un d’autre\"],\"LmWdm6\":[\"Ne plus louer la structure de quelqu’un d’autre\"],\"UxK4so\":[\"No partners match your filters\"],\"q9f4Tp\":[\"No-code\"],\"SiZ/7E\":[\"Non. Créez des objets, champs, vues et workflows no-code directement depuis les Paramètres. Illimité, sans frais supplémentaires.\"],\"096JXI\":[\"North Korea 🇰🇵\"],\"IwF7aJ\":[\"North Macedonia 🇲🇰\"],\"sZwk4U\":[\"Norway 🇳🇴\"],\"1IipHp\":[\"Norwegian\"],\"k3T2mM\":[\"Aujourd’hui, un développeur peut décrire ce qu’il veut à Claude Code et avoir une application fonctionnelle dans l’après-midi. Un objet personnalisé, un workflow de scoring, une nouvelle vue, une intégration. Le goulot d’étranglement n’est plus la construction. C’est de savoir si votre plateforme vous le permet.\"],\"CzeIij\":[\"Nombre de tableaux de bord\"],\"0dVyEt\":[\"d’une stack go-to-market\"],\"pkrZnO\":[\"Olivier reconnaît que l’usage actuel de Twenty chez NetZero reste relativement simple : les workflows et les intégrations ne sont pas encore aussi poussés qu’il le souhaite à terme, car il a d’abord donné la priorité à des fondations solides.\"],\"l/1LQc\":[\"Olivier Reinaud\"],\"BdShAR\":[\"Oman 🇴🇲\"],\"D2b+1q\":[\"Sur un seul CRM\"],\"XhXmzW\":[\"Sur cette page\"],\"jxC7HY\":[\"Onboarding · Documentation · Change management · L1/L2 support · Managed services\"],\"pbmZ7R\":[\"Packs d’onboarding\"],\"/DFChQ\":[\"Un\"],\"Zt1UZb\":[\"Une API pour les gouverner toutes\"],\"pShqss\":[\"Seulement 5 $ pour le SSO. Pratiquement un programme caritatif.\"],\"3WErRa\":[\"API ouvertes\"],\"pkXQA+\":[\"Ouvrez les Paramètres de votre instance Twenty auto-hébergée → Enterprise.\"],\"wtKPUT\":[\"primitives open source.\"],\"5RkmVr\":[\"Open source, prêt pour l’IA, et à façonner selon vos besoins.\"],\"ucgZ0o\":[\"Organisation\"],\"dKGg8T\":[\"Rupture de stock\"],\"PASC/7\":[\"A survécu à chaque refonte depuis 2004.\"],\"Bwsi7B\":[\"Possédez votre CRM de bout en bout\"],\"oDAEQq\":[\"Propriété\"],\"NmF/Vo\":[\"Posséder votre stack reste mystérieusement en rupture de stock.\"],\"h/oMMb\":[\"Les CRM packagés font se ressembler toutes les entreprises. Twenty est le CRM open source que les équipes façonnent autour de leur flux de travail, avec une interface moderne et une plateforme pensée d’abord pour les développeurs.\"],\"+AiiMt\":[\"La pagination forge le caractère.\"],\"sW3DaS\":[\"Pakistan 🇵🇰\"],\"cvRU36\":[\"Palau 🇵🇼\"],\"u2htNd\":[\"Palestine 🇵🇸\"],\"pWLp16\":[\"Panama 🇵🇦\"],\"xOR4tu\":[\"Papua New Guinea 🇵🇬\"],\"kb3PhK\":[\"Paraguay 🇵🇾\"],\"mPkInZ\":[\"Partenaires\"],\"9yo8NN\":[\"Collez la clé et cliquez sur Activer.\"],\"nxV7o2\":[\"porte ses fruits\"],\"OzAIDr\":[\"Peru 🇵🇪\"],\"LqRs8D\":[\"Philippines 🇵🇭\"],\"we6gj5\":[\"Pick every category that applies.\"],\"FFkjaT\":[\"Gestion des pipelines\"],\"gzkkC3\":[\"Pipelines, objets personnalisés, assistants IA et une API native au-dessus de Postgres. Twenty est le CRM open source, avec une UX moderne, que les équipes ont réellement envie d’utiliser.\"],\"z7gnI9\":[\"Please complete all required fields before continuing.\"],\"iCh6/3\":[\"tuyauterie\"],\"AFr2a5\":[\"Poland 🇵🇱\"],\"trnWaw\":[\"Polish\"],\"8BrmUs\":[\"Portugal 🇵🇹\"],\"MOERNx\":[\"Portuguese\"],\"z87IFG\":[\"Press Enter or comma to add a skill.\"],\"a7u1N9\":[\"Prix\"],\"aHCEmh\":[\"Tarifs\"],\"J2IAmT\":[\"Principal et Fondateur\"],\"kXBQYM\":[\"Principal et Fondateur, Alternative Partners\"],\"k62X/2\":[\"Support prioritaire\"],\"LcET2C\":[\"Politique de confidentialité\"],\"DJ3uVe\":[\"Politique de confidentialité | Twenty\"],\"3fPjUY\":[\"Pro\"],\"kIGKva\":[\"Qualité niveau production\"],\"vERlcd\":[\"Profile\"],\"CcK9cq\":[\"Des programmes qui nécessitaient auparavant une lourde coordination manuelle fonctionnent désormais de bout en bout avec de l’automatisation. Les établissements obtiennent un système évolutif et intelligent ; les étudiants bénéficient d’une préparation plus rapide aux entretiens qui comptent ; W3villa a livré un produit autour duquel les établissements peuvent générer des revenus.\"],\"PaHxQd\":[\"Project minimum\"],\"9NAqO4\":[\"Automatisation des propositions\"],\"a24q7E\":[\"Langages propriétaires, cycles de déploiement lents et logique « boîte noire ».\"],\"kS6G/9\":[\"a tiré la prise\"],\"u9RZ7+\":[\"Punjabi\"],\"frfCYp\":[\"T1 2026\"],\"tFx+ES\":[\"Qatar 🇶🇦\"],\"3XOwjg\":[\"Rates\"],\"DnWJal\":[\"Reach out\"],\"gSQVmr\":[\"Lire l’étude de cas\"],\"EqCbT9\":[\"Autorisations de lecture/modification/suppression\"],\"Gr9RIC\":[\"Ready to grow<0/>with Twenty?\"],\"zTY2by\":[\"De vraies histoires clients d’équipes qui font tourner leur activité sur Twenty : comment elles ont migré, ce qu’elles ont personnalisé et ce qui a changé une fois que leur CRM leur a enfin convenu.\"],\"NIwjHh\":[\"Immobilier\"],\"CH+Ona\":[\"De vraies histoires de vraies équipes sur la façon dont elles ont façonné Twenty pour l’adapter à leur flux de travail et accélérer leur croissance.\"],\"5O1eTm\":[\"Des changements en temps réel ? Ce sera une surprise premium.\"],\"4hc7hc\":[\"Données en temps réel\"],\"dKQCrj\":[\"Le temps réel est un état d’esprit, pas une fonctionnalité.\"],\"Zhiuz9\":[\"Trimestre record\"],\"PWlTvh\":[\"Enregistrements\"],\"q45OlW\":[\"Regions\"],\"rwWjWg\":[\"Notes de version\"],\"5icoS1\":[\"Versions\"],\"BkBq/5\":[\"Remove \",[\"0\"],\" filter\"],\"a/aGHe\":[\"Renommer, télécharger et supprimer des pièces jointes\"],\"t9yxlZ\":[\"Rapports\"],\"SY/an2\":[\"Rapports et tableaux de bord\"],\"s+MGs7\":[\"Ressources\"],\"oC2l7f\":[\"API REST et GraphQL\"],\"kx0s+n\":[\"Résultats\"],\"2itg0p\":[\"Rétro 2015\"],\"frqduN\":[\"Notes enrichies attachées aux enregistrements\"],\"/gaSVU\":[\"Feuille de route\"],\"mLp5AP\":[\"Romania 🇷🇴\"],\"uJc01W\":[\"Romanian\"],\"Wdh41P\":[\"Autorisations au niveau des lignes\"],\"mRpuWW\":[\"Faire fonctionner des programmes de faux entretiens pour des centaines d’étudiants semble simple. En pratique, universités et instituts de formation se heurtent au même mur : inscriptions saisies à la main, liens d’entretien envoyés un par un, enseignants qui examinent chaque session sans notation ni classification. À l’échelle réelle, ça casse.\"],\"T1ut28\":[\"Russia 🇷🇺\"],\"nji0/X\":[\"Russian\"],\"dw8D3T\":[\"Rwanda 🇷🇼\"],\"niLOap\":[\"Saint Kitts & Nevis 🇰🇳\"],\"zCHzF/\":[\"Saint Lucia 🇱🇨\"],\"Md/8iQ\":[\"Saint Vincent 🇻🇨\"],\"Burn4/\":[\"Centre des modules complémentaires Salesfarce\"],\"xTfEgV\":[\"Salesfarce Pro\"],\"/UolBB\":[\"Salesforce Classic\"],\"l69E+u\":[\"Migration depuis Salesforce\"],\"CADlRK\":[\"Même CRM\"],\"60i6S+\":[\"Même résultat\"],\"xl2tJ9\":[\"Mêmes résultats\"],\"w9QWxz\":[\"SSO SAML/OIDC\"],\"R38ZPo\":[\"Samoa 🇼🇸\"],\"fK288K\":[\"San Marino 🇸🇲\"],\"KDcBQd\":[\"São Tomé & Príncipe 🇸🇹\"],\"/BK0Nl\":[\"Saudi Arabia 🇸🇦\"],\"elz5ka\":[\"Économisés / mois\"],\"tigXYO\":[\"économisés chaque mois\"],\"bifv6N\":[\"Passage à l’échelle\"],\"rbgetd\":[\"Passer à l’échelle sans\"],\"842ybw\":[\"Passer à l’échelle sans casser les opérations\"],\"vk6sVR\":[\"Search a country…\"],\"HVOGoW\":[\"Limite d’utilisateurs\"],\"a3LDKx\":[\"Sécurité\"],\"aB+XpI\":[\"Voir plus de fonctionnalités\"],\"FY4ykg\":[\"Voir la dernière version\"],\"JDp1bg\":[\"Voyez les mises à jour au moment où elles se produisent. Collaborez avec votre équipe et vos agents en toute fluidité.\"],\"0kgOPB\":[\"Découvrez ce qui a été livré en \",[\"0\"]],\"wgNoIs\":[\"Tout sélectionner\"],\"6p/m5q\":[\"Select your country\"],\"6JhL+3\":[\"Auto-hébergé\"],\"QFK/45\":[\"Self-hosted (Docker/K8s) · Cloud architecture · Scaling · Security · Monitoring\"],\"5CWy3T\":[\"L’auto-hébergement signifie qu’AC&T ne supporte aucun risque lié à un fournisseur : pas de modèle de tarification susceptible de changer, pas de plateforme qui peut disparaître, pas de migration forcée. Le système leur appartient.\"],\"5WmQ5O\":[\"L’auto-hébergement signifie le contrôle\"],\"6QPYP7\":[\"Twenty auto-hébergé\"],\"GrBvv/\":[\"Auto-hébergement\"],\"YdhUoe\":[\"Auto-hébergement, désormais à louer !\"],\"NaHz2o\":[\"Auto-hébergement\"],\"D50Vyu\":[\"Senegal 🇸🇳\"],\"eEJlq0\":[\"Serbia 🇷🇸\"],\"62gxWx\":[\"Seychelles 🇸🇨\"],\"3VFzsh\":[\"Lancez un produit sur Twenty\"],\"6lGV3K\":[\"Afficher moins\"],\"RhU4bB\":[\"Showing \",[\"visibleCount\"],\" of \",[\"totalCount\"],\" partners\"],\"I89wN/\":[\"Showing all \",[\"totalCount\"],\" partners\"],\"yhyNch\":[\"Sierra Leone 🇸🇱\"],\"mA6cL1\":[\"Inscrivez-vous à Cloud en moins d’une minute et démarrez votre essai de 30 jours. Pour des déploiements plus importants, nos Packs d’onboarding de 4 heures ou nos partenaires certifiés vous mettent en production en 1 à 2 semaines.\"],\"0eG5g+\":[\"Singapore 🇸🇬\"],\"V9dFwD\":[\"Plan du site\"],\"t6ComU\":[\"Évitez l’UX lourde qui accompagne toujours le sur-mesure.\"],\"U7keXg\":[\"Slovakia 🇸🇰\"],\"o1VTTF\":[\"Slovenia 🇸🇮\"],\"bUmSwL\":[\"Des modèles intelligents, des raccourcis et des mises en page rendent les tâches quotidiennes plus rapides et plus faciles à exécuter.\"],\"6sKjjx\":[\"Solo\"],\"FX2oa1\":[\"Solo or agency?\"],\"TcZtfs\":[\"Solomon Islands 🇸🇧\"],\"TvdMI3\":[\"Solutioning\"],\"t1E06j\":[\"Somalia 🇸🇴\"],\"AVfp38\":[\"Certains appellent cela des tarifs entreprise. Nous préférons un CRM où l’accès API, les webhooks et les workflows ne surgissent pas comme des modules complémentaires surprises.\"],\"B/mYo/\":[\"Accès au code source\"],\"zHJB/O\":[\"South Africa 🇿🇦\"],\"7MdTKh\":[\"South Korea 🇰🇷\"],\"a4jo+V\":[\"South Sudan 🇸🇸\"],\"Kv3C8d\":[\"Spain 🇪🇸\"],\"65A04M\":[\"Spanish\"],\"00jcbn\":[\"Sri Lanka 🇱🇰\"],\"vnS6Rf\":[\"SSO\"],\"uQl22y\":[\"Support standard\"],\"wxW2Sv\":[\"Commencez à automatiser à très grande échelle !\"],\"XO628f\":[\"Commencer gratuitement\"],\"+6VDIA\":[\"Start your free trial today<0/>without credit card.\"],\"j9c8rb\":[\"Restez dans le flux\"],\"GdGiNi\":[\"Step \",[\"current\"],\" of \",[\"total\"]],\"bxgoJR\":[\"Des guides pas à pas et des playbooks pour aider votre équipe à tirer le meilleur parti de son espace de travail.\"],\"UCLArd\":[\"Cessez d’accepter les compromis.\"],\"lm4alq\":[\"structure\"],\"Sv4BSp\":[\"Sous-domaine (yourco.twenty.com)\"],\"H5/rZQ\":[\"Soumettre la candidature\"],\"MDqQmP\":[\"Envoi…\"],\"8Z1557\":[\"Sudan 🇸🇩\"],\"XYLcNv\":[\"Support\"],\"Aq66kg\":[\"Suriname 🇸🇷\"],\"Yz+oFV\":[\"Swahili\"],\"b2//Ip\":[\"Sweden 🇸🇪\"],\"UaISq3\":[\"Swedish\"],\"IImT5c\":[\"Switzerland 🇨🇭\"],\"sjuSub\":[\"Syria 🇸🇾\"],\"3w+Aox\":[\"Table, Kanban, Calendrier\"],\"ISVD3+\":[\"Tagalog\"],\"9M02G5\":[\"Personnalisez les pages d’enregistrement, les menus et les vues\"],\"boABlR\":[\"Taiwan 🇹🇼\"],\"XJspRJ\":[\"Tajikistan 🇹🇯\"],\"JAKtcG\":[\"Parlez-nous\"],\"fb427h\":[\"Tamil\"],\"ri1l89\":[\"Tanzania 🇹🇿\"],\"GWMpL3\":[\"Tâches et activités\"],\"Ye3KKA\":[\"Faites équipe avec un expert Twenty\"],\"vsdUaL\":[\"Notes techniques\"],\"y+bLyB\":[\"Technical skills\"],\"1ZwmkP\":[\"modèle\"],\"mvP/25\":[\"Conditions générales\"],\"BEX1RA\":[\"Conditions d’utilisation | Twenty\"],\"iqG74V\":[\"Conditions d’utilisation de Twenty.com PBC, y compris l’utilisation de Twenty.com, des sous-domaines et des services associés.\"],\"SUr44j\":[\"Thai\"],\"6t7gpr\":[\"Thailand 🇹🇭\"],\"pYwj0k\":[\"Thanks,\"],\"FjkPYg\":[\"Cela a ouvert la porte à quelque chose de plus puissant. Justin a construit un front-end personnalisé qui extrait des données en direct de ces systèmes dans une vue unique, adaptée à chaque rôle. Lorsqu’une proposition est gagnée, ce qui nécessitait auparavant que quatre personnes configurent manuellement des instances à travers quatre outils différents se fait désormais en un seul clic, en s’appuyant sur les données collectées dans Twenty tout au long du cycle de vie de l’opportunité. C’est un nouveau pas vers un travail à plus forte valeur pour les clients.\"],\"8S4psU\":[\"Ça fonctionne jusqu’au moment où vous avez besoin de comprendre l’activité sous-jacente. Quelles affaires sont bloquées ? D’où viennent les leads ? Quel est le taux de closing ? Avec des tableurs et un ancien CRM personnalisé qui ne suivait pas, ces questions étaient presque impossibles à résoudre.\"],\"zXlFuT\":[\"Le CRM open source n°1 pour les équipes modernes. Modulaire, évolutif et conçu pour s’adapter à votre entreprise.\"],\"G2IgPj\":[\"Le pari est\"],\"NT2bSJ\":[\"Le pari porte ses fruits\"],\"Xmr/wH\":[\"l’entreprise\"],\"Wie492\":[\"L’équipe de développement commercial avait enfin le CRM qu’elle demandait. L’adoption est venue naturellement : leurs données étaient déjà là lorsqu’ils se connectaient.\"],\"2kHqXc\":[\"Le PDG avait résisté pendant des années à l’idée d’introduire un CRM. L’équipe de développement commercial n’avait aucune expérience d’un tel outil, et les coûts de licence des CRM bien connus comme Salesforce ou HubSpot étaient difficiles à justifier sans garantie d’adoption : un CRM n’est aussi bon que la qualité de la maintenance des données qu’il contient.\"],\"5DpEh7\":[\"Le CRM comme\"],\"2sfVd8\":[\"Le CRM comme centre de contrôle\"],\"XlFsoH\":[\"Le pari initial sur l’architecture tient, et les fonctionnalités d’IA à venir devraient le rendre encore plus pertinent.\"],\"kCUcnD\":[\"La flexibilité est tout simplement incroyable. Littéralement, il n’y a rien que vous ne puissiez pas faire. Vous pouvez créer des objets, accéder à tout via l’API, extraire des notes et les envoyer vers le portail. Essayez de faire ça dans HubSpot. Impossible. C’est la véritable capacité à construire exactement ce qui est réellement nécessaire.\"],\"MaHqAc\":[\"La flexibilité est vraiment ce qui a fait la différence. Nos besoins évoluent très vite. Je découvre un nouveau besoin et en deux clics je peux y répondre. C’est un vrai avantage quand on avance rapidement.\"],\"Q5iZ9Q\":[\"La flexibilité pour raccorder tout cela, sans aide extérieure et sans se battre contre la plateforme, a rendu possible pour une seule personne de mettre en place et de maintenir une stack connectée à l’échelle d’un cabinet de conseil entier.\"],\"l0eUFC\":[\"Le déploiement complet a eu lieu en juillet 2025. Depuis, Nine Dots a construit un Assistant intelligent par-dessus le système, incitant les agents avec des tâches, des rappels et des analyses de marché à la demande. Certains agents n’ouvrent jamais directement Twenty, et pourtant ils en tirent leur puissance, surpassant leurs pairs qui se reposent uniquement sur des processus manuels. Au T1 2026, Homeseller avait enregistré son meilleur trimestre de ventes de son histoire.\"],\"SiW1pC\":[\"l’avenir du CRM\"],\"sm10Rg\":[\"Le Monolithe géant\"],\"nFB8I1\":[\"Le Fardeau interne\"],\"ZNzKXV\":[\"La décision clé a été de ne pas tout reconstruire à partir de zéro. Twenty couvre le modèle de données, les autorisations, l’authentification et le moteur de workflow, les parties qui auraient pris des mois à refaire, pour que l’équipe puisse se concentrer sur la logique spécifique au produit.\"],\"q1kKLq\":[\"L’opportunité\"],\"ZgWQl4\":[\"la surcharge\"],\"2NJdyz\":[\"Le Problème.\"],\"Q8D9Lf\":[\"le produit\"],\"3/wAFg\":[\"Le résultat\"],\"nAWeyi\":[\"Il en résulte un système qui correspond à la manière dont AC&T travaillait déjà, au lieu de l’inverse.\"],\"tfG/xw\":[\"Le bon\"],\"nbHA9N\":[\"Les bonnes fondations\"],\"omVXTg\":[\"La configuration auto-hébergée signifie qu’Alternative Partners possède toute la stack : aucun accès d’un fournisseur à leurs données, aucune dépendance à un modèle de tarification SaaS, contrôle total sur l’évolution du système. La migration a été rapide grâce à l’IA ; le résultat est durable car la stack est open source.\"],\"1tN3qf\":[\"Le basculement\"],\"AnGOwN\":[\"La situation\"],\"u0uFxg\":[\"Ce sont les vraies ventes\"],\"53RXLB\":[\"Ils appellent ça la fidélité client. Nous appelons ça une cage très affectueuse.\"],\"RhmZMe\":[\"Ils n’ont pas simplement remplacé un outil. Ils ont repris la propriété de la façon dont leur entreprise fonctionne.\"],\"5YzqyT\":[\"Ils ont évalué Salesforce, Zoho, Pipedrive et SuiteCRM. Chacun venait avec les mêmes compromis : trop cher, trop rigide ou trop générique, et aucun ne réglait le problème sous-jacent. Ils louaient toujours une structure qu’ils ne contrôlaient pas.\"],\"6f8QUY\":[\"Timor-Leste 🇹🇱\"],\"2y6W+f\":[\"pour les gouverner toutes\"],\"DeTupk\":[\"Togo 🇹🇬\"],\"CocxTO\":[\"Tonga 🇹🇴\"],\"5eFktS\":[\"Intégration d’outils\"],\"xv7HSr\":[\"total par mois à coût fixe\"],\"hmu++i\":[\"Suivez le montant et la date de conclusion\"],\"POzmFl\":[\"Suivez chaque version avec des journaux de changements, des points forts et des démos des nouvelles fonctionnalités.\"],\"6vHPh9\":[\"Track relationships, manage pipelines, and take action quickly with an intuitive CRM that helps your team move faster from day one with confidence.\"],\"xwWQ9Q\":[\"Training & Adoption\"],\"MtCqjl\":[\"Training, Adoption & Support\"],\"/ga9kq\":[\"Trinidad & Tobago 🇹🇹\"],\"tdZpCd\":[\"Trust Center\"],\"KtyN0b\":[\"approuvé par\"],\"eslLQF\":[\"Essayer en direct\"],\"qhmtws\":[\"Try removing some filters or browse all partners.\"],\"E/hGy3\":[\"Essayer Twenty Cloud\"],\"D5Kf4t\":[\"Mardi, votre équipe apprend que les affaires avec un sponsor technique se concluent 3 fois plus vite. Mercredi, vous ajoutez le champ, câblez le scoring, ajustez le workflow. Jeudi, vos agents agissent en conséquence. Cette boucle de feedback fait la différence. Et elle ne fonctionne que si le CRM est le vôtre.\"],\"y4UxlS\":[\"Tunisia 🇹🇳\"],\"UIDKnJ\":[\"Turkey 🇹🇷\"],\"Kz91g/\":[\"Turkish\"],\"kdJl4v\":[\"Turkmenistan 🇹🇲\"],\"tSc/a3\":[\"Tuvalu 🇹🇻\"],\"O5dAmW\":[\"Twenty | CRM open source n°1\"],\"NalB1c\":[\"Twenty Apps ouvre la voie à la création de produits, pas seulement d’implémentations. Par exemple, nous développons une intégration WhatsApp Business que n’importe quel client de Twenty pourrait obtenir. C’est une source de revenus récurrents que nous n’aurions pas si nous ne faisions que configurer la plateforme de quelqu’un d’autre.\"],\"q9UWVC\":[\"Articles Twenty — Analyses sur le CRM open source\"],\"mkTfZ1\":[\"Twenty comme\"],\"+w9xZW\":[\"Twenty comme colonne vertébrale API d’une stack go-to-market\"],\"zj0CA+\":[\"Twenty comme colonne vertébrale API d’une stack go-to-market | Elevate Consulting\"],\"neM1Ol\":[\"Fonctionnalités de Twenty CRM — Plateforme CRM open source moderne\"],\"8zCqPL\":[\"Tarifs de Twenty CRM — Offres à partir de 9 $ par utilisateur et par mois\"],\"D05UQH\":[\"Clients de Twenty — Comment les équipes modernes font tourner leur CRM\"],\"0qyMhk\":[\"Twenty donne aux équipes techniques les briques pour un CRM personnalisé qui répond à des besoins métier complexes et s’adapte rapidement à mesure que l’entreprise évolue.\"],\"jVhq41\":[\"Twenty vous offre le type de flexibilité qui change réellement ce que vous pouvez proposer à vos clients. L’expérience développeur est soignée, les API sont ouvertes, et quand quelque chose doit être personnalisé, vous pouvez simplement le faire. Il n’y a pas de combat contre la plateforme.\"],\"x/I85y\":[\"Twenty n’est pas seulement l’endroit où vivent les données CRM. C’est la colonne vertébrale API qui rend le reste de la stack possible.\"],\"K+zzSQ\":[\"Twenty nous permet de construire un CRM autour de l’entreprise et non l’entreprise autour du CRM.\"],\"AxT+g4\":[\"Twenty simplifie tout. C'est épuré, intuitif et conçu pour rappeler Notion.\"],\"4SJucz\":[\"Twenty Partners — Intégrateurs CRM Open Source certifiés\"],\"X1GHuJ\":[\"Twenty Releases — Nouveautés du CRM Open Source\"],\"V1lV7B\":[\"Assistance de l'équipe Twenty\"],\"KsFvUt\":[\"Twenty's certified partners help teams migrate, customise, and operate the open source CRM across regions, languages, and deployment models. Browse profiles and book a call.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"O+vc/1\":[\"Type of team *\"],\"P+R1Lc\":[\"Typical project\"],\"HqFilh\":[\"UAE 🇦🇪\"],\"+WNTxL\":[\"Uganda 🇺🇬\"],\"uxuy4l\":[\"Thème de l'interface utilisateur\"],\"tNfmmF\":[\"UK 🇬🇧\"],\"z7UkhA\":[\"Ukraine 🇺🇦\"],\"V9+2pH\":[\"Ukrainian\"],\"jqzUyM\":[\"Indisponible\"],\"Hix/m6\":[\"Chronologie unifiée (e-mails, événements, tâches, notes, fichiers)\"],\"NIuIk1\":[\"Illimité\"],\"aGpTSC\":[\"Jusqu’à 5 espaces de travail\"],\"SPdRRU\":[\"Upfront consulting, scoping, strategy.\"],\"2vanwz\":[\"Chargez, renommez, prévisualisez et gérez les fichiers directement sur les enregistrements. Tout reste à sa place.\"],\"tmwuH9\":[\"Urdu\"],\"huOaG8\":[\"Uruguay 🇺🇾\"],\"RCOibx\":[\"US\"],\"LXHEIS\":[\"USA 🇺🇸\"],\"Roaswv\":[\"Guide utilisateur\"],\"3XIgKU\":[\"Rôles utilisateur\"],\"UCUX2+\":[\"User-side rollout & ongoing support.\"],\"FOOEtP\":[\"Uzbekistan 🇺🇿\"],\"CRXL2j\":[\"Vanuatu 🇻🇺\"],\"NNeEYO\":[\"Vatican 🇻🇦\"],\"BWzac4\":[\"Venezuela 🇻🇪\"],\"FlQ1vR\":[\"Vietnam 🇻🇳\"],\"fROFIL\":[\"Vietnamese\"],\"BRBSny\":[\"View \",[\"0\"],\" on LinkedIn\"],\"ITdNGt\":[\"View on LinkedIn\"],\"73lp8c\":[\"View profile\"],\"BAzC1v\":[\"Types de vue\"],\"mHtVst\":[\"Visualisez vos clients sur une carte !\"],\"CsHuOr\":[\"VP Ingénierie\"],\"uRh799\":[\"VP Ingénierie chez W3villa Technologies\"],\"w2INie\":[\"VP Ingénierie, W3villa Technologies\"],\"s0tU5h\":[\"W3Grads\"],\"R8BueT\":[\"W3villa a développé W3Grads (w3grads.com), une plateforme d'entretiens simulés alimentée par l'IA pour les universités et les instituts de formation, en utilisant Twenty comme socle opérationnel.\"],\"7hHsoV\":[\"W3villa a conçu W3Grads pour des entretiens simulés par IA à grande échelle, avec Twenty comme socle opérationnel.\"],\"QBOUnd\":[\"W3villa a livré W3Grads sur Twenty pour des entretiens IA, la notation et des workflows à l'échelle des institutions, sans reconstruire toute la plomberie du CRM.\"],\"7q5Vjn\":[\"W3villa Technologies\"],\"ZabLEt\":[\"W3villa Technologies a entrepris de le résoudre correctement, non pas avec un contournement, mais avec un produit.\"],\"3v2ipf\":[\"W3villa a utilisé Twenty comme framework de niveau production pour le modèle de données, les autorisations, l'authentification et le moteur de workflows qu'ils auraient autrement dû reconstruire eux-mêmes.\"],\"8CHatv\":[\"Nous n'avons pas pu soumettre votre candidature. Veuillez réessayer dans un instant.\"],\"MjWeUE\":[\"Nous ne voulions pas simplement masquer le problème. Nous voulions construire quelque chose sur lequel les établissements pourraient s'appuyer à grande échelle, ce qui signifiait partir d'une base suffisamment solide pour supporter toute la complexité de ce que nous avions en tête.\"],\"u7hKUm\":[\"we'll be in touch!\"],\"d5CWI6\":[\"Nous construisons le CRM Open Source n°1, mais nous ne pouvons pas le faire seuls. Rejoignez notre écosystème de partenaires et grandissez avec nous.\"],\"v1kQyJ\":[\"Webhooks\"],\"ZhnM/K\":[\"Webhooks (capture de données modifiées)\"],\"hgDePr\":[\"Website or GitHub\"],\"Lx0cVD\":[\"What an admin can do without writing code.\"],\"Z34FQq\":[\"Ce qui a convaincu Olivier, c'est la flexibilité de la plateforme et la direction qu'elle prenait. Même lorsque les besoins initiaux n'étaient que de la tenue de registres de base, il lui fallait tout de même un modèle de données personnalisé avec des autorisations granulaires pour gérer la large palette d'activités de NetZero. Il lui fallait aussi un système capable de s'adapter rapidement à une entreprise à itérations rapides.\"],\"phiBjc\":[\"Combien coûte Twenty ?\"],\"WVQaGB\":[\"Ce qui arrive en avril 2026 est ce qu'il attendait : la création de workflows assistée par l'IA, décrire ce dont il a besoin et itérer à partir de là au lieu de construire une logique complexe depuis zéro. Pour un fondateur qui gère lui-même le CRM, cela change ce qui est réellement possible.\"],\"iOAq7n\":[\"La suite\"],\"tWd6MT\":[\"Ce qui est prévu est important. NetZero dispose d'un data lake, de formulaires en ligne et de multiples systèmes internes qu'il souhaite connecter à Twenty. Les tuyaux sont là ; la prochaine étape consiste à mettre en place des automatisations qui les relient.\"],\"aYRqmz\":[\"Ce que cela signifie\"],\"QCHIzm\":[\"What you cover *\"],\"1kfjxX\":[\"Quelle que soit la suite, il fallait que ce soit quelque chose qu'ils puissent posséder.\"],\"cs6VpJ\":[\"Quand un étudiant s'inscrit via un QR code lors d'un événement sur le campus, le système attribue un plan, génère une session d'entretien et envoie un lien. L'IA conduit l'entretien, note le candidat et classe le résultat. Le corps enseignant voit où en est chaque étudiant sans revoir manuellement chaque session. Concevoir et itérer sur ces workflows a été plus rapide avec l'IA dans la boucle.\"],\"I/oPrY\":[\"Quand le canal est\"],\"JglRo/\":[\"Quand le canal est l'entreprise\"],\"ee4xKk\":[\"Quand le fournisseur\"],\"DajeYD\":[\"Quand le fournisseur a tout arrêté\"],\"X1gdzB\":[\"Quand votre CRM est\"],\"OQ41z8\":[\"Quand votre CRM est le produit\"],\"Svuneu\":[\"Quand votre CRM est le produit : W3Grads sur Twenty | W3villa Technologies\"],\"bGN8u+\":[\"Bien que NetZero exécute encore un second CRM en parallèle pour les opérations très axées sur WhatsApp avec des agriculteurs au Brésil, ils prévoient de tout migrer vers Twenty à mesure que les fonctionnalités et l'écosystème grandissent. Leur pipeline structuré et multinational est déjà propulsé par Twenty.\"],\"DJlSwA\":[\"Pourquoi\"],\"4sOVu+\":[\"Pourquoi Twenty\"],\"DH7vVZ\":[\"Pourquoi Twenty — Le CRM Open Source conçu pour être personnalisé\"],\"OKVlnc\":[\"Avec Twenty, lorsqu'un nouveau besoin apparaît, il peut y répondre lui-même : pas de développeur requis, pas de ticket de support.\"],\"KAB1uP\":[\"avec vous\"],\"OX5bbs\":[\"Adresse e-mail professionnelle *\"],\"woYYQq\":[\"Workflows\"],\"1ie9Dm\":[\"Des workflows qui\"],\"AzqmMJ\":[\"Des workflows qui sont réellement utilisés\"],\"pmUArF\":[\"Espace de travail\"],\"bwECg/\":[\"Workspace URL, customer references, relevant links…\"],\"zkWmBh\":[\"Annuel\"],\"S6izIJ\":[\"Yemen 🇾🇪\"],\"l75CjT\":[\"Oui\"],\"bo6pUs\":[\"Oui, avec notre framework Apps. Générez une extension avec `npx create-twenty-app` et livrez des objets personnalisés, des fonctions de logique côté serveur, des composants React qui s'affichent dans l'UI de Twenty, des compétences et des agents IA, des vues et la navigation, le tout en TypeScript, déployable sur n'importe quel espace de travail.\"],\"yIcBW6\":[\"Oui. Chaque espace de travail Cloud est fourni avec un serveur MCP natif. Connectez votre assistant IA via OAuth et il peut lire et écrire vos données CRM en langage naturel.\"],\"8xYMYQ\":[\"Oui. Importez vos données via CSV, ou utilisez notre API pour plus de 50 000 enregistrements. Nos partenaires peuvent prendre en charge l'intégralité de la migration pour vous.\"],\"8m0eN9\":[\"Oui. Twenty est le CRM Open Source n°1 sur GitHub. Vous pouvez l'auto-héberger pour posséder entièrement votre infrastructure, ou l'exécuter sur notre cloud managé pour une configuration zéro ops.\"],\"LJ3sTb\":[\"Vous n'achetez pas votre pipeline de déploiement sur étagère. Vous ne louez pas votre entrepôt de données à un fournisseur qui décide du schéma. Vous le construisez, vous le possédez, vous itérez dessus chaque semaine. Le CRM prend la même direction. Les équipes qui le considèrent comme une infrastructure qu'elles possèdent accumuleront un avantage à chaque trimestre.\"],\"SfJVcK\":[\"Votre achat est terminé. Suivez les étapes ci-dessous pour copier votre clé de licence dans votre instance Twenty.\"],\"krHgj1\":[\"Votre clé d'entreprise\"],\"+dxjCu\":[\"Votre licence entreprise a été activée avec succès.\"],\"pEQiCY\":[\"Votre nom *\"],\"fQATWn\":[\"Votre réseau, entièrement cartographié.\"],\"CgGN5T\":[\"Zambia 🇿🇲\"],\"wHjFOw\":[\"Zéro\"],\"xlFvlS\":[\"Zéro travail manuel\"],\"ZvEoMq\":[\"Zéro travail manuel au cœur. Automatisation totale. Construit sur Twenty.\"],\"TT3YXb\":[\"Zimbabwe 🇿🇼\"]}")as Messages;
\ No newline at end of file
+/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"BUIzFF\":[\"-33 % de réduction},{\"],\"q0ur5+\":[[\"0\"],\" | Étude de cas client de Twenty},{\"],\"NSO/FI\":[[\"hourly\"],\"/hr\"],\"2Ha6K9\":[[\"labelText\"],\" filter, \",[\"0\"],\" selected, click to open\"],\"0Xh9/0\":[[\"labelText\"],\" filter, click to open\"],\"icND7o\":[\"/ utilisateur / mois - facturé annuellement},{\"],\"XUqxHW\":[\"/utilisateur/mois},{\"],\"ojimXJ\":[\"© 2026 – Twenty},{\"],\"2ygf/L\":[\"← Back\"],\"9j/bUt\":[\"← Twenty partners\"],\"foGG8A\":[\"+$105/utilisateur par mois},{\"],\"Bsq9GJ\":[\"+$35/utilisateur par mois},{\"],\"mWSpW5\":[\"+$5/utilisateur par mois},{\"],\"JIwDAd\":[\"+$7000/organisation par mois\"],\"yVr18d\":[\"+$75/utilisateur par mois\\nPassez à Enterprise !\"],\"iK+ikF\":[\"+10k autres\"],\"nRtVCK\":[\"+20% des dépenses nettes\\n+$75/utilisateur par mois\\nPassez à Enterprise !\"],\"Uqm/0u\":[\"<0>...with AI that actually0><1/><2>helps you2><3>work faster3>\"],\"ZKcQvG\":[\"<0>A CRM for teams0><1/><2>that2><3>move fast3>\"],\"2Avwos\":[\"<0>A custom CRM gives your org an edge,0><1>but building one1><2>comes with2><3>tradeoffs3>\"],\"GIqRh7\":[\"<0>A demo worth a0><1/><2>thousand words2>\"],\"h5K9X+\":[\"<0>A modern CRM with0><1>an intuitive interface1>\"],\"YXQqRD\":[\"<0>Assemble, iterate and adapt a robust CRM,0><1>that's quick to flex1>\"],\"XnXDNI\":[\"<0>Become0><1/><2>our partner2>\"],\"Tp01iS\":[\"<0>Begin with production-grade0><1>building blocks1>\"],\"LCx6+8\":[\"<0>Build a CRM your competitors0><1>can't buy.1>\"],\"lt0XAM\":[\"<0>Build it in an afternoon.0><1>AI made the gap that small.1>\"],\"y8AZXw\":[\"<0>Build your Enterprise CRM0><1>at AI Speed1>\"],\"OGcRSu\":[\"<0>Continue iteration0><1>without friction1>\"],\"2fzdgb\":[\"<0>CRM was a ledger.0><1>AI turned it into an operating system.1>\"],\"gx6Utt\":[\"<0>Dev teams power<1/>company-wide0><2/><3>change with Twenty3>\"],\"FyjPh/\":[\"<0>Differentiation now0><1>lives in the code you own.1>\"],\"FymD+X\":[\"<0>Enterprise0><1>activation1>\"],\"V7uulz\":[\"<0>Everything you need,0><1>out of the box1>\"],\"IvtaRX\":[\"<0>Find your0><1>Twenty partner1>\"],\"f36X9W\":[\"<0>Go the extra mile0><1>with no-code1>\"],\"NUko9S\":[\"<0>How teams0><1/><2>built with Twenty2>\"],\"WCsM/Q\":[\"<0>Latest0><1/><2>Releases2>\"],\"1LHR8V\":[\"<0>Make your GTM team happy0><1/><2>with2><3>a CRM they'll love3>\"],\"K6xBTA\":[\"<0>Ready to build0><1/><2>your own story?2>\"],\"pddHmc\":[\"<0>Ready to grow0><1/><2>with Twenty?2>\"],\"mzlPTg\":[\"<0>See how teams0><1/><2>build2><3>on Twenty3>\"],\"7D+4tN\":[\"<0>Simple0><1/><2>Pricing2>\"],\"pj2iec\":[\"<0>Stay in control with our0><1>open-source software1>\"],\"Oc/cFZ\":[\"<0>Stop fighting custom.0><1/><2>Start building, with Twenty2>\"],\"zykz1r\":[\"<0>The future of CRM is built,0><1>not bought.1>\"],\"6LusuM\":[\"<0>Trust the n°1 CRM,0><1>or not!1>\"],\"be30i9\":[\"$0\"],\"6inRXo\":[\"$1/exécution d’orchestration/organisation\\n+$75/utilisateur par mois\\nPassez à Enterprise !\"],\"EkIZkY\":[\"$19\"],\"8r6DgO\":[\"$9\"],\"EHNAf2\":[\"1 clic\"],\"qvNspm\":[\"1‑800‑YES‑SOFTWARE\"],\"6WQdu8\":[\"100 par minute\"],\"uuKUqZ\":[\"11 groupes\\nd’autorisations\"],\"2szX5S\":[\"150\"],\"SaSafJ\":[\"150 heures\"],\"9ntyY8\":[\"150 h\"],\"2z1Znr\":[\"Contrat de 2 ans\"],\"l6Vx4q\":[\"2,000+\"],\"FKcV/y\":[\"2025\"],\"PJgfBS\":[\"3\"],\"BL47wE\":[\"3 contrat de 2 ans\\n-33% de réduction\"],\"/jgC+9\":[\"3 gammes de produits\"],\"7SJhyh\":[\"30+\"],\"Pdl2UE\":[\"4 outils\"],\"2ScEtE\":[\"5 crédits de workflow/mois inclus\"],\"hIKxCy\":[\"5,000\"],\"Z2TH0F\":[\"50 par minute\"],\"CiRGZ8\":[\"50 crédits de workflow/an inclus\"],\"tZvajW\":[\"6 workflows\"],\"AQPMc4\":[\"90%\"],\"fHxYPM\":[\"90%+\"],\"1GAcp6\":[\"Une entreprise qui ne correspond pas à un\"],\"NLSM5L\":[\"Une entreprise qui ne correspond pas à un modèle\"],\"GSM5RA\":[\"Un CRM qui\"],\"diWAWP\":[\"Un CRM qui grandit avec vous\"],\"och6cp\":[\"Un CRM qui grandit avec vous | NetZero & Twenty\"],\"EewhZt\":[\"Un CRM qu’ils\"],\"muZzEA\":[\"Un CRM qu’ils possèdent vraiment\"],\"GoyOzl\":[\"Une plateforme prête à\"],\"rxMguZ\":[\"Une plateforme prête à évoluer\"],\"R5hTKX\":[\"Une agence immobilière sur WhatsApp\"],\"hwoGni\":[\"Une agence immobilière sur WhatsApp a construit un CRM autour de celui-ci\"],\"WjUlJr\":[\"Qu’un thème rétro soit un module complémentaire payant est, d’une certaine manière, la partie la plus crédible.\"],\"r9Msiv\":[\"Il y a un an, personnaliser votre CRM signifiait embaucher un consultant Salesforce, apprendre Apex, attendre des mois. L’écart entre « je veux ça » et « c’est en ligne » se mesurait en trimestres et en factures. Alors les gens ont fait des compromis. Ils ont plié leur processus pour s’adapter à l’outil et ont appelé cela de l’adoption.\"],\"c0RR2h\":[\"Environ 150 heures par mois économisées sur les opérations manuelles. Des métriques en temps réel pour le dirigeant. Une préparation à la croissance sans ajouter d’effectifs opérationnels. Une équipe capable de répondre à des questions qui prenaient auparavant des jours à reconstituer.\"],\"41o3VS\":[\"AC&T et Flycoder sont passés d’un export d’un fournisseur défaillant à Twenty auto-hébergé, avec plus de 90% de réduction des coûts CRM et un contrôle total.\"],\"TuJiQF\":[\"Migration AC&T Education\"],\"yHUdh6\":[\"AC&T Education Migration (actimmi.com) est une agence éducative en Australie. Ils aident les étudiants internationaux pour les candidatures auprès des établissements et les visas. Ils utilisaient un CRM précédent jusqu’à ce que le fournisseur ferme le système, ne laissant rien d’autre qu’un export CSV.\"],\"MPzy5R\":[\"AC&T est passé à une instance Twenty auto-hébergée sans risque fournisseur, sans migration forcée, et avec des coûts CRM réduits de plus de 90%.\"],\"J+A83M\":[\"AC&T a remplacé un CRM fournisseur fermé par Twenty auto-hébergé et a réduit les coûts CRM de plus de 90%.\"],\"muhZ+X\":[\"Activation de votre licence Enterprise…\"],\"Yyn/dP\":[\"Active filters\"],\"TDMykO\":[\"vraiment utilisés\"],\"+/fX0G\":[\"possèdent réellement\"],\"woOp+c\":[\"Ajouter des objets et des champs\"],\"Y2K3rp\":[\"Modules complémentaires\"],\"Op7nVF\":[\"Adoption\"],\"TeMRC2\":[\"avancé\"],\"2050Pj\":[\"Advisory & Discovery\"],\"QjSFuI\":[\"Afghanistan 🇦🇫\"],\"StqEz0\":[\"Africa\"],\"NmHsVh\":[\"Agency\"],\"vZKKhf\":[\"Aggregate, bar, line, and pie widgets\"],\"rp2omj\":[\"Agro-industrie\"],\"jiGK6+\":[\"IA (Einstein)\"],\"aUn7Ps\":[\"IA et automatisations\"],\"HbXHSp\":[\"Agents IA\"],\"WGXwzu\":[\"Les agents IA commencent à rédiger l’outreach, noter les leads, rechercher des comptes, écrire des relances, mettre à jour les étapes des opportunités. Chacune de ces actions lit et écrit dans le CRM. Le tableau de bord est devenu le livre de jeu. La base de données est devenue le cerveau.\"],\"Rsxdfy\":[\"Agents IA avec compétences personnalisées\"],\"TfV/y9\":[\"Chat IA, paramètres et enregistrements dans des panneaux latéraux pour un accès rapide sur un seul écran.\"],\"R+bwFB\":[\"IA pour des itérations rapides\"],\"+pgY/C\":[\"IA dans le\"],\"A6v5aI\":[\"IA dans le workflow de migration\"],\"t97j+F\":[\"Assisté par IA\"],\"7xlBwk\":[\"Albania 🇦🇱\"],\"EszGq4\":[\"Algeria 🇩🇿\"],\"LIGwFL\":[\"Alternative Partners\"],\"GDVvyT\":[\"Alternative Partners est un cabinet de conseil qui est passé de Salesforce à une instance Twenty auto-hébergée. Benjamin Reynolds a dirigé la migration. Il était déjà devenu expert Twenty en mettant en œuvre Twenty pour l’un des premiers clients cloud de Twenty.\"],\"CCrRuT\":[\"Alternative Partners a remplacé Salesforce par Twenty auto-hébergé, en utilisant de l’IA agentique pour compresser le travail de migration.\"],\"UIu18Y\":[\"Alternative Partners a utilisé de l’IA agentique pour condenser ce qui prendrait normalement des semaines de travail de migration Salesforce en quelque chose qu’une seule personne pouvait superviser.\"],\"iFLhqi\":[\"Amrendra Pratap Singh\"],\"Sbiivs\":[\"Andorra 🇦🇩\"],\"Uv5eaJ\":[\"Angola 🇦🇴\"],\"qKANz3\":[\"Antigua & Barbuda 🇦🇬\"],\"aGCcXe\":[\"Des questions ?\"],\"lgSvgF\":[\"Anything else we should know?\"],\"pkMjbA\":[\"Anything that needs a developer.\"],\"dYZUP3\":[\"Anything that needs devops skills.\"],\"AfiWqP\":[\"APAC\"],\"/AMVjF\":[\"Tutoriels APEX\"],\"OZtEcz\":[\"API\"],\"yKBF3l\":[\"Accès API\"],\"GpYSXo\":[\"Dorsale API\"],\"30KnZB\":[\"Appels API\"],\"42FQ3y\":[\"API-first\"],\"azQMHP\":[\"Les API sont en supplément. La simplicité a un prix.\"],\"MqJvvH\":[\"Des API, SDK et webhooks pour étendre Twenty et livrer des apps au-dessus de vos données CRM.\"],\"I1Z4AM\":[\"Postuler pour développer\"],\"zX3HUD\":[\"Apply to join the Twenty certified partner ecosystem.\"],\"8HV3WN\":[\"Arabic\"],\"uicv6Z\":[\"Architecture\"],\"fT9xVz\":[\"Argentina 🇦🇷\"],\"3KxGep\":[\"Armenia 🇦🇲\"],\"Sfa0xD\":[\"autour de cela\"],\"S+Q+1d\":[\"Ask questions, automate tasks, and get insights with AI that understands your data and helps you move faster every day, end to end across teams.\"],\"v7zTZl\":[\"Attribuez des responsables et des dates d’échéance\"],\"4/b98B\":[\"au cœur\"],\"fxL/Km\":[\"Pièces jointes sans le chaos.\"],\"y2W2Hg\":[\"Journaux d’audit\"],\"tw0/s1\":[\"Australia 🇦🇺\"],\"4cf5s+\":[\"Austria 🇦🇹\"],\"FFv0Vh\":[\"Automatisation\"],\"SJ7WSP\":[\"Disponible sur YouTube !\"],\"8d+jRc\":[\"Azerbaijan 🇦🇿\"],\"iH8pgl\":[\"Retour\"],\"wIoAQo\":[\"Bahamas 🇧🇸\"],\"Rhju1T\":[\"Bahrain 🇧🇭\"],\"LxzgmZ\":[\"Bangladesh 🇧🇩\"],\"rtcPS0\":[\"Barbados 🇧🇧\"],\"RownlY\":[\"Based in\"],\"jQLfIW\":[\"Parce qu’apparemment, la confidentialité paraît plus haut de gamme avec un supplément.\"],\"qEQv1F\":[\"Parce que tout est construit sur le socle ouvert de Twenty, Flycoder a pu câbler exactement la logique dont AC&T avait besoin sans lutter contre la plateforme.\"],\"uIG0OH\":[\"Parce que la fondation est solide, W3Grads est architecturé pour la suite, y compris une couche de paiement pour de futurs plans d’entretiens payants et une échelle nationale sans réécritures structurelles.\"],\"JGM+JO\":[\"Parce que la véritable orchestration consiste à mettre un signe dollar sur chaque entrée spectaculaire.\"],\"PKMHNe\":[\"devenez un génie !\"],\"6ZCRfT\":[\"Devenir partenaire\"],\"7ysT6Z\":[\"Become a Twenty Partner — Application\"],\"0TCnEf\":[\"Belarus 🇧🇾\"],\"qblg4t\":[\"Belgium 🇧🇪\"],\"pSF7xM\":[\"Belize 🇧🇿\"],\"Hds3Bq\":[\"Bengali\"],\"cTWkw3\":[\"Benin 🇧🇯\"],\"SYfuGP\":[\"Benjamin Reynolds\"],\"YfjrMq\":[\"Bertrams\"],\"mzTjnf\":[\"Mieux que Liquid Glass !\"],\"GvGk4g\":[\"Au-delà\"],\"OPnz/X\":[\"Bhutan 🇧🇹\"],\"TVJDFA\":[\"Bolivia 🇧🇴\"],\"MkvsWx\":[\"Book a call\"],\"Wzdd8u\":[\"Bosnia & Herzegovina 🇧🇦\"],\"wtNsrt\":[\"Botswana 🇧🇼\"],\"yCaNfF\":[\"Brazil 🇧🇷\"],\"bxWnM1\":[\"perturber les opérations\"],\"fYFNV7\":[\"Browse Twenty's certified partner network: regional coverage, languages, deployment expertise, and direct booking links.\"],\"VX4eI/\":[\"Brunei 🇧🇳\"],\"sbr0X/\":[\"Build a dashboard of pipeline by stage\"],\"uetyzD\":[\"Build a pipeline board grouped by stage\"],\"Utc5RF\":[\"Créez des tableaux de bord personnalisés à partir de données CRM en temps réel. Agrégez tout — affaires, comptes, activités — dans des graphiques que votre équipe lit vraiment.\"],\"e1u+Zh\":[\"Créez sur une plateforme ouverte\"],\"/ETeLn\":[\"a construit un\"],\"SoAKmY\":[\"Conçu pour la vitesse\"],\"sdItv6\":[\"Bulgaria 🇧🇬\"],\"dNnRlc\":[\"Burkina Faso 🇧🇫\"],\"j8RGrG\":[\"Échaudée par le verrouillage fournisseur, AC&T a construit un CRM qu’elle possède réellement | Twenty\"],\"jtdtLa\":[\"Burundi 🇧🇮\"],\"L40Ae7\":[\"Calendar / booking link\"],\"4yFkf9\":[\"Cambodia 🇰🇭\"],\"AvRzYu\":[\"Cameroon 🇨🇲\"],\"wCALve\":[\"Les développeurs peuvent-ils étendre Twenty avec du code ?\"],\"6mytgb\":[\"Puis-je migrer depuis Salesforce ou HubSpot ?\"],\"nEOTNi\":[\"Canada 🇨🇦\"],\"hRO6uK\":[\"Cape Verde 🇨🇻\"],\"M1RLfx\":[\"Catalan\"],\"NUrY9o\":[\"Categories\"],\"dBApoS\":[\"Central African Republic 🇨🇫\"],\"iI3Dq9\":[\"Chad 🇹🇩\"],\"2D9CbR\":[\"Voir plus de modules complémentaires\"],\"2BY3So\":[\"Chile 🇨🇱\"],\"zG6t8U\":[\"China 🇨🇳\"],\"h1IXFK\":[\"Chinese\"],\"3wV73y\":[\"City\"],\"ZbCD7v\":[\"Le classique ne meurt jamais. Il est simplement étendu une fois de plus.\"],\"u8JHrO\":[\"Clear filters\"],\"L/LPQZ\":[\"Cloud Pro est à 9 $/utilisateur/mois (annuel). Organization est à 19 $/utilisateur/mois et débloque le SSO et des autorisations au niveau des lignes pour les équipes qui ont besoin d’un contrôle d’accès plus fin.\"],\"WYgF8M\":[\"Cloud Pro commence à 9 $/utilisateur/mois avec des objets personnalisés illimités. Auto-hébergez le cœur open source gratuitement, ou passez à Organization pour le SSO et des autorisations au niveau des lignes.\"],\"1YncLF\":[\"Cofondateur chez NetZero\"],\"vWaYWP\":[\"Cofondateur, NetZero\"],\"dcLsG5\":[\"Colombia 🇨🇴\"],\"b5bnuN\":[\"Correspondance colonnes-vers-champs (y compris les relations)\"],\"ofoEsM\":[\"Bientôt disponible !\"],\"KGD9Kt\":[\"Licence commerciale (aucune obligation AGPL)\"],\"OnPROL\":[\"Commercials\"],\"chL5IG\":[\"Communauté\"],\"8CLnho\":[\"Support communautaire\"],\"RxpseA\":[\"Comoros 🇰🇲\"],\"SHjhDC\":[\"Entreprise ou marque *\"],\"P/f7ez\":[\"Terminez l’activation de votre licence Enterprise Twenty auto-hébergée.\"],\"Fkb+LW\":[\"Composez votre CRM et vos applications internes avec une seule boîte à outils d’extensibilité.\"],\"kD7ZGH\":[\"Composez votre CRM et vos applications internes avec une seule boîte à outils d’extensibilité. Modèle de données, mise en page et automatisation.\"],\"2DQw7/\":[\"Congo 🇨🇬\"],\"iSLIjg\":[\"Connecter\"],\"90KBr0\":[\"Connectez des comptes Google ou Microsoft\"],\"xgrBCK\":[\"Connectez des comptes Google ou Microsoft et voyez les e-mails et événements liés automatiquement aux enregistrements du CRM.\"],\"MVrQxI\":[\"Connecté via API\"],\"cfAG43\":[\"Conseil\"],\"GsUBlG\":[\"Contact \",[\"partnerName\"]],\"Oii3vg\":[\"Contacts et entreprises\"],\"24qVhV\":[\"Le contexte vit avec l’enregistrement.\"],\"+Uepfb\":[\"Contrôle\"],\"VOpE1H\":[\"hub de contrôle\"],\"sTIhSj\":[\"Contrôle sans\"],\"wH1xmY\":[\"Contrôle sans lourdeur\"],\"Bj7igG\":[\"Contrôle sans surcharge\"],\"PiH3UR\":[\"Copié !\"],\"he3ygx\":[\"Copier\"],\"7qTWwB\":[\"Copiez la clé Enterprise ci-dessus.\"],\"PXnj76\":[\"Copiez cette clé et collez-la dans les paramètres de votre instance Twenty auto-hébergée.\"],\"FapWIq\":[\"Fonctionnalités principales\"],\"Al/blj\":[\"Costa Rica 🇨🇷\"],\"JRK+HF\":[\"Coûts réduits de plus de\"],\"cRA2/z\":[\"Country *\"],\"Xn2Nlq\":[\"Créer un workflow\"],\"B9nLrl\":[\"Créer des applications sur Twenty\"],\"yAL7FY\":[\"Créer des applications personnalisées\"],\"oS1RiS\":[\"Créer des tâches à partir des enregistrements\"],\"D3S5+x\":[\"Créez des tâches, attribuez des responsables et joignez des notes riches directement depuis n’importe quel enregistrement. Aucun changement d’onglet, aucun contexte perdu.\"],\"MSlbwg\":[\"CRM\"],\"NLgmM4\":[\"CRM audit · Requirements · Process mapping · ROI · RevOps · Vendor selection\"],\"Y44Xsf\":[\"Les coûts CRM ont chuté de plus de 90%. La surcharge manuelle liée à l’ancien système a disparu. Pour la première fois, AC&T a un CRM qu’ils ne perdront plus.\"],\"wDasLa\":[\"Ingénieur CRM\"],\"DqkzNV\":[\"Ingénieur CRM, AC&T Education Migration\"],\"b7vNti\":[\"Le CRM était une base de données que vous remplissiez le vendredi. L’IA l’a transformé en système qui fait fonctionner votre go-to-market. Pour vous différencier, vous devez construire ce que vos concurrents ne peuvent pas acheter.\"],\"OACAVp\":[\"Croatia 🇭🇷\"],\"I6FFSA\":[\"Export CSV à tout moment\"],\"8RWevB\":[\"Import et export CSV\"],\"s+QiQi\":[\"Flux d’import CSV\"],\"O2UtEV\":[\"Cuba 🇨🇺\"],\"lh6aPn\":[\"Modèles IA personnalisés\"],\"OaTurC\":[\"Applications personnalisées\"],\"TcUCTv\":[\"Custom Apps · Scripts · AI/agent integrations\"],\"yBSEtR\":[\"Étapes d’opportunité personnalisées pour votre processus\"],\"L+b7SB\":[\"Étapes d’affaires personnalisées, tableaux en glisser-déposer et suivi en temps réel pour que votre pipeline reflète la réalité.\"],\"DUnke3\":[\"Custom Development\"],\"GAD3Dx\":[\"Domaine personnalisé\"],\"Vz1Vq2\":[\"Domaine personnalisé (crm.yourco.com)\"],\"oPwQt4\":[\"Champs personnalisés\"],\"U1RB/7\":[\"Champs et relations personnalisés\"],\"WGKb6T\":[\"Champs personnalisés, relations et chronologie unifiée pour chaque contact et chaque entreprise dans votre espace de travail.\"],\"prIqWa\":[\"Disposition personnalisée\"],\"8skTDV\":[\"Objets personnalisés\"],\"AbyZbl\":[\"Vues personnalisées\"],\"YjXLAQ\":[\"Témoignages clients\"],\"NihQNk\":[\"Clients\"],\"qqLY+j\":[\"Personnalisation\"],\"GRfLAg\":[\"Personnalisations\"],\"Pj5fGG\":[\"Cyprus 🇨🇾\"],\"w9VTXG\":[\"Czech\"],\"xkuHM6\":[\"Czech Republic 🇨🇿\"],\"4RLD4p\":[\"Messages quotidiens\"],\"Fo2vDn\":[\"Danish\"],\"V0kvgB\":[\"Import de données\"],\"5cNMFz\":[\"Modèle de données\"],\"iq2WTm\":[\"Data modeling · Migrations · No-code workflows · Dashboards · SSO/SCIM · Integrations\"],\"/TlpVf\":[\"Des affaires qui avancent toutes seules.\"],\"H1UtjM\":[\"Denmark 🇩🇰\"],\"n+SX4g\":[\"Développeurs\"],\"Wuqvfz\":[\"Directeur du numérique et de l’information, Elevate Consulting\"],\"e7R9Zi\":[\"Discover the newest features and improvements in Twenty,<0/>the #1 Open Source CRM.\"],\"W+b/DF\":[\"Découvrir les nouveautés\"],\"rHLwDO\":[\"Djibouti 🇩🇯\"],\"Zjjbne\":[\"Ai-je besoin d’un développeur pour personnaliser Twenty ?\"],\"Zx22Ih\":[\"Twenty fonctionne-t-il avec Claude, ChatGPT et Cursor ?\"],\"bMDnQR\":[\"Dominica 🇩🇲\"],\"ufcRA6\":[\"Dominican Republic 🇩🇴\"],\"pOLPPB\":[\"Ne vous laissez pas enfermer dans l’écosystème de quelqu’un d’autre. L’expérience développeur de Twenty ressemble à un logiciel normal, avec une configuration locale, de vraies données, des tests en direct et aucun outil propriétaire.\"],\"HDR0en\":[\"DR Congo 🇨🇩\"],\"mzedFr\":[\"Draft a workflow for an email sequence\"],\"fPma12\":[\"Glissez-déposez les opportunités entre les étapes\"],\"KIjvtr\":[\"Dutch\"],\"6r6pDf\":[\"e.g. React, Postgres, n8n…\"],\"hEtClO\":[\"Ecuador 🇪🇨\"],\"4CJ4xV\":[\"EdTech\"],\"aqxYLv\":[\"Éducation\"],\"OAdXUT\":[\"Egypt 🇪🇬\"],\"2xK+An\":[\"El Salvador 🇸🇻\"],\"1wTjWx\":[\"Elevate Consulting est un cabinet de conseil en management basé au Canada. Lorsque Justin Beadle, Directeur du numérique et de l’information, a rejoint l’entreprise, celle-ci fonctionnait entièrement avec des documents Word, des feuilles Excel, des notes adhésives, des e-mails et la dépendance aux personnes. Il n’y avait pas de CRM, pas d’outils accessibles via API, seulement un patchwork tentant de remplacer une source unique de vérité.\"],\"2THY70\":[\"Elevate Consulting utilise Twenty comme dorsale API connectant la facturation, Teams, la planification des ressources et un front-end personnalisé autour des données clients et opportunités.\"],\"wiTeYI\":[\"Le PDG d’Elevate a été tellement impressionné par Twenty qu’il a commencé à le recommander aux clients avant même que la configuration interne ne soit terminée. L’équipe envisage d’apporter Twenty aux projets clients dans le cadre de leur activité de conseil, notamment comme back-end pour des produits sur mesure adaptés à des besoins opérationnels spécifiques.\"],\"FNyrb0\":[\"E-mails et calendrier\"],\"AoN898\":[\"E-mails et chat\"],\"ObCvfI\":[\"Partage des e-mails\"],\"hfqiVr\":[\"Activité e-mail/calendrier sur chaque enregistrement\"],\"XGd8Wo\":[\"E-mails et calendrier\"],\"o4/9l1\":[\"E-mails et événements liés aux enregistrements du CRM\"],\"Qpn/bX\":[\"Chiffrez vos données\"],\"Iy8Gze\":[\"Rotation de clé de chiffrement\"],\"lYGfRP\":[\"English\"],\"Ijh+h+\":[\"Profitez d’une personnalisation illimitée en utilisant les outils de codage IA que vous aimez déjà. Adaptez votre CRM à la manière dont votre entreprise grandit et gagne.\"],\"xoqD/n\":[\"Saisissez une adresse e-mail valide.\"],\"/OVUD6\":[\"Enter a valid URL (starting with http:// or https://).\"],\"NTskGY\":[\"Activation Enterprise | Twenty\"],\"3dQ6zJ\":[\"Environnements\"],\"c0nqfC\":[\"Equatorial Guinea 🇬🇶\"],\"4DIpFY\":[\"Eritrea 🇪🇷\"],\"JIhNLR\":[\"Estonia 🇪🇪\"],\"8yXuJ9\":[\"Eswatini 🇸🇿\"],\"rktGGp\":[\"Ethiopia 🇪🇹\"],\"rQqP1P\":[\"Europe\"],\"IhKZhp\":[\"Même le matériel de formation est une fonctionnalité à célébrer.\"],\"sQP1sF\":[\"Chaque nouvelle version de Twenty, le CRM Open Source n°1, avec des journaux de modifications, des démos et les points forts qui importent le plus aux équipes.\"],\"rkZTD7\":[\"Chaque fil de discussion, sur le bon enregistrement.\"],\"kz/8m8\":[\"Tout ce qui est dans Pro\"],\"zoNk7e\":[\"Tout se met à jour en temps réel, avec un chat IA toujours prêt à vous aider à aller plus vite.\"],\"57gG1f\":[\"Découvrez une granularité de niveau entreprise, en commençant par un onzième droit.\"],\"uZRQi+\":[\"Expertise & experience\"],\"JTM5zS\":[\"Explorer les témoignages clients\"],\"weFouS\":[\"Exécution prolongée !\"],\"akLvep\":[\"Interface familière et moderne\"],\"gKNP7S\":[\"Farsi\"],\"abO45l\":[\"Chemin rapide vers l’action\"],\"e6BgMV\":[\"Autorisations au niveau des champs\"],\"z+q1Th\":[\"Fiji 🇫🇯\"],\"sER+bs\":[\"Fichiers\"],\"bOidm7\":[\"Filter partners\"],\"iabLgo\":[\"Des indicateurs filtrés à partir de n’importe quel objet\"],\"sRUAXp\":[\"Trouvez un partenaire Twenty certifié pour migrer, personnaliser et exploiter votre CRM open source, ou rejoignez l’écosystème et développez votre activité avec nous.\"],\"TJ7HQl\":[\"Trouver un partenaire\"],\"MD032e\":[\"Trouver un partenaire Twenty\"],\"YeWg37\":[\"Find a Twenty Partner — Certified Open Source CRM Implementers\"],\"wHyJkT\":[\"Trouvez le bon partenaire pour implémenter, personnaliser et adapter Twenty à votre équipe.\"],\"9V48qi\":[\"Finland 🇫🇮\"],\"USZ2N6\":[\"Finnish\"],\"PHM5wp\":[\"Flexibilité\"],\"HBJ0P5\":[\"Orchestration\\ndes flux\"],\"obrJBN\":[\"Parcourez votre espace de travail avec des raccourcis et des temps de chargement courts.\"],\"HjFq2b\":[\"Flycoder, un partenaire de développement full-stack, les a aidés à configurer Twenty comme une instance auto-hébergée façonnée autour de la manière dont AC&T opère réellement. Le modèle de données est centré sur les étudiants, pas sur un pipeline générique contact-et-opportunité. Les statuts se mettent à jour automatiquement : un workflow s’exécute chaque nuit pour garder les dossiers d’inscription à jour. Des rappels e-mail automatisés couvrent les dates importantes. Ajouter un nouvel enregistrement prend moins d’une minute.\"],\"1SL9ZF\":[\"Concentrez-vous sur le cas d’usage, pas sur la\"],\"P5E+kT\":[\"Concentrez-vous sur le cas d’usage, pas sur la plomberie\"],\"wdVyxi\":[\"Import des dossiers/libellés\"],\"CKQ0za\":[\"Pour une entreprise qui a autrefois fonctionné avec des notes adhésives, c’est plus qu’une mise à niveau. C’est une transformation complète.\"],\"yAJC9c\":[\"Pendant vingt ans, le CRM signifiait la même chose : un endroit pour enregistrer des appels, suivre des opportunités et sortir des rapports le vendredi. Le vrai travail se faisait dans la tête des gens, dans des fils Slack, dans des conversations de couloir. Le CRM tenait le score. Personne n’en attendait davantage.\"],\"wSoqhC\":[\"fondation\"],\"UCoxP5\":[\"Fondateur, Nine Dots Ventures\"],\"IPaRlc\":[\"Fondateur, Wintactix\"],\"671GY5\":[\"France 🇫🇷\"],\"tUgSXd\":[\"Gratuit pour vous !\"],\"nLC6tu\":[\"French\"],\"weRlb1\":[\"from \",[\"minBudget\"]],\"Iuxc00\":[\"Du CSV au CRM en quelques minutes.\"],\"yDeZSV\":[\"Des documents à\"],\"emeKZ7\":[\"Des documents aux API ouvertes\"],\"CMqgta\":[\"De Salesforce à\"],\"kl+hEJ\":[\"De Salesforce à Twenty auto‑hébergé\"],\"syU/BD\":[\"De Salesforce à Twenty auto-hébergé, propulsé par l’IA | Alternative Partners\"],\"TH5XjF\":[\"Du simple au\"],\"Lf7cb3\":[\"Du simple à l’avancé\"],\"m1I5TY\":[\"Historique complet des communications en un seul endroit\"],\"wXgKOm\":[\"Personnalisation complète\"],\"YZ7Q3Z\":[\"Pleine propriété\"],\"hdxwWi\":[\"Entièrement personnalisable\"],\"//hrfs\":[\"Gabon 🇬🇦\"],\"yau9J6\":[\"Gambia 🇬🇲\"],\"S84RWl\":[\"Generate tasks for my top 10 accounts\"],\"GOmD9p\":[\"Georgia 🇬🇪\"],\"DDcvSo\":[\"German\"],\"XcPIuI\":[\"Germany 🇩🇪\"],\"ZDIydz\":[\"Commencer\"],\"xyKSqi\":[\"Ghana 🇬🇭\"],\"Ay/vbT\":[\"Bon choix !\"],\"Zh0acB\":[\"Grab 30 minutes so we can get to know your team.\"],\"+tDN2S\":[\"Greece 🇬🇷\"],\"CZXzs4\":[\"Greek\"],\"DDgHcm\":[\"Grenada 🇬🇩\"],\"IsZ6P7\":[\"se développer\"],\"MCLWq4\":[\"Développez-vous avec une base flexible\"],\"XpCing\":[\"évolue\"],\"M/8CC1\":[\"Guatemala 🇬🇹\"],\"UZbq7J\":[\"Guinea 🇬🇳\"],\"vtpxPx\":[\"Guinea-Bissau 🇬🇼\"],\"GT8Ua2\":[\"Guyana 🇬🇾\"],\"5BLiJj\":[\"Haiti 🇭🇹\"],\"Xf5EJg\":[\"Générateur de tramage\"],\"DHC85F\":[\"Générateur de tramage | Twenty\"],\"c3XJ18\":[\"Aide\"],\"CRzGla\":[\"Centre d’aide\"],\"LiWOgh\":[\"Hey, I'm interested in meeting. Here's my project:\"],\"tGjibo\":[\"Hindi\"],\"qfSbUb\":[\"Son approche était peu conventionnelle. Au lieu de mapper les champs manuellement, d’écrire des scripts de transformation et de valider les données étape par étape, il a confié le travail à des outils d’IA agentique avec un bref cahier des charges : où se trouvent les données, le dépôt GitHub de la plateforme cible et le déploiement Railway. Démarrer, et ne revenir que si quelque chose casse au-delà d’un correctif à 70% de confiance.\"],\"i0qMbr\":[\"Accueil\"],\"CtU7yU\":[\"Homeseller\"],\"KYnPnU\":[\"Homeseller est une agence immobilière à gros volume à Singapour, fondée par l’un des agents immobiliers les plus performants du pays. Toute l’opération fonctionne sur WhatsApp : pas d’e-mail, pas d’agendas, seulement des discussions de groupe, des milliers, avec clients, agents et prospects ensemble.\"],\"v6cmMq\":[\"Homeseller a gardé ses habitudes. WhatsApp est resté WhatsApp. Ce qui a changé, c’est que tout ce qui transite par ces conversations arrive désormais dans un système structuré, suivi, classé et visible en temps réel.\"],\"xaIV9m\":[\"Homeseller, WhatsApp, et un CRM construit autour de l’entreprise | Nine Dots & Twenty\"],\"zbfmqm\":[\"Honduras 🇭🇳\"],\"mqX9AX\":[\"Hosting & Infrastructure\"],\"SHZNBm\":[\"Hourly\"],\"Ivq5+7\":[\"Hourly rate\"],\"XnFo3G\":[\"Comment AC&T Education Migration et Flycoder ont remplacé un CRM fournisseur fermé par Twenty auto-hébergé, avec un coût inférieur de plus de 90% et une pleine propriété.\"],\"PYi0f6\":[\"Comment Alternative Partners a migré de Salesforce vers Twenty auto-hébergé en utilisant de l’IA agentique dans la boucle d’implémentation : migration rapide, propriété durable.\"],\"+MLOVo\":[\"Comment Elevate Consulting est passé des documents et feuilles de calcul à Twenty comme CRM connecté par API au centre de leur pile.\"],\"OIwpKt\":[\"Combien de temps pour commencer ?\"],\"iRzy9e\":[\"Comment NetZero utilise Twenty sur les crédits carbone, les produits agricoles et des systèmes industriels franchisés avec un CRM modulaire et une feuille de route vers des workflows assistés par IA.\"],\"NZYA4S\":[\"Comment Nine Dots Ventures a reconstruit une agence immobilière de Singapour sur Twenty avec des API, n8n, Grafana et de l’IA au-dessus de plus de 2,000+ messages WhatsApp par jour.\"],\"bcln75\":[\"Comment Twenty collecte, utilise, protège et divulgue des informations lorsque vous utilisez Twenty.com et les services associés.\"],\"URQPvK\":[\"Comment W3villa Technologies a livré W3Grads, une plateforme d’entretiens simulés par IA pour les établissements, sur Twenty comme colonne vertébrale opérationnelle.\"],\"htrFcw\":[\"Hungary 🇭🇺\"],\"T6wyby\":[\"I'll book later →\"],\"RYDa0v\":[\"Iceland 🇮🇸\"],\"xalbpT\":[\"Idées de l’équipe qui développe Twenty sur le CRM open source, les données clients, les systèmes GTM et la création de logiciels durables.\"],\"ePYQjq\":[\"Identity\"],\"l0JGUk\":[\"Usurper l’identité d’utilisateurs\"],\"N4OVNn\":[\"Mise en œuvre\"],\"yHueLx\":[\"Partenaires d’implémentation\"],\"ZAKTS6\":[\"Importez vos données avec mappage des champs, y compris les relations. Exportez-les à tout moment — vos données vous appartiennent toujours.\"],\"InyU0Z\":[\"En juin 2025, Justin a appris que Twenty v1 avait été publié. En deux ou trois jours, le PDG lui a demandé d’étudier la mise en place d’un CRM. Le déclic est venu du potentiel de ce qui pouvait être construit au-dessus d’API entièrement ouvertes. Le timing était parfait.\"],\"d1Aru8\":[\"En production.\"],\"Sqb+jp\":[\"Aperçu dans l’application pour les types de fichiers pris en charge (lorsqu’il est activé)\"],\"3XP8Lk\":[\"Inclus !\"],\"/c4yUr\":[\"India 🇮🇳\"],\"iEJqDi\":[\"Indonesia 🇮🇩\"],\"BQukYF\":[\"Indonesian\"],\"S8gy7K\":[\"Secteur\"],\"MeL8SS\":[\"Défilement infini\"],\"+mOisw\":[\"Le défilement infini est toujours « bientôt disponible », contrairement à la facture.\"],\"K8iwJx\":[\"Installer l’application tarball partagée\"],\"AHWM9N\":[\"Intégration\"],\"OChKCc\":[\"Générateur de trames interactif exporté depuis Twenty.\"],\"+83cJG\":[\"Interested in meeting \",[\"partnerName\"]],\"mdsMtj\":[\"déploiement interne\"],\"a+PGuG\":[\"Comptes Internet par utilisateur\"],\"FtgjCv\":[\"Iran 🇮🇷\"],\"8yynyz\":[\"Iraq 🇮🇶\"],\"s7XmoY\":[\"Ireland 🇮🇪\"],\"/yQIKP\":[\"Twenty est-il vraiment open source ?\"],\"SdtpDP\":[\"Israel 🇮🇱\"],\"QjEULz\":[\"C’est tout simplement une expérience bien plus agréable que d’avoir à gérer Salesforce ou HubSpot. Ma mission a été de rendre chaque outil accessible via API, pour que tout communique entre eux.\"],\"FJ51pP\":[\"C’est tout simplement une expérience bien plus agréable que d’avoir à gérer Salesforce ou HubSpot. Ma mission a été de rendre chaque outil accessible via API, pour que tout communique entre eux. Twenty a rendu cela possible d’une manière que les anciennes plateformes de CRM ne permettent tout simplement pas.\"],\"kqIAbN\":[\"Ça a fonctionné. C’est l’itération assistée par IA en pratique : non pas l’IA comme fonctionnalité produit, mais comme partie du travail d’implémentation, compressant ce qui prendrait normalement des semaines en quelque chose qu’une seule personne peut superviser sans devenir le goulet d’étranglement.\"],\"ltNDOB\":[\"C’est fragile. La V1 sort vite, mais la maintenance et les évolutions deviennent un fardeau à long terme.\"],\"Lj7sBL\":[\"Italian\"],\"OSTD8d\":[\"Italy 🇮🇹\"],\"0BTIQi\":[\"Ivory Coast 🇨🇮\"],\"W6o2Pv\":[\"Jamaica 🇯🇲\"],\"kpk6mj\":[\"Japan 🇯🇵\"],\"dFtidv\":[\"Japanese\"],\"kX2mij\":[\"Rejoignez notre écosystème et aidez les entreprises à reprendre le contrôle de leurs données clients avec\"],\"1qiriB\":[\"Rejoignez notre écosystème de partenaires en pleine croissance\"],\"APYcnh\":[\"Join our partner ecosystem and help businesses<0/>take control of their CRM.\"],\"5emzGz\":[\"Join the teams that chose to own their CRM.<0/>Start building with Twenty today.\"],\"QbxNys\":[\"Jordan 🇯🇴\"],\"pB76mP\":[\"juil. 2025\"],\"hvwlu3\":[\"juin 2025\"],\"qrYDGE\":[\"Justin Beadle\"],\"vYXuJI\":[\"Justin a créé des workflows de notification pour toute l’équipe, alertant les bonnes personnes dans Teams lorsqu’un prospect devient un lead ou lorsque des jalons de projet sont atteints. Les formulaires dans Twenty permettent à l’équipe de développement commercial d’enregistrer son activité sans quitter l’outil. L’impact est réel pour l’organisation. L’outil s’est révélé adaptable, du travail au niveau des opportunités chez un client jusqu’aux décisions au niveau de la direction.\"],\"E6Oohx\":[\"La mission plus large de Justin chez Elevate a été de faire passer l’entreprise de documents statiques à des outils avec accès API. Fin 2025, c’était en place : facturation du temps, planification des ressources, Microsoft Teams et gestion de projet étaient tous accessibles via API, avec Twenty au centre, conservant les données clients et opportunités. Les membres de l’équipe pouvaient utiliser ces informations de manière stratégique au lieu de les ressaisir.\"],\"r1cFAW\":[\"Kazakhstan 🇰🇿\"],\"kEahsE\":[\"Kenya 🇰🇪\"],\"IxBSi8\":[\"Kiribati 🇰🇮\"],\"h6S9Yz\":[\"Korean\"],\"PqhUrP\":[\"Kosovo 🇽🇰\"],\"3+TwF3\":[\"Kuwait 🇰🇼\"],\"e9zZkH\":[\"Kyrgyzstan 🇰🇬\"],\"GAmD3h\":[\"Langues\"],\"u6jooT\":[\"Languages spoken\"],\"YHacTY\":[\"Laos 🇱🇦\"],\"2lrGbG\":[\"LATAM\"],\"7OHfcc\":[\"Latvia 🇱🇻\"],\"rdU729\":[\"Mise en page\"],\"+Ss/og\":[\"Apprenez à utiliser Twenty\"],\"wB0DGn\":[\"Lebanon 🇱🇧\"],\"vifyyw\":[\"Mentions légales\"],\"UqdHpG\":[\"Lesotho 🇱🇸\"],\"rJargy\":[\"Liberia 🇱🇷\"],\"Lzw0kM\":[\"Libya 🇱🇾\"],\"tHFTlp\":[\"Titulaire de la licence :\"],\"K41WYc\":[\"Liechtenstein 🇱🇮\"],\"gggTBm\":[\"LinkedIn\"],\"Gg69LR\":[\"LinkedIn URL\"],\"2WIZYd\":[\"Lithuania 🇱🇹\"],\"AHVzME\":[\"Données en direct et IA intégrées\"],\"GObQuL\":[\"Mises à jour en direct\"],\"zmRZwk\":[\"Les mises à jour en direct ne sont pas disponibles, ce qui est presque plus honnête.\"],\"ObPscj\":[\"Chargement de l’activation…\"],\"7VBQ2j\":[\"Local, Production\"],\"JO8Bdx\":[\"Verrouillage\"],\"sQia9P\":[\"Se connecter\"],\"KPLAuI\":[\"Réduire le coût du CRM\"],\"J13skq\":[\"Luxembourg 🇱🇺\"],\"nRYQC8\":[\"Madagascar 🇲🇬\"],\"qHvKxh\":[\"Malawi 🇲🇼\"],\"tF97tn\":[\"Malay\"],\"DIOh5g\":[\"Malaysia 🇲🇾\"],\"62/ScF\":[\"Maldives 🇲🇻\"],\"wc5E/3\":[\"Mali 🇲🇱\"],\"04fjhR\":[\"Malta 🇲🇹\"],\"Si4WyF\":[\"Conseil en management\"],\"poX06f\":[\"Travail manuel au cœur\"],\"VJOKPB\":[\"Vue carte\"],\"Zt5PUS\":[\"Marketplace\"],\"2jVbnO\":[\"Marshall Islands 🇲🇭\"],\"bJNKJ1\":[\"Maîtrisez chaque recoin de Twenty\"],\"HG/EUg\":[\"Mauritania 🇲🇷\"],\"YDiaY/\":[\"Mauritius 🇲🇺\"],\"Zw+Zv+\":[\"Serveur MCP\"],\"zxcfgg\":[\"signifie le contrôle\"],\"bwCiCi\":[\"Découvrez les agences et consultants certifiés qui déploient Twenty pour des équipes dans le monde entier.\"],\"ujYZ+f\":[\"Découvrez les équipes qui ont façonné Twenty en leur propre CRM grâce à des déploiements auto-hébergés, des workflows assistés par IA et des stacks produits « API-first ».\"],\"CQ9M36\":[\"MENA\"],\"briyJf\":[\"Des indicateurs auxquels vous pouvez réellement faire confiance.\"],\"YBLFQZ\":[\"Mexico 🇲🇽\"],\"KBirDR\":[\"Micronesia 🇫🇲\"],\"ZdvtU2\":[\"workflow de migration\"],\"so04x6\":[\"Mike et Azmat de Nine Dots sont intervenus pour résoudre cela, non pas en changeant le fonctionnement de Homeseller, mais en construisant un système qui, enfin, s’y est adapté.\"],\"izddzp\":[\"Mike Babiy\"],\"FFFENV\":[\"Minimum project budget\"],\"6m8rMT\":[\"Moldova 🇲🇩\"],\"qRRmSe\":[\"Monaco 🇲🇨\"],\"G+EV+A\":[\"Mongolia 🇲🇳\"],\"9VDoNp\":[\"Montenegro 🇲🇪\"],\"+8Nek/\":[\"Mensuel\"],\"VqXuUv\":[\"Plus d’options disponibles !\"],\"LAFO4Y\":[\"Morocco 🇲🇦\"],\"EwJDrS\":[\"Mozambique 🇲🇿\"],\"dlKkNL\":[\"Téléversement multi-fichiers sur les enregistrements\"],\"QGWbbv\":[\"Myanmar 🇲🇲\"],\"6YtxFj\":[\"Nom\"],\"yYmxee\":[\"Namibia 🇳🇦\"],\"zVOV14\":[\"Nauru 🇳🇷\"],\"LfNsfa\":[\"Besoin d’un changement rapide ? Évitez le ticket pour l’équipe d’ingénierie. Personnalisez votre espace de travail en quelques minutes.\"],\"4sbgPq\":[\"Besoin d’aide pour la personnalisation ?\"],\"LNVNNE\":[\"Nepal 🇳🇵\"],\"g60EgR\":[\"Netherlands 🇳🇱\"],\"8Cp4Of\":[\"NetZero\"],\"J8ZssL\":[\"NetZero exploite une configuration Twenty modulaire couvrant les crédits carbone, les produits agricoles et les systèmes industriels.\"],\"7HVBV+\":[\"NetZero utilise Twenty comme CRM modulaire sur plusieurs lignes de produits et pays, avec une feuille de route vers des workflows assistés par IA.\"],\"3PtYTO\":[\"NetZero travaille avec l’agro-industrie, au service de clients allant de multinationales à de petits exploitants agricoles. Ils vendent des crédits carbone, des produits agricoles et des systèmes industriels en franchise sur trois lignes de produits différentes, plusieurs pays et plusieurs tailles d’entreprise. Lorsque Olivier Reinaud, cofondateur de NetZero, a commencé à examiner les CRM fin 2024, il ne cherchait pas la plateforme la plus riche en fonctionnalités. Il voulait les bonnes fondations.\"],\"/DTtCF\":[\"New Zealand 🇳🇿\"],\"GY6uSc\":[\"Next →\"],\"KqojOL\":[\"Prochaines étapes\"],\"iBOZv7\":[\"Nicaragua 🇳🇮\"],\"61NU7V\":[\"Niger 🇳🇪\"],\"+2NLII\":[\"Nigeria 🇳🇬\"],\"qZ+egR\":[\"Nine Dots a placé Twenty au centre de la stack de Homeseller avec des API, de l’automatisation et de l’IA au-dessus d’opérations fortement axées sur WhatsApp.\"],\"sGuHDu\":[\"Nine Dots a reconstruit les opérations de Homeseller sur Twenty, avec un modèle de données personnalisé façonné autour de leur flux de vente. Parce que Twenty est ouvert et que tout est accessible via API, ils l’ont connecté à ce dont l’entreprise avait réellement besoin : n8n pour les workflows automatisés (les workflows intégrés à l’application n’étaient pas disponibles à ce moment-là), Grafana pour des tableaux de bord en direct alimentés depuis Twenty, et une couche d’IA personnalisée pour analyser et extraire des informations structurées à partir de plus de 2 000 messages WhatsApp par jour.\"],\"1UzENP\":[\"Non\"],\"6tRXQ4\":[\"No matching country.\"],\"o+/Ad5\":[\"Ne plus louer celui de quelqu’un d’autre\"],\"LmWdm6\":[\"Ne plus louer la structure de quelqu’un d’autre\"],\"UxK4so\":[\"No partners match your filters\"],\"q9f4Tp\":[\"No-code\"],\"SiZ/7E\":[\"Non. Créez des objets, champs, vues et workflows no-code directement depuis les Paramètres. Illimité, sans frais supplémentaires.\"],\"096JXI\":[\"North Korea 🇰🇵\"],\"IwF7aJ\":[\"North Macedonia 🇲🇰\"],\"sZwk4U\":[\"Norway 🇳🇴\"],\"1IipHp\":[\"Norwegian\"],\"k3T2mM\":[\"Aujourd’hui, un développeur peut décrire ce qu’il veut à Claude Code et avoir une application fonctionnelle dans l’après-midi. Un objet personnalisé, un workflow de scoring, une nouvelle vue, une intégration. Le goulot d’étranglement n’est plus la construction. C’est de savoir si votre plateforme vous le permet.\"],\"WFvpMn\":[\"Now book your intro call.\"],\"CzeIij\":[\"Nombre de tableaux de bord\"],\"0dVyEt\":[\"d’une stack go-to-market\"],\"pkrZnO\":[\"Olivier reconnaît que l’usage actuel de Twenty chez NetZero reste relativement simple : les workflows et les intégrations ne sont pas encore aussi poussés qu’il le souhaite à terme, car il a d’abord donné la priorité à des fondations solides.\"],\"l/1LQc\":[\"Olivier Reinaud\"],\"BdShAR\":[\"Oman 🇴🇲\"],\"D2b+1q\":[\"Sur un seul CRM\"],\"XhXmzW\":[\"Sur cette page\"],\"jxC7HY\":[\"Onboarding · Documentation · Change management · L1/L2 support · Managed services\"],\"pbmZ7R\":[\"Packs d’onboarding\"],\"/DFChQ\":[\"Un\"],\"Zt1UZb\":[\"Une API pour les gouverner toutes\"],\"pShqss\":[\"Seulement 5 $ pour le SSO. Pratiquement un programme caritatif.\"],\"3WErRa\":[\"API ouvertes\"],\"pkXQA+\":[\"Ouvrez les Paramètres de votre instance Twenty auto-hébergée → Enterprise.\"],\"wtKPUT\":[\"primitives open source.\"],\"5RkmVr\":[\"Open source, prêt pour l’IA, et à façonner selon vos besoins.\"],\"ucgZ0o\":[\"Organisation\"],\"dKGg8T\":[\"Rupture de stock\"],\"PASC/7\":[\"A survécu à chaque refonte depuis 2004.\"],\"Bwsi7B\":[\"Possédez votre CRM de bout en bout\"],\"oDAEQq\":[\"Propriété\"],\"NmF/Vo\":[\"Posséder votre stack reste mystérieusement en rupture de stock.\"],\"h/oMMb\":[\"Les CRM packagés font se ressembler toutes les entreprises. Twenty est le CRM open source que les équipes façonnent autour de leur flux de travail, avec une interface moderne et une plateforme pensée d’abord pour les développeurs.\"],\"+AiiMt\":[\"La pagination forge le caractère.\"],\"sW3DaS\":[\"Pakistan 🇵🇰\"],\"cvRU36\":[\"Palau 🇵🇼\"],\"u2htNd\":[\"Palestine 🇵🇸\"],\"pWLp16\":[\"Panama 🇵🇦\"],\"xOR4tu\":[\"Papua New Guinea 🇵🇬\"],\"kb3PhK\":[\"Paraguay 🇵🇾\"],\"mPkInZ\":[\"Partenaires\"],\"9yo8NN\":[\"Collez la clé et cliquez sur Activer.\"],\"nxV7o2\":[\"porte ses fruits\"],\"OzAIDr\":[\"Peru 🇵🇪\"],\"LqRs8D\":[\"Philippines 🇵🇭\"],\"we6gj5\":[\"Pick every category that applies.\"],\"FFkjaT\":[\"Gestion des pipelines\"],\"gzkkC3\":[\"Pipelines, objets personnalisés, assistants IA et une API native au-dessus de Postgres. Twenty est le CRM open source, avec une UX moderne, que les équipes ont réellement envie d’utiliser.\"],\"z7gnI9\":[\"Please complete all required fields before continuing.\"],\"iCh6/3\":[\"tuyauterie\"],\"AFr2a5\":[\"Poland 🇵🇱\"],\"trnWaw\":[\"Polish\"],\"8BrmUs\":[\"Portugal 🇵🇹\"],\"MOERNx\":[\"Portuguese\"],\"z87IFG\":[\"Press Enter or comma to add a skill.\"],\"a7u1N9\":[\"Prix\"],\"aHCEmh\":[\"Tarifs\"],\"J2IAmT\":[\"Principal et Fondateur\"],\"kXBQYM\":[\"Principal et Fondateur, Alternative Partners\"],\"k62X/2\":[\"Support prioritaire\"],\"LcET2C\":[\"Politique de confidentialité\"],\"DJ3uVe\":[\"Politique de confidentialité | Twenty\"],\"3fPjUY\":[\"Pro\"],\"kIGKva\":[\"Qualité niveau production\"],\"vERlcd\":[\"Profile\"],\"CcK9cq\":[\"Des programmes qui nécessitaient auparavant une lourde coordination manuelle fonctionnent désormais de bout en bout avec de l’automatisation. Les établissements obtiennent un système évolutif et intelligent ; les étudiants bénéficient d’une préparation plus rapide aux entretiens qui comptent ; W3villa a livré un produit autour duquel les établissements peuvent générer des revenus.\"],\"PaHxQd\":[\"Project minimum\"],\"9NAqO4\":[\"Automatisation des propositions\"],\"a24q7E\":[\"Langages propriétaires, cycles de déploiement lents et logique « boîte noire ».\"],\"kS6G/9\":[\"a tiré la prise\"],\"u9RZ7+\":[\"Punjabi\"],\"frfCYp\":[\"T1 2026\"],\"tFx+ES\":[\"Qatar 🇶🇦\"],\"3XOwjg\":[\"Rates\"],\"DnWJal\":[\"Reach out\"],\"gSQVmr\":[\"Lire l’étude de cas\"],\"EqCbT9\":[\"Autorisations de lecture/modification/suppression\"],\"Gr9RIC\":[\"Ready to grow<0/>with Twenty?\"],\"zTY2by\":[\"De vraies histoires clients d’équipes qui font tourner leur activité sur Twenty : comment elles ont migré, ce qu’elles ont personnalisé et ce qui a changé une fois que leur CRM leur a enfin convenu.\"],\"NIwjHh\":[\"Immobilier\"],\"CH+Ona\":[\"De vraies histoires de vraies équipes sur la façon dont elles ont façonné Twenty pour l’adapter à leur flux de travail et accélérer leur croissance.\"],\"5O1eTm\":[\"Des changements en temps réel ? Ce sera une surprise premium.\"],\"4hc7hc\":[\"Données en temps réel\"],\"dKQCrj\":[\"Le temps réel est un état d’esprit, pas une fonctionnalité.\"],\"Zhiuz9\":[\"Trimestre record\"],\"PWlTvh\":[\"Enregistrements\"],\"q45OlW\":[\"Regions\"],\"rwWjWg\":[\"Notes de version\"],\"5icoS1\":[\"Versions\"],\"BkBq/5\":[\"Remove \",[\"0\"],\" filter\"],\"a/aGHe\":[\"Renommer, télécharger et supprimer des pièces jointes\"],\"t9yxlZ\":[\"Rapports\"],\"SY/an2\":[\"Rapports et tableaux de bord\"],\"s+MGs7\":[\"Ressources\"],\"oC2l7f\":[\"API REST et GraphQL\"],\"kx0s+n\":[\"Résultats\"],\"2itg0p\":[\"Rétro 2015\"],\"frqduN\":[\"Notes enrichies attachées aux enregistrements\"],\"/gaSVU\":[\"Feuille de route\"],\"mLp5AP\":[\"Romania 🇷🇴\"],\"uJc01W\":[\"Romanian\"],\"Wdh41P\":[\"Autorisations au niveau des lignes\"],\"mRpuWW\":[\"Faire fonctionner des programmes de faux entretiens pour des centaines d’étudiants semble simple. En pratique, universités et instituts de formation se heurtent au même mur : inscriptions saisies à la main, liens d’entretien envoyés un par un, enseignants qui examinent chaque session sans notation ni classification. À l’échelle réelle, ça casse.\"],\"T1ut28\":[\"Russia 🇷🇺\"],\"nji0/X\":[\"Russian\"],\"dw8D3T\":[\"Rwanda 🇷🇼\"],\"niLOap\":[\"Saint Kitts & Nevis 🇰🇳\"],\"zCHzF/\":[\"Saint Lucia 🇱🇨\"],\"Md/8iQ\":[\"Saint Vincent 🇻🇨\"],\"Burn4/\":[\"Centre des modules complémentaires Salesfarce\"],\"xTfEgV\":[\"Salesfarce Pro\"],\"/UolBB\":[\"Salesforce Classic\"],\"l69E+u\":[\"Migration depuis Salesforce\"],\"CADlRK\":[\"Même CRM\"],\"60i6S+\":[\"Même résultat\"],\"xl2tJ9\":[\"Mêmes résultats\"],\"w9QWxz\":[\"SSO SAML/OIDC\"],\"R38ZPo\":[\"Samoa 🇼🇸\"],\"fK288K\":[\"San Marino 🇸🇲\"],\"KDcBQd\":[\"São Tomé & Príncipe 🇸🇹\"],\"/BK0Nl\":[\"Saudi Arabia 🇸🇦\"],\"elz5ka\":[\"Économisés / mois\"],\"tigXYO\":[\"économisés chaque mois\"],\"bifv6N\":[\"Passage à l’échelle\"],\"rbgetd\":[\"Passer à l’échelle sans\"],\"842ybw\":[\"Passer à l’échelle sans casser les opérations\"],\"vk6sVR\":[\"Search a country…\"],\"HVOGoW\":[\"Limite d’utilisateurs\"],\"a3LDKx\":[\"Sécurité\"],\"aB+XpI\":[\"Voir plus de fonctionnalités\"],\"FY4ykg\":[\"Voir la dernière version\"],\"JDp1bg\":[\"Voyez les mises à jour au moment où elles se produisent. Collaborez avec votre équipe et vos agents en toute fluidité.\"],\"0kgOPB\":[\"Découvrez ce qui a été livré en \",[\"0\"]],\"wgNoIs\":[\"Tout sélectionner\"],\"6p/m5q\":[\"Select your country\"],\"6JhL+3\":[\"Auto-hébergé\"],\"QFK/45\":[\"Self-hosted (Docker/K8s) · Cloud architecture · Scaling · Security · Monitoring\"],\"5CWy3T\":[\"L’auto-hébergement signifie qu’AC&T ne supporte aucun risque lié à un fournisseur : pas de modèle de tarification susceptible de changer, pas de plateforme qui peut disparaître, pas de migration forcée. Le système leur appartient.\"],\"5WmQ5O\":[\"L’auto-hébergement signifie le contrôle\"],\"6QPYP7\":[\"Twenty auto-hébergé\"],\"GrBvv/\":[\"Auto-hébergement\"],\"YdhUoe\":[\"Auto-hébergement, désormais à louer !\"],\"NaHz2o\":[\"Auto-hébergement\"],\"D50Vyu\":[\"Senegal 🇸🇳\"],\"eEJlq0\":[\"Serbia 🇷🇸\"],\"62gxWx\":[\"Seychelles 🇸🇨\"],\"3VFzsh\":[\"Lancez un produit sur Twenty\"],\"6lGV3K\":[\"Afficher moins\"],\"RhU4bB\":[\"Showing \",[\"visibleCount\"],\" of \",[\"totalCount\"],\" partners\"],\"I89wN/\":[\"Showing all \",[\"totalCount\"],\" partners\"],\"yhyNch\":[\"Sierra Leone 🇸🇱\"],\"mA6cL1\":[\"Inscrivez-vous à Cloud en moins d’une minute et démarrez votre essai de 30 jours. Pour des déploiements plus importants, nos Packs d’onboarding de 4 heures ou nos partenaires certifiés vous mettent en production en 1 à 2 semaines.\"],\"0eG5g+\":[\"Singapore 🇸🇬\"],\"V9dFwD\":[\"Plan du site\"],\"t6ComU\":[\"Évitez l’UX lourde qui accompagne toujours le sur-mesure.\"],\"U7keXg\":[\"Slovakia 🇸🇰\"],\"o1VTTF\":[\"Slovenia 🇸🇮\"],\"bUmSwL\":[\"Des modèles intelligents, des raccourcis et des mises en page rendent les tâches quotidiennes plus rapides et plus faciles à exécuter.\"],\"6sKjjx\":[\"Solo\"],\"FX2oa1\":[\"Solo or agency?\"],\"TcZtfs\":[\"Solomon Islands 🇸🇧\"],\"TvdMI3\":[\"Solutioning\"],\"t1E06j\":[\"Somalia 🇸🇴\"],\"AVfp38\":[\"Certains appellent cela des tarifs entreprise. Nous préférons un CRM où l’accès API, les webhooks et les workflows ne surgissent pas comme des modules complémentaires surprises.\"],\"B/mYo/\":[\"Accès au code source\"],\"zHJB/O\":[\"South Africa 🇿🇦\"],\"7MdTKh\":[\"South Korea 🇰🇷\"],\"a4jo+V\":[\"South Sudan 🇸🇸\"],\"Kv3C8d\":[\"Spain 🇪🇸\"],\"65A04M\":[\"Spanish\"],\"00jcbn\":[\"Sri Lanka 🇱🇰\"],\"vnS6Rf\":[\"SSO\"],\"uQl22y\":[\"Support standard\"],\"wxW2Sv\":[\"Commencez à automatiser à très grande échelle !\"],\"XO628f\":[\"Commencer gratuitement\"],\"+6VDIA\":[\"Start your free trial today<0/>without credit card.\"],\"j9c8rb\":[\"Restez dans le flux\"],\"GdGiNi\":[\"Step \",[\"current\"],\" of \",[\"total\"]],\"bxgoJR\":[\"Des guides pas à pas et des playbooks pour aider votre équipe à tirer le meilleur parti de son espace de travail.\"],\"UCLArd\":[\"Cessez d’accepter les compromis.\"],\"lm4alq\":[\"structure\"],\"Sv4BSp\":[\"Sous-domaine (yourco.twenty.com)\"],\"H5/rZQ\":[\"Soumettre la candidature\"],\"MDqQmP\":[\"Envoi…\"],\"8Z1557\":[\"Sudan 🇸🇩\"],\"XYLcNv\":[\"Support\"],\"Aq66kg\":[\"Suriname 🇸🇷\"],\"Yz+oFV\":[\"Swahili\"],\"b2//Ip\":[\"Sweden 🇸🇪\"],\"UaISq3\":[\"Swedish\"],\"IImT5c\":[\"Switzerland 🇨🇭\"],\"sjuSub\":[\"Syria 🇸🇾\"],\"3w+Aox\":[\"Table, Kanban, Calendrier\"],\"ISVD3+\":[\"Tagalog\"],\"9M02G5\":[\"Personnalisez les pages d’enregistrement, les menus et les vues\"],\"boABlR\":[\"Taiwan 🇹🇼\"],\"XJspRJ\":[\"Tajikistan 🇹🇯\"],\"JAKtcG\":[\"Parlez-nous\"],\"fb427h\":[\"Tamil\"],\"ri1l89\":[\"Tanzania 🇹🇿\"],\"GWMpL3\":[\"Tâches et activités\"],\"Ye3KKA\":[\"Faites équipe avec un expert Twenty\"],\"vsdUaL\":[\"Notes techniques\"],\"y+bLyB\":[\"Technical skills\"],\"1ZwmkP\":[\"modèle\"],\"mvP/25\":[\"Conditions générales\"],\"BEX1RA\":[\"Conditions d’utilisation | Twenty\"],\"iqG74V\":[\"Conditions d’utilisation de Twenty.com PBC, y compris l’utilisation de Twenty.com, des sous-domaines et des services associés.\"],\"SUr44j\":[\"Thai\"],\"6t7gpr\":[\"Thailand 🇹🇭\"],\"eRjhUK\":[\"Thanks, you're in.\"],\"FjkPYg\":[\"Cela a ouvert la porte à quelque chose de plus puissant. Justin a construit un front-end personnalisé qui extrait des données en direct de ces systèmes dans une vue unique, adaptée à chaque rôle. Lorsqu’une proposition est gagnée, ce qui nécessitait auparavant que quatre personnes configurent manuellement des instances à travers quatre outils différents se fait désormais en un seul clic, en s’appuyant sur les données collectées dans Twenty tout au long du cycle de vie de l’opportunité. C’est un nouveau pas vers un travail à plus forte valeur pour les clients.\"],\"8S4psU\":[\"Ça fonctionne jusqu’au moment où vous avez besoin de comprendre l’activité sous-jacente. Quelles affaires sont bloquées ? D’où viennent les leads ? Quel est le taux de closing ? Avec des tableurs et un ancien CRM personnalisé qui ne suivait pas, ces questions étaient presque impossibles à résoudre.\"],\"zXlFuT\":[\"Le CRM open source n°1 pour les équipes modernes. Modulaire, évolutif et conçu pour s’adapter à votre entreprise.\"],\"G2IgPj\":[\"Le pari est\"],\"NT2bSJ\":[\"Le pari porte ses fruits\"],\"Xmr/wH\":[\"l’entreprise\"],\"Wie492\":[\"L’équipe de développement commercial avait enfin le CRM qu’elle demandait. L’adoption est venue naturellement : leurs données étaient déjà là lorsqu’ils se connectaient.\"],\"2kHqXc\":[\"Le PDG avait résisté pendant des années à l’idée d’introduire un CRM. L’équipe de développement commercial n’avait aucune expérience d’un tel outil, et les coûts de licence des CRM bien connus comme Salesforce ou HubSpot étaient difficiles à justifier sans garantie d’adoption : un CRM n’est aussi bon que la qualité de la maintenance des données qu’il contient.\"],\"5DpEh7\":[\"Le CRM comme\"],\"2sfVd8\":[\"Le CRM comme centre de contrôle\"],\"XlFsoH\":[\"Le pari initial sur l’architecture tient, et les fonctionnalités d’IA à venir devraient le rendre encore plus pertinent.\"],\"kCUcnD\":[\"La flexibilité est tout simplement incroyable. Littéralement, il n’y a rien que vous ne puissiez pas faire. Vous pouvez créer des objets, accéder à tout via l’API, extraire des notes et les envoyer vers le portail. Essayez de faire ça dans HubSpot. Impossible. C’est la véritable capacité à construire exactement ce qui est réellement nécessaire.\"],\"MaHqAc\":[\"La flexibilité est vraiment ce qui a fait la différence. Nos besoins évoluent très vite. Je découvre un nouveau besoin et en deux clics je peux y répondre. C’est un vrai avantage quand on avance rapidement.\"],\"Q5iZ9Q\":[\"La flexibilité pour raccorder tout cela, sans aide extérieure et sans se battre contre la plateforme, a rendu possible pour une seule personne de mettre en place et de maintenir une stack connectée à l’échelle d’un cabinet de conseil entier.\"],\"l0eUFC\":[\"Le déploiement complet a eu lieu en juillet 2025. Depuis, Nine Dots a construit un Assistant intelligent par-dessus le système, incitant les agents avec des tâches, des rappels et des analyses de marché à la demande. Certains agents n’ouvrent jamais directement Twenty, et pourtant ils en tirent leur puissance, surpassant leurs pairs qui se reposent uniquement sur des processus manuels. Au T1 2026, Homeseller avait enregistré son meilleur trimestre de ventes de son histoire.\"],\"SiW1pC\":[\"l’avenir du CRM\"],\"sm10Rg\":[\"Le Monolithe géant\"],\"nFB8I1\":[\"Le Fardeau interne\"],\"ZNzKXV\":[\"La décision clé a été de ne pas tout reconstruire à partir de zéro. Twenty couvre le modèle de données, les autorisations, l’authentification et le moteur de workflow, les parties qui auraient pris des mois à refaire, pour que l’équipe puisse se concentrer sur la logique spécifique au produit.\"],\"q1kKLq\":[\"L’opportunité\"],\"ZgWQl4\":[\"la surcharge\"],\"2NJdyz\":[\"Le Problème.\"],\"Q8D9Lf\":[\"le produit\"],\"3/wAFg\":[\"Le résultat\"],\"nAWeyi\":[\"Il en résulte un système qui correspond à la manière dont AC&T travaillait déjà, au lieu de l’inverse.\"],\"tfG/xw\":[\"Le bon\"],\"nbHA9N\":[\"Les bonnes fondations\"],\"omVXTg\":[\"La configuration auto-hébergée signifie qu’Alternative Partners possède toute la stack : aucun accès d’un fournisseur à leurs données, aucune dépendance à un modèle de tarification SaaS, contrôle total sur l’évolution du système. La migration a été rapide grâce à l’IA ; le résultat est durable car la stack est open source.\"],\"1tN3qf\":[\"Le basculement\"],\"AnGOwN\":[\"La situation\"],\"u0uFxg\":[\"Ce sont les vraies ventes\"],\"53RXLB\":[\"Ils appellent ça la fidélité client. Nous appelons ça une cage très affectueuse.\"],\"RhmZMe\":[\"Ils n’ont pas simplement remplacé un outil. Ils ont repris la propriété de la façon dont leur entreprise fonctionne.\"],\"5YzqyT\":[\"Ils ont évalué Salesforce, Zoho, Pipedrive et SuiteCRM. Chacun venait avec les mêmes compromis : trop cher, trop rigide ou trop générique, et aucun ne réglait le problème sous-jacent. Ils louaient toujours une structure qu’ils ne contrôlaient pas.\"],\"6f8QUY\":[\"Timor-Leste 🇹🇱\"],\"2y6W+f\":[\"pour les gouverner toutes\"],\"DeTupk\":[\"Togo 🇹🇬\"],\"CocxTO\":[\"Tonga 🇹🇴\"],\"5eFktS\":[\"Intégration d’outils\"],\"xv7HSr\":[\"total par mois à coût fixe\"],\"hmu++i\":[\"Suivez le montant et la date de conclusion\"],\"POzmFl\":[\"Suivez chaque version avec des journaux de changements, des points forts et des démos des nouvelles fonctionnalités.\"],\"6vHPh9\":[\"Track relationships, manage pipelines, and take action quickly with an intuitive CRM that helps your team move faster from day one with confidence.\"],\"xwWQ9Q\":[\"Training & Adoption\"],\"MtCqjl\":[\"Training, Adoption & Support\"],\"/ga9kq\":[\"Trinidad & Tobago 🇹🇹\"],\"tdZpCd\":[\"Trust Center\"],\"KtyN0b\":[\"approuvé par\"],\"eslLQF\":[\"Essayer en direct\"],\"qhmtws\":[\"Try removing some filters or browse all partners.\"],\"E/hGy3\":[\"Essayer Twenty Cloud\"],\"D5Kf4t\":[\"Mardi, votre équipe apprend que les affaires avec un sponsor technique se concluent 3 fois plus vite. Mercredi, vous ajoutez le champ, câblez le scoring, ajustez le workflow. Jeudi, vos agents agissent en conséquence. Cette boucle de feedback fait la différence. Et elle ne fonctionne que si le CRM est le vôtre.\"],\"y4UxlS\":[\"Tunisia 🇹🇳\"],\"UIDKnJ\":[\"Turkey 🇹🇷\"],\"Kz91g/\":[\"Turkish\"],\"kdJl4v\":[\"Turkmenistan 🇹🇲\"],\"tSc/a3\":[\"Tuvalu 🇹🇻\"],\"O5dAmW\":[\"Twenty | CRM open source n°1\"],\"NalB1c\":[\"Twenty Apps ouvre la voie à la création de produits, pas seulement d’implémentations. Par exemple, nous développons une intégration WhatsApp Business que n’importe quel client de Twenty pourrait obtenir. C’est une source de revenus récurrents que nous n’aurions pas si nous ne faisions que configurer la plateforme de quelqu’un d’autre.\"],\"q9UWVC\":[\"Articles Twenty — Analyses sur le CRM open source\"],\"mkTfZ1\":[\"Twenty comme\"],\"+w9xZW\":[\"Twenty comme colonne vertébrale API d’une stack go-to-market\"],\"zj0CA+\":[\"Twenty comme colonne vertébrale API d’une stack go-to-market | Elevate Consulting\"],\"neM1Ol\":[\"Fonctionnalités de Twenty CRM — Plateforme CRM open source moderne\"],\"8zCqPL\":[\"Tarifs de Twenty CRM — Offres à partir de 9 $ par utilisateur et par mois\"],\"D05UQH\":[\"Clients de Twenty — Comment les équipes modernes font tourner leur CRM\"],\"0qyMhk\":[\"Twenty donne aux équipes techniques les briques pour un CRM personnalisé qui répond à des besoins métier complexes et s’adapte rapidement à mesure que l’entreprise évolue.\"],\"jVhq41\":[\"Twenty vous offre le type de flexibilité qui change réellement ce que vous pouvez proposer à vos clients. L’expérience développeur est soignée, les API sont ouvertes, et quand quelque chose doit être personnalisé, vous pouvez simplement le faire. Il n’y a pas de combat contre la plateforme.\"],\"x/I85y\":[\"Twenty n’est pas seulement l’endroit où vivent les données CRM. C’est la colonne vertébrale API qui rend le reste de la stack possible.\"],\"K+zzSQ\":[\"Twenty nous permet de construire un CRM autour de l’entreprise et non l’entreprise autour du CRM.\"],\"AxT+g4\":[\"Twenty simplifie tout. C'est épuré, intuitif et conçu pour rappeler Notion.\"],\"4SJucz\":[\"Twenty Partners — Intégrateurs CRM Open Source certifiés\"],\"X1GHuJ\":[\"Twenty Releases — Nouveautés du CRM Open Source\"],\"V1lV7B\":[\"Assistance de l'équipe Twenty\"],\"KsFvUt\":[\"Twenty's certified partners help teams migrate, customise, and operate the open source CRM across regions, languages, and deployment models. Browse profiles and book a call.\"],\"EIU345\":[\"Authentification à deux facteurs\"],\"O+vc/1\":[\"Type of team *\"],\"P+R1Lc\":[\"Typical project\"],\"HqFilh\":[\"UAE 🇦🇪\"],\"+WNTxL\":[\"Uganda 🇺🇬\"],\"uxuy4l\":[\"Thème de l'interface utilisateur\"],\"tNfmmF\":[\"UK 🇬🇧\"],\"z7UkhA\":[\"Ukraine 🇺🇦\"],\"V9+2pH\":[\"Ukrainian\"],\"jqzUyM\":[\"Indisponible\"],\"Hix/m6\":[\"Chronologie unifiée (e-mails, événements, tâches, notes, fichiers)\"],\"NIuIk1\":[\"Illimité\"],\"aGpTSC\":[\"Jusqu’à 5 espaces de travail\"],\"SPdRRU\":[\"Upfront consulting, scoping, strategy.\"],\"2vanwz\":[\"Chargez, renommez, prévisualisez et gérez les fichiers directement sur les enregistrements. Tout reste à sa place.\"],\"tmwuH9\":[\"Urdu\"],\"huOaG8\":[\"Uruguay 🇺🇾\"],\"RCOibx\":[\"US\"],\"LXHEIS\":[\"USA 🇺🇸\"],\"Roaswv\":[\"Guide utilisateur\"],\"3XIgKU\":[\"Rôles utilisateur\"],\"UCUX2+\":[\"User-side rollout & ongoing support.\"],\"FOOEtP\":[\"Uzbekistan 🇺🇿\"],\"CRXL2j\":[\"Vanuatu 🇻🇺\"],\"NNeEYO\":[\"Vatican 🇻🇦\"],\"BWzac4\":[\"Venezuela 🇻🇪\"],\"FlQ1vR\":[\"Vietnam 🇻🇳\"],\"fROFIL\":[\"Vietnamese\"],\"BRBSny\":[\"View \",[\"0\"],\" on LinkedIn\"],\"ITdNGt\":[\"View on LinkedIn\"],\"73lp8c\":[\"View profile\"],\"BAzC1v\":[\"Types de vue\"],\"mHtVst\":[\"Visualisez vos clients sur une carte !\"],\"CsHuOr\":[\"VP Ingénierie\"],\"uRh799\":[\"VP Ingénierie chez W3villa Technologies\"],\"w2INie\":[\"VP Ingénierie, W3villa Technologies\"],\"s0tU5h\":[\"W3Grads\"],\"R8BueT\":[\"W3villa a développé W3Grads (w3grads.com), une plateforme d'entretiens simulés alimentée par l'IA pour les universités et les instituts de formation, en utilisant Twenty comme socle opérationnel.\"],\"7hHsoV\":[\"W3villa a conçu W3Grads pour des entretiens simulés par IA à grande échelle, avec Twenty comme socle opérationnel.\"],\"QBOUnd\":[\"W3villa a livré W3Grads sur Twenty pour des entretiens IA, la notation et des workflows à l'échelle des institutions, sans reconstruire toute la plomberie du CRM.\"],\"7q5Vjn\":[\"W3villa Technologies\"],\"ZabLEt\":[\"W3villa Technologies a entrepris de le résoudre correctement, non pas avec un contournement, mais avec un produit.\"],\"3v2ipf\":[\"W3villa a utilisé Twenty comme framework de niveau production pour le modèle de données, les autorisations, l'authentification et le moteur de workflows qu'ils auraient autrement dû reconstruire eux-mêmes.\"],\"8CHatv\":[\"Nous n'avons pas pu soumettre votre candidature. Veuillez réessayer dans un instant.\"],\"MjWeUE\":[\"Nous ne voulions pas simplement masquer le problème. Nous voulions construire quelque chose sur lequel les établissements pourraient s'appuyer à grande échelle, ce qui signifiait partir d'une base suffisamment solide pour supporter toute la complexité de ce que nous avions en tête.\"],\"d5CWI6\":[\"Nous construisons le CRM Open Source n°1, mais nous ne pouvons pas le faire seuls. Rejoignez notre écosystème de partenaires et grandissez avec nous.\"],\"v1kQyJ\":[\"Webhooks\"],\"ZhnM/K\":[\"Webhooks (capture de données modifiées)\"],\"hgDePr\":[\"Website or GitHub\"],\"Lx0cVD\":[\"What an admin can do without writing code.\"],\"Z34FQq\":[\"Ce qui a convaincu Olivier, c'est la flexibilité de la plateforme et la direction qu'elle prenait. Même lorsque les besoins initiaux n'étaient que de la tenue de registres de base, il lui fallait tout de même un modèle de données personnalisé avec des autorisations granulaires pour gérer la large palette d'activités de NetZero. Il lui fallait aussi un système capable de s'adapter rapidement à une entreprise à itérations rapides.\"],\"phiBjc\":[\"Combien coûte Twenty ?\"],\"WVQaGB\":[\"Ce qui arrive en avril 2026 est ce qu'il attendait : la création de workflows assistée par l'IA, décrire ce dont il a besoin et itérer à partir de là au lieu de construire une logique complexe depuis zéro. Pour un fondateur qui gère lui-même le CRM, cela change ce qui est réellement possible.\"],\"iOAq7n\":[\"La suite\"],\"tWd6MT\":[\"Ce qui est prévu est important. NetZero dispose d'un data lake, de formulaires en ligne et de multiples systèmes internes qu'il souhaite connecter à Twenty. Les tuyaux sont là ; la prochaine étape consiste à mettre en place des automatisations qui les relient.\"],\"aYRqmz\":[\"Ce que cela signifie\"],\"QCHIzm\":[\"What you cover *\"],\"1kfjxX\":[\"Quelle que soit la suite, il fallait que ce soit quelque chose qu'ils puissent posséder.\"],\"cs6VpJ\":[\"Quand un étudiant s'inscrit via un QR code lors d'un événement sur le campus, le système attribue un plan, génère une session d'entretien et envoie un lien. L'IA conduit l'entretien, note le candidat et classe le résultat. Le corps enseignant voit où en est chaque étudiant sans revoir manuellement chaque session. Concevoir et itérer sur ces workflows a été plus rapide avec l'IA dans la boucle.\"],\"I/oPrY\":[\"Quand le canal est\"],\"JglRo/\":[\"Quand le canal est l'entreprise\"],\"ee4xKk\":[\"Quand le fournisseur\"],\"DajeYD\":[\"Quand le fournisseur a tout arrêté\"],\"X1gdzB\":[\"Quand votre CRM est\"],\"OQ41z8\":[\"Quand votre CRM est le produit\"],\"Svuneu\":[\"Quand votre CRM est le produit : W3Grads sur Twenty | W3villa Technologies\"],\"bGN8u+\":[\"Bien que NetZero exécute encore un second CRM en parallèle pour les opérations très axées sur WhatsApp avec des agriculteurs au Brésil, ils prévoient de tout migrer vers Twenty à mesure que les fonctionnalités et l'écosystème grandissent. Leur pipeline structuré et multinational est déjà propulsé par Twenty.\"],\"DJlSwA\":[\"Pourquoi\"],\"4sOVu+\":[\"Pourquoi Twenty\"],\"DH7vVZ\":[\"Pourquoi Twenty — Le CRM Open Source conçu pour être personnalisé\"],\"OKVlnc\":[\"Avec Twenty, lorsqu'un nouveau besoin apparaît, il peut y répondre lui-même : pas de développeur requis, pas de ticket de support.\"],\"KAB1uP\":[\"avec vous\"],\"OX5bbs\":[\"Adresse e-mail professionnelle *\"],\"woYYQq\":[\"Workflows\"],\"1ie9Dm\":[\"Des workflows qui\"],\"AzqmMJ\":[\"Des workflows qui sont réellement utilisés\"],\"pmUArF\":[\"Espace de travail\"],\"bwECg/\":[\"Workspace URL, customer references, relevant links…\"],\"zkWmBh\":[\"Annuel\"],\"S6izIJ\":[\"Yemen 🇾🇪\"],\"l75CjT\":[\"Oui\"],\"bo6pUs\":[\"Oui, avec notre framework Apps. Générez une extension avec `npx create-twenty-app` et livrez des objets personnalisés, des fonctions de logique côté serveur, des composants React qui s'affichent dans l'UI de Twenty, des compétences et des agents IA, des vues et la navigation, le tout en TypeScript, déployable sur n'importe quel espace de travail.\"],\"yIcBW6\":[\"Oui. Chaque espace de travail Cloud est fourni avec un serveur MCP natif. Connectez votre assistant IA via OAuth et il peut lire et écrire vos données CRM en langage naturel.\"],\"8xYMYQ\":[\"Oui. Importez vos données via CSV, ou utilisez notre API pour plus de 50 000 enregistrements. Nos partenaires peuvent prendre en charge l'intégralité de la migration pour vous.\"],\"8m0eN9\":[\"Oui. Twenty est le CRM Open Source n°1 sur GitHub. Vous pouvez l'auto-héberger pour posséder entièrement votre infrastructure, ou l'exécuter sur notre cloud managé pour une configuration zéro ops.\"],\"LJ3sTb\":[\"Vous n'achetez pas votre pipeline de déploiement sur étagère. Vous ne louez pas votre entrepôt de données à un fournisseur qui décide du schéma. Vous le construisez, vous le possédez, vous itérez dessus chaque semaine. Le CRM prend la même direction. Les équipes qui le considèrent comme une infrastructure qu'elles possèdent accumuleront un avantage à chaque trimestre.\"],\"SfJVcK\":[\"Votre achat est terminé. Suivez les étapes ci-dessous pour copier votre clé de licence dans votre instance Twenty.\"],\"krHgj1\":[\"Votre clé d'entreprise\"],\"+dxjCu\":[\"Votre licence entreprise a été activée avec succès.\"],\"pEQiCY\":[\"Votre nom *\"],\"fQATWn\":[\"Votre réseau, entièrement cartographié.\"],\"CgGN5T\":[\"Zambia 🇿🇲\"],\"wHjFOw\":[\"Zéro\"],\"xlFvlS\":[\"Zéro travail manuel\"],\"ZvEoMq\":[\"Zéro travail manuel au cœur. Automatisation totale. Construit sur Twenty.\"],\"TT3YXb\":[\"Zimbabwe 🇿🇼\"]}")as Messages;
\ No newline at end of file
diff --git a/packages/twenty-website/src/sections/PartnerApplication/PartnerApplicationModal.tsx b/packages/twenty-website/src/sections/PartnerApplication/PartnerApplicationModal.tsx
index 2269b260d07..4660a871137 100644
--- a/packages/twenty-website/src/sections/PartnerApplication/PartnerApplicationModal.tsx
+++ b/packages/twenty-website/src/sections/PartnerApplication/PartnerApplicationModal.tsx
@@ -5,7 +5,7 @@ import {
PartnerApplicationWizard,
partnerWizardPanelClass,
} from '@/sections/PartnerApplication/wizard/PartnerApplicationWizard';
-import { useEffect, useState } from 'react';
+import { useLayoutEffect, useState } from 'react';
type PartnerApplicationModalProps = {
open: boolean;
@@ -17,9 +17,15 @@ export function PartnerApplicationModal({
onClose,
}: PartnerApplicationModalProps) {
const [resetSignal, setResetSignal] = useState(0);
+ const [submitted, setSubmitted] = useState(false);
- useEffect(() => {
- if (open) setResetSignal((n) => n + 1);
+ // Reset before paint (not useEffect) so a stale submitted=true from a prior
+ // session can't flash the wide booking panel for a frame on reopen.
+ useLayoutEffect(() => {
+ if (open) {
+ setResetSignal((n) => n + 1);
+ setSubmitted(false);
+ }
}, [open]);
return (
@@ -29,8 +35,13 @@ export function PartnerApplicationModal({
if (!next) onClose();
}}
className={partnerWizardPanelClass}
+ panelWidth={submitted ? 'min(960px, 100%)' : undefined}
>
-
+ setSubmitted(true)}
+ />
);
}
diff --git a/packages/twenty-website/src/sections/PartnerApplication/config.ts b/packages/twenty-website/src/sections/PartnerApplication/config.ts
new file mode 100644
index 00000000000..2aba580fbfe
--- /dev/null
+++ b/packages/twenty-website/src/sections/PartnerApplication/config.ts
@@ -0,0 +1,7 @@
+// Cal.com path (no host) the partner application success screen books the intro
+// call onto. Overridable via env so the org / self-hosters can point it at a
+// team link without a code change; defaults to the canonical handle.
+// Full link: https://cal.com/
+export const PARTNER_INTRO_CAL_LINK =
+ process.env.NEXT_PUBLIC_PARTNER_INTRO_CAL_LINK ||
+ 'rashad-twenty/partner-intro';
diff --git a/packages/twenty-website/src/sections/PartnerApplication/partner-application-modal-data.ts b/packages/twenty-website/src/sections/PartnerApplication/partner-application-modal-data.ts
index 4269d44d3e1..1dae32d4c95 100644
--- a/packages/twenty-website/src/sections/PartnerApplication/partner-application-modal-data.ts
+++ b/packages/twenty-website/src/sections/PartnerApplication/partner-application-modal-data.ts
@@ -12,9 +12,10 @@ export const PARTNER_APPLICATION_MODAL_COPY = {
next: msg`Next →`,
submit: msg`Submit application`,
submitInFlight: msg`Submitting…`,
- successTitleSerif: msg`Thanks,`,
- successTitleSans: msg`we'll be in touch!`,
- successClose: msg`Close`,
+ successTitleSerif: msg`Thanks, you're in.`,
+ successTitleSans: msg`Now book your intro call.`,
+ bookIntroSubtitle: msg`Grab 30 minutes so we can get to know your team.`,
+ bookLater: msg`I'll book later →`,
validation: {
incompleteForm: msg`Please complete all required fields before continuing.`,
invalidEmail: msg`Enter a valid email address.`,
diff --git a/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerApplicationSuccess.tsx b/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerApplicationSuccess.tsx
new file mode 100644
index 00000000000..529527dd1b7
--- /dev/null
+++ b/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerApplicationSuccess.tsx
@@ -0,0 +1,110 @@
+'use client';
+
+import { Body, Heading, HeadingPart } from '@/design-system/components';
+import { PartnerIntroCalEmbed } from '@/sections/PartnerApplication/wizard/PartnerIntroCalEmbed';
+import { buildPartnerIntroPrefill } from '@/sections/PartnerApplication/wizard/partner-intro-prefill';
+import { theme } from '@/theme';
+import { styled } from '@linaria/react';
+
+type DialogPrimitive = React.ComponentType<{ render?: React.ReactElement }>;
+
+type PartnerApplicationSuccessProps = {
+ Title: DialogPrimitive;
+ Description: DialogPrimitive;
+ titleSerif: string;
+ titleSans: string;
+ subtitle: string;
+ bookLaterLabel: string;
+ name?: string;
+ email?: string;
+ company?: string;
+ onDismiss: () => void;
+};
+
+const TitleHeadingWrapper = styled.div`
+ color: ${theme.colors.secondary.text[100]};
+`;
+
+const SuccessView = styled.div`
+ align-items: stretch;
+ display: flex;
+ flex-direction: column;
+ gap: clamp(16px, 4vh, 32px);
+ margin-top: clamp(16px, 4vh, 32px);
+`;
+
+const Subtitle = styled.div`
+ color: ${theme.colors.secondary.text[60]};
+`;
+
+const EmbedFrame = styled.div`
+ border: 1px solid ${theme.colors.secondary.border[20]};
+ border-radius: ${theme.radius(2)};
+ overflow: hidden;
+`;
+
+const BookLaterButton = styled.button`
+ align-self: flex-end;
+ background: transparent;
+ border: none;
+ color: ${theme.colors.secondary.text[60]};
+ cursor: pointer;
+ font-family: ${theme.font.family.mono};
+ font-size: ${theme.font.size(3)};
+ padding: 0;
+ text-transform: uppercase;
+`;
+
+export function PartnerApplicationSuccess({
+ Title,
+ Description,
+ titleSerif,
+ titleSans,
+ subtitle,
+ bookLaterLabel,
+ name,
+ email,
+ company,
+ onDismiss,
+}: PartnerApplicationSuccessProps) {
+ const prefill = buildPartnerIntroPrefill({ name, email, company });
+
+ return (
+ <>
+
+
+
+ {titleSerif}
+
+
+
+ {titleSans}
+
+
+
+ }
+ />
+
+
+ {subtitle}
+
+ }
+ />
+
+
+
+
+ {bookLaterLabel}
+
+
+ >
+ );
+}
diff --git a/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerApplicationWizard.tsx b/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerApplicationWizard.tsx
index 7680ee35e93..49041eae287 100644
--- a/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerApplicationWizard.tsx
+++ b/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerApplicationWizard.tsx
@@ -16,6 +16,7 @@ import { IdentityStep } from '@/sections/PartnerApplication/wizard/steps/Identit
import { ProfileStep } from '@/sections/PartnerApplication/wizard/steps/ProfileStep';
import { ExpertiseStep } from '@/sections/PartnerApplication/wizard/steps/ExpertiseStep';
import { CommercialsStep } from '@/sections/PartnerApplication/wizard/steps/CommercialsStep';
+import { PartnerApplicationSuccess } from '@/sections/PartnerApplication/wizard/PartnerApplicationSuccess';
import {
buildPartnerApplicationRequestBody,
getCurrentStepId,
@@ -124,14 +125,6 @@ const FieldErrorBanner = styled.p`
margin: 0;
`;
-const SuccessView = styled.div`
- align-items: stretch;
- display: flex;
- flex-direction: column;
- gap: clamp(16px, 4vh, 32px);
- margin-top: clamp(16px, 4vh, 32px);
-`;
-
function StepRenderer({
controller,
}: {
@@ -160,12 +153,14 @@ type WizardSlots = {
type WizardProps = {
resetSignal: number;
onSuccess: () => void;
+ onSubmitted?: () => void;
slots?: WizardSlots;
};
export function PartnerApplicationWizard({
resetSignal,
onSuccess,
+ onSubmitted,
slots,
}: WizardProps) {
const { i18n } = useLingui();
@@ -237,6 +232,7 @@ export function PartnerApplicationWizard({
return;
}
setSubmitted();
+ onSubmitted?.();
} catch {
setSubmitError(
i18n._(PARTNER_APPLICATION_MODAL_COPY.validation.submitFailed),
@@ -252,45 +248,25 @@ export function PartnerApplicationWizard({
setSubmitError,
setSubmitting,
setSubmitted,
+ onSubmitted,
i18n,
],
);
if (state.isSubmitted) {
return (
- <>
-
-
-
-
- {i18n._(PARTNER_APPLICATION_MODAL_COPY.successTitleSerif)}
-
-
-
- {i18n._(PARTNER_APPLICATION_MODAL_COPY.successTitleSans)}
-
-
-
- }
- />
-
-
-
-
-
-
- {i18n._(PARTNER_APPLICATION_MODAL_COPY.successClose)}
-
-
-
-
- >
+
);
}
diff --git a/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerIntroCalEmbed.tsx b/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerIntroCalEmbed.tsx
new file mode 100644
index 00000000000..361f50b8631
--- /dev/null
+++ b/packages/twenty-website/src/sections/PartnerApplication/wizard/PartnerIntroCalEmbed.tsx
@@ -0,0 +1,52 @@
+'use client';
+
+import Cal, { getCalApi } from '@calcom/embed-react';
+import { useEffect } from 'react';
+
+import { PARTNER_INTRO_CAL_LINK } from '@/sections/PartnerApplication/config';
+
+// Own namespace so the ui() config (hiding event-type details) applies only to
+// this embed, not the ContactCal "talk to us" embed elsewhere on the site.
+const PARTNER_INTRO_CAL_NAMESPACE = 'partner-intro';
+
+type PartnerIntroCalEmbedProps = {
+ name?: string;
+ email?: string;
+ notes?: string;
+};
+
+// Renders Cal.com's own booking UI in an iframe. We control the link, theme,
+// month_view layout, and prefill via config; hideEventTypeDetails must go
+// through ui() (it is not part of the config prop type). Cal owns the rest.
+export function PartnerIntroCalEmbed({
+ name,
+ email,
+ notes,
+}: PartnerIntroCalEmbedProps) {
+ useEffect(() => {
+ let cancelled = false;
+ void (async () => {
+ const cal = await getCalApi({ namespace: PARTNER_INTRO_CAL_NAMESPACE });
+ if (cancelled) return;
+ cal('ui', { hideEventTypeDetails: true });
+ })();
+ return () => {
+ cancelled = true;
+ };
+ }, []);
+
+ return (
+
+ );
+}
diff --git a/packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/PartnerApplicationSuccess.test.tsx b/packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/PartnerApplicationSuccess.test.tsx
new file mode 100644
index 00000000000..cc21982a652
--- /dev/null
+++ b/packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/PartnerApplicationSuccess.test.tsx
@@ -0,0 +1,48 @@
+// __tests__/PartnerApplicationSuccess.test.tsx
+import { renderToStaticMarkup } from 'react-dom/server';
+
+jest.mock('@calcom/embed-react', () => ({
+ __esModule: true,
+ default: (props: {
+ calLink: string;
+ config?: { name?: string; email?: string; notes?: string };
+ }) => (
+
+ ),
+}));
+
+import { PartnerApplicationSuccess } from '@/sections/PartnerApplication/wizard/PartnerApplicationSuccess';
+
+const Passthrough = ({ render }: { render?: React.ReactElement }) => (
+ <>{render}>
+);
+
+describe('PartnerApplicationSuccess', () => {
+ it('renders the booking embed prefilled from the applicant plus an escape hatch', () => {
+ const html = renderToStaticMarkup(
+ undefined}
+ />,
+ );
+
+ expect(html).toContain('data-callink="rashad-twenty/partner-intro"');
+ expect(html).toContain('data-name="Ada Lovelace"');
+ expect(html).toContain('data-notes="Company: Analytical Engines"');
+ expect(html).toContain('Now book your intro call.');
+ expect(html).toContain('book later');
+ });
+});
diff --git a/packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/PartnerIntroCalEmbed.test.tsx b/packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/PartnerIntroCalEmbed.test.tsx
new file mode 100644
index 00000000000..db29448ac34
--- /dev/null
+++ b/packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/PartnerIntroCalEmbed.test.tsx
@@ -0,0 +1,48 @@
+// __tests__/PartnerIntroCalEmbed.test.tsx
+import { renderToStaticMarkup } from 'react-dom/server';
+
+jest.mock('@calcom/embed-react', () => ({
+ __esModule: true,
+ default: (props: {
+ calLink: string;
+ config?: {
+ theme?: string;
+ layout?: string;
+ name?: string;
+ email?: string;
+ notes?: string;
+ };
+ }) => (
+
+ ),
+ getCalApi: jest.fn(async () => jest.fn()),
+}));
+
+import { PartnerIntroCalEmbed } from '@/sections/PartnerApplication/wizard/PartnerIntroCalEmbed';
+
+describe('PartnerIntroCalEmbed', () => {
+ it('points at the partner-intro Cal link and forwards prefill + theme', () => {
+ const html = renderToStaticMarkup(
+ ,
+ );
+
+ expect(html).toContain('data-callink="rashad-twenty/partner-intro"');
+ expect(html).toContain('data-theme="dark"');
+ expect(html).toContain('data-layout="month_view"');
+ expect(html).toContain('data-name="Ada Lovelace"');
+ expect(html).toContain('data-email="ada@example.com"');
+ expect(html).toContain('data-notes="Company: Acme"');
+ });
+});
diff --git a/packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/partner-intro-prefill.test.ts b/packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/partner-intro-prefill.test.ts
new file mode 100644
index 00000000000..18ca3fa41ff
--- /dev/null
+++ b/packages/twenty-website/src/sections/PartnerApplication/wizard/__tests__/partner-intro-prefill.test.ts
@@ -0,0 +1,37 @@
+import { buildPartnerIntroPrefill } from '../partner-intro-prefill';
+
+describe('buildPartnerIntroPrefill', () => {
+ it('maps name, email and company into Cal prefill fields', () => {
+ expect(
+ buildPartnerIntroPrefill({
+ name: 'Ada Lovelace',
+ email: 'ada@example.com',
+ company: 'Analytical Engines',
+ }),
+ ).toEqual({
+ name: 'Ada Lovelace',
+ email: 'ada@example.com',
+ notes: 'Company: Analytical Engines',
+ });
+ });
+
+ it('trims values before mapping', () => {
+ expect(
+ buildPartnerIntroPrefill({
+ name: ' Ada ',
+ email: ' ada@example.com ',
+ company: ' Acme ',
+ }),
+ ).toEqual({
+ name: 'Ada',
+ email: 'ada@example.com',
+ notes: 'Company: Acme',
+ });
+ });
+
+ it('omits empty or whitespace-only fields', () => {
+ expect(
+ buildPartnerIntroPrefill({ name: '', email: ' ', company: undefined }),
+ ).toEqual({});
+ });
+});
diff --git a/packages/twenty-website/src/sections/PartnerApplication/wizard/partner-intro-prefill.ts b/packages/twenty-website/src/sections/PartnerApplication/wizard/partner-intro-prefill.ts
new file mode 100644
index 00000000000..52e24934878
--- /dev/null
+++ b/packages/twenty-website/src/sections/PartnerApplication/wizard/partner-intro-prefill.ts
@@ -0,0 +1,26 @@
+export type PartnerIntroPrefillInput = {
+ name?: string;
+ email?: string;
+ company?: string;
+};
+
+// Cal.com prefill keys. `notes` surfaces the applicant's company on the booking
+// so the call arrives pre-qualified.
+export type PartnerIntroPrefill = {
+ name?: string;
+ email?: string;
+ notes?: string;
+};
+
+export function buildPartnerIntroPrefill(
+ input: PartnerIntroPrefillInput,
+): PartnerIntroPrefill {
+ const prefill: PartnerIntroPrefill = {};
+ const name = input.name?.trim();
+ const email = input.email?.trim();
+ const company = input.company?.trim();
+ if (name) prefill.name = name;
+ if (email) prefill.email = email;
+ if (company) prefill.notes = `Company: ${company}`;
+ return prefill;
+}