feat(billing): update pricing tiers to MyEasyCMS plans (EUR)
Some checks failed
Workflow / ʦ TypeScript (push) Failing after 6m2s
Workflow / ⚫️ Test (push) Has been skipped

Replace MakerKit sample billing config with actual MyEasyCMS tiers:
- Starter: 29€/mo (250 members) — Mitgliederverwaltung, SEPA, Website, Newsletter
- Pro: 59€/mo (1.000 members) — Kursverwaltung, Buchungen, unbegrenzte Benutzer
- Verband: 199€/mo (10.000 members) — Mehrebenen-Hierarchie, Verbandssuche
- Enterprise: 349€/mo (unlimited) — dedizierte Infrastruktur, SLA, API

All plans: EUR currency, German feature labels, yearly = ~2 months free.
Also update marketing i18n subtitles.
This commit is contained in:
Zaid Marzguioui
2026-04-02 16:13:54 +02:00
parent da862f2194
commit a6c9537195
3 changed files with 219 additions and 37 deletions

View File

@@ -1,8 +1,216 @@
/* /**
Replace this file with your own billing configuration file. * MyEasyCMS Billing Configuration
Copy it from billing.sample.config.ts and update the configuration to match your billing provider and products. *
This file will never be overwritten by git updates * Four tiers based on club/organization size:
* Starter — 29 €/mo (up to 250 members)
* Pro — 59 €/mo (up to 1.000 members)
* Verband — 199 €/mo (up to 10.000 members, multi-level hierarchy)
* Enterprise — 349 €/mo (unlimited, dedicated support)
*
* Yearly plans get ~2 months free (billed annually).
*/ */
import sampleSchema from './billing.sample.config'; import { BillingProviderSchema, createBillingSchema } from '@kit/billing';
export default sampleSchema; const provider = BillingProviderSchema.parse(
process.env.NEXT_PUBLIC_BILLING_PROVIDER,
);
export default createBillingSchema({
provider,
products: [
// ── Starter ──────────────────────────────────────────────
{
id: 'starter',
name: 'Starter',
description: 'Für kleine Vereine bis 250 Mitglieder',
currency: 'EUR',
badge: 'Einstieg',
plans: [
{
name: 'Starter Monatlich',
id: 'starter-monthly',
paymentType: 'recurring',
interval: 'month',
lineItems: [
{
id: 'price_starter_monthly',
name: 'Starter',
cost: 29,
type: 'flat' as const,
},
],
},
{
name: 'Starter Jährlich',
id: 'starter-yearly',
paymentType: 'recurring',
interval: 'year',
lineItems: [
{
id: 'price_starter_yearly',
name: 'Starter',
cost: 290,
type: 'flat' as const,
},
],
},
],
features: [
'Bis zu 250 Mitglieder',
'Mitgliederverwaltung',
'SEPA-Lastschrifteinzug',
'Veranstaltungsmanagement',
'Vereins-Website (Baukasten)',
'Newsletter-Versand',
'Dokumenten-Generator',
'E-Mail-Support',
],
},
// ── Pro ───────────────────────────────────────────────────
{
id: 'pro',
name: 'Pro',
badge: 'Beliebt',
highlighted: true,
description: 'Für aktive Vereine bis 1.000 Mitglieder',
currency: 'EUR',
plans: [
{
name: 'Pro Monatlich',
id: 'pro-monthly',
paymentType: 'recurring',
interval: 'month',
lineItems: [
{
id: 'price_pro_monthly',
name: 'Pro',
cost: 59,
type: 'flat' as const,
},
],
},
{
name: 'Pro Jährlich',
id: 'pro-yearly',
paymentType: 'recurring',
interval: 'year',
lineItems: [
{
id: 'price_pro_yearly',
name: 'Pro',
cost: 590,
type: 'flat' as const,
},
],
},
],
features: [
'Bis zu 1.000 Mitglieder',
'Alles aus Starter',
'Kursverwaltung (VHS-Modus)',
'Buchungssystem (Räume & Gäste)',
'Rechnungswesen & Mahnungen',
'Unbegrenzte Benutzer',
'Benutzerdefinierte Module',
'Telefon-Support',
],
},
// ── Verband ──────────────────────────────────────────────
{
id: 'verband',
name: 'Verband',
badge: 'Verbände',
description: 'Für Verbände und Dachorganisationen',
currency: 'EUR',
plans: [
{
name: 'Verband Monatlich',
id: 'verband-monthly',
paymentType: 'recurring',
interval: 'month',
lineItems: [
{
id: 'price_verband_monthly',
name: 'Verband',
cost: 199,
type: 'flat' as const,
},
],
},
{
name: 'Verband Jährlich',
id: 'verband-yearly',
paymentType: 'recurring',
interval: 'year',
lineItems: [
{
id: 'price_verband_yearly',
name: 'Verband',
cost: 1990,
type: 'flat' as const,
},
],
},
],
features: [
'Bis zu 10.000 Mitglieder',
'Alles aus Pro',
'Mehrebenen-Verbandshierarchie',
'Verbandsweite Mitgliedersuche',
'Geteilte Vorlagen & Events',
'Verbands-Berichtswesen',
'Fischerei-Modul (optional)',
'Sitzungsprotokolle (optional)',
'Prioritäts-Support',
],
},
// ── Enterprise ───────────────────────────────────────────
{
id: 'enterprise',
name: 'Enterprise',
description: 'Für große Organisationen mit individuellen Anforderungen',
currency: 'EUR',
plans: [
{
name: 'Enterprise Monatlich',
id: 'enterprise-monthly',
paymentType: 'recurring',
interval: 'month',
lineItems: [
{
id: 'price_enterprise_monthly',
name: 'Enterprise',
cost: 349,
type: 'flat' as const,
},
],
},
{
name: 'Enterprise Jährlich',
id: 'enterprise-yearly',
paymentType: 'recurring',
interval: 'year',
lineItems: [
{
id: 'price_enterprise_yearly',
name: 'Enterprise',
cost: 3490,
type: 'flat' as const,
},
],
},
],
features: [
'Unbegrenzte Mitglieder',
'Alles aus Verband',
'Dedizierte Infrastruktur',
'Individuelle Modulentwicklung',
'SLA & Uptime-Garantie',
'Persönlicher Account-Manager',
'Onboarding & Schulung',
'API-Zugang',
'Datenmigration inklusive',
],
},
],
});

View File

@@ -13,7 +13,7 @@
"faq": "FAQ", "faq": "FAQ",
"faqSubtitle": "Häufig gestellte Fragen", "faqSubtitle": "Häufig gestellte Fragen",
"pricing": "Preise", "pricing": "Preise",
"pricingSubtitle": "Tarife und Zahlungsoptionen", "pricingSubtitle": "Faire Preise nach Vereinsgröße — alle Funktionen inklusive",
"backToBlog": "Zurück zum Blog", "backToBlog": "Zurück zum Blog",
"noPosts": "Keine Beiträge gefunden", "noPosts": "Keine Beiträge gefunden",
"blogPaginationNext": "Nächste Seite", "blogPaginationNext": "Nächste Seite",
@@ -43,28 +43,23 @@
"contactErrorDescription": "Beim Senden ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut", "contactErrorDescription": "Beim Senden ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut",
"footerDescription": "Vereins- und Verbandsverwaltung aus Bayern — persönlich, zuverlässig und fair seit 2004. Entwickelt von Com.BISS GmbH, Schierling.", "footerDescription": "Vereins- und Verbandsverwaltung aus Bayern — persönlich, zuverlässig und fair seit 2004. Entwickelt von Com.BISS GmbH, Schierling.",
"copyright": "© 2004{year} Com.BISS GmbH. Alle Rechte vorbehalten.", "copyright": "© 2004{year} Com.BISS GmbH. Alle Rechte vorbehalten.",
"heroPill": "Seit 2004 — 22 Jahre Erfahrung", "heroPill": "Seit 2004 — 22 Jahre Erfahrung",
"heroTitle": "Vereinsverwaltung, die mitwächst", "heroTitle": "Vereinsverwaltung, die mitwächst",
"heroTitleLine1": "Vereinsverwaltung, die", "heroTitleLine1": "Vereinsverwaltung, die",
"heroTitleLine2": "mitwächst", "heroTitleLine2": "mitwächst",
"heroSubtitle": "Von der Mitgliederverwaltung bis zum SEPA-Einzug — die Software, der Vereine und Verbände in ganz Bayern seit zwei Jahrzehnten vertrauen. 69.000 verwaltete Mitglieder, 90+ angebundene Vereine.", "heroSubtitle": "Von der Mitgliederverwaltung bis zum SEPA-Einzug — die Software, der Vereine und Verbände in ganz Bayern seit zwei Jahrzehnten vertrauen. 69.000 verwaltete Mitglieder, 90+ angebundene Vereine.",
"trustedBy": "Vertraut von Vereinen und Verbänden in ganz Bayern", "trustedBy": "Vertraut von Vereinen und Verbänden in ganz Bayern",
"trustAssociations": "3 Bezirksfischereiverbände", "trustAssociations": "3 Bezirksfischereiverbände",
"trustSchools": "VHS & Bildungseinrichtungen", "trustSchools": "VHS & Bildungseinrichtungen",
"trustClubs": "90+ Vereine angebunden", "trustClubs": "90+ Vereine angebunden",
"trustOrganizations": "Stadt Regensburg seit 2010", "trustOrganizations": "Stadt Regensburg seit 2010",
"statMembers": "Verwaltete Mitglieder", "statMembers": "Verwaltete Mitglieder",
"statOrganizations": "Organisationen", "statOrganizations": "Organisationen",
"statYears": "Jahre Erfahrung", "statYears": "Jahre Erfahrung",
"statFederations": "Bezirksverbände", "statFederations": "Bezirksverbände",
"featuresHeading": "Alles, was Ihr Verein braucht", "featuresHeading": "Alles, was Ihr Verein braucht",
"featuresSubheading": "MYeasyCMS wurde speziell für die Bedürfnisse von Vereinen und Verbänden entwickelt — modular aufgebaut, webbasiert und über jeden Browser nutzbar.", "featuresSubheading": "MYeasyCMS wurde speziell für die Bedürfnisse von Vereinen und Verbänden entwickelt — modular aufgebaut, webbasiert und über jeden Browser nutzbar.",
"featuresLabel": "Kernmodule", "featuresLabel": "Kernmodule",
"featureMembersTitle": "Mitgliederverwaltung", "featureMembersTitle": "Mitgliederverwaltung",
"featureMembersDesc": "Stammdaten, Kontaktinformationen, Mandate, Ehrungen, Historie und Notizen — alles an einem Ort. Mit Abteilungen, Beitragsverfolgung und Mitgliedsausweisen.", "featureMembersDesc": "Stammdaten, Kontaktinformationen, Mandate, Ehrungen, Historie und Notizen — alles an einem Ort. Mit Abteilungen, Beitragsverfolgung und Mitgliedsausweisen.",
"featureCoursesTitle": "Kursverwaltung", "featureCoursesTitle": "Kursverwaltung",
@@ -77,10 +72,8 @@
"featureFinanceDesc": "Beitrags- und Gebührenverwaltung, SEPA-Lastschriftmandate, XML-Export und Kontenführung nach Geschäftsjahren. Rechnungen und Zahlungen im Griff.", "featureFinanceDesc": "Beitrags- und Gebührenverwaltung, SEPA-Lastschriftmandate, XML-Export und Kontenführung nach Geschäftsjahren. Rechnungen und Zahlungen im Griff.",
"featureNewsletterTitle": "E-Mail & Newsletter", "featureNewsletterTitle": "E-Mail & Newsletter",
"featureNewsletterDesc": "E-Mail-Kommunikation mit Mitgliedern und Newsletter-Versand mit Vorlagen. Halten Sie Ihre Mitglieder informiert.", "featureNewsletterDesc": "E-Mail-Kommunikation mit Mitgliedern und Newsletter-Versand mit Vorlagen. Halten Sie Ihre Mitglieder informiert.",
"showcaseHeading": "Ein leistungsstarkes Dashboard auf einen Blick", "showcaseHeading": "Ein leistungsstarkes Dashboard auf einen Blick",
"showcaseDescription": "Erhalten Sie einen vollständigen Überblick über Ihre Organisation — Mitglieder, Kurse, offene Rechnungen und Veranstaltungen — alles von einer zentralen Stelle aus. Schnellaktionen für die häufigsten Aufgaben.", "showcaseDescription": "Erhalten Sie einen vollständigen Überblick über Ihre Organisation — Mitglieder, Kurse, offene Rechnungen und Veranstaltungen — alles von einer zentralen Stelle aus. Schnellaktionen für die häufigsten Aufgaben.",
"testimonialsHeading": "Was unsere Kunden sagen", "testimonialsHeading": "Was unsere Kunden sagen",
"testimonialsSubheading": "Vereine in ganz Bayern vertrauen MYeasyCMS für ihre tägliche Arbeit.", "testimonialsSubheading": "Vereine in ganz Bayern vertrauen MYeasyCMS für ihre tägliche Arbeit.",
"testimonial1Quote": "MYeasyCMS hat unsere Mitgliederverwaltung enorm vereinfacht. Der persönliche Support ist unübertroffen.", "testimonial1Quote": "MYeasyCMS hat unsere Mitgliederverwaltung enorm vereinfacht. Der persönliche Support ist unübertroffen.",
@@ -92,18 +85,15 @@
"testimonial3Quote": "Allein die SEPA-Integration spart uns monatlich Stunden. Und das Team setzt unsere Wünsche schneller um als jeder andere Anbieter.", "testimonial3Quote": "Allein die SEPA-Integration spart uns monatlich Stunden. Und das Team setzt unsere Wünsche schneller um als jeder andere Anbieter.",
"testimonial3Name": "Sportverein", "testimonial3Name": "Sportverein",
"testimonial3Role": "Schierling, Kunde seit 2010", "testimonial3Role": "Schierling, Kunde seit 2010",
"additionalFeaturesHeading": "Und es gibt noch mehr", "additionalFeaturesHeading": "Und es gibt noch mehr",
"additionalFeaturesSubheading": "Zusätzliche Werkzeuge, die jeden Aspekt der täglichen Vereinsarbeit vereinfachen.", "additionalFeaturesSubheading": "Zusätzliche Werkzeuge, die jeden Aspekt der täglichen Vereinsarbeit vereinfachen.",
"additionalFeaturesLabel": "Weitere Funktionen", "additionalFeaturesLabel": "Weitere Funktionen",
"featureDocumentsTitle": "Dokumente & Ausweise", "featureDocumentsTitle": "Dokumente & Ausweise",
"featureDocumentsDesc": "Mitgliedsausweise, Rechnungen, Etiketten, Berichte, Briefe und Zertifikate — aus Vorlagen generiert, exportierbar als PDF und Excel.", "featureDocumentsDesc": "Mitgliedsausweise, Rechnungen, Etiketten, Berichte, Briefe und Zertifikate — aus Vorlagen generiert, exportierbar als PDF und Excel.",
"featureSiteBuilderTitle": "Vereins-Website", "featureSiteBuilderTitle": "Vereins-Website",
"featureSiteBuilderDesc": "Erstellen Sie die öffentliche Website Ihres Vereins ohne Programmierkenntnisse — mit Drag-and-Drop-Editor, Veranstaltungen und Kursangebot direkt aus dem CMS.", "featureSiteBuilderDesc": "Erstellen Sie die öffentliche Website Ihres Vereins ohne Programmierkenntnisse — mit Drag-and-Drop-Editor, Veranstaltungen und Kursangebot direkt aus dem CMS.",
"featureModulesTitle": "Individuelle Module", "featureModulesTitle": "Individuelle Module",
"featureModulesDesc": "Erweitern Sie die Plattform mit eigenen Datenmodulen für Gewässer, Fangbücher, Arbeitsdienste oder beliebige weitere Vereinsdaten.", "featureModulesDesc": "Erweitern Sie die Plattform mit eigenen Datenmodulen für Gewässer, Fangbücher, Arbeitsdienste oder beliebige weitere Vereinsdaten.",
"whyChooseHeading": "Warum Vereine Com.BISS vertrauen", "whyChooseHeading": "Warum Vereine Com.BISS vertrauen",
"whyChooseDescription": "2004 schlossen sich fünf Frauen zusammen und gründeten eine Web-Agentur. Seitdem arbeiten wir Hand in Hand mit unseren Kunden — persönlich, fair und zuverlässig. Geschäftsführerinnen: Brit Schiergl und Elisabeth Zehetbauer.", "whyChooseDescription": "2004 schlossen sich fünf Frauen zusammen und gründeten eine Web-Agentur. Seitdem arbeiten wir Hand in Hand mit unseren Kunden — persönlich, fair und zuverlässig. Geschäftsführerinnen: Brit Schiergl und Elisabeth Zehetbauer.",
"whyResponsiveTitle": "Persönlich", "whyResponsiveTitle": "Persönlich",
@@ -114,7 +104,6 @@
"whySupportDesc": "Faire Preise, schnelle und flexible Umsetzung der Kundenwünsche. Neuentwicklungen und Änderungen zu festen Preisen — keine Überraschungen.", "whySupportDesc": "Faire Preise, schnelle und flexible Umsetzung der Kundenwünsche. Neuentwicklungen und Änderungen zu festen Preisen — keine Überraschungen.",
"whyGdprTitle": "100% Server in Deutschland", "whyGdprTitle": "100% Server in Deutschland",
"whyGdprDesc": "Sitz in Schierling bei Regensburg. Server in Deutschland. DSGVO-konform. Ihre Daten bleiben hier.", "whyGdprDesc": "Sitz in Schierling bei Regensburg. Server in Deutschland. DSGVO-konform. Ihre Daten bleiben hier.",
"howItWorksHeading": "In drei einfachen Schritten loslegen", "howItWorksHeading": "In drei einfachen Schritten loslegen",
"howItWorksSubheading": "Die Einrichtung Ihres Vereins auf MYeasyCMS dauert nur wenige Minuten.", "howItWorksSubheading": "Die Einrichtung Ihres Vereins auf MYeasyCMS dauert nur wenige Minuten.",
"howStep1Title": "Testzugang anfragen", "howStep1Title": "Testzugang anfragen",
@@ -123,12 +112,10 @@
"howStep2Desc": "Aktivieren Sie die benötigten Module — Mitglieder, Beiträge, Gewässer, SEPA — und passen Sie diese an Ihren Verein an.", "howStep2Desc": "Aktivieren Sie die benötigten Module — Mitglieder, Beiträge, Gewässer, SEPA — und passen Sie diese an Ihren Verein an.",
"howStep3Title": "Vereinsverwaltung starten", "howStep3Title": "Vereinsverwaltung starten",
"howStep3Desc": "Importieren Sie Ihre bestehenden Mitgliederlisten und legen Sie sofort los — mit persönlicher Unterstützung durch unser Team.", "howStep3Desc": "Importieren Sie Ihre bestehenden Mitgliederlisten und legen Sie sofort los — mit persönlicher Unterstützung durch unser Team.",
"pricingPillLabel": "Faire Preise", "pricingPillLabel": "Faire Preise",
"pricingPillText": "Keine Begrenzung der Benutzeranzahl", "pricingPillText": "Keine Begrenzung der Benutzeranzahl",
"pricingHeading": "Faire Preise nach Vereinsgröße", "pricingHeading": "Faire Preise nach Vereinsgröße",
"pricingSubheading": "Alle Funktionen inklusive. Keine versteckten Kosten. Persönliche Einrichtung bei jedem Tarif.", "pricingSubheading": "Alle Funktionen inklusive. Keine versteckten Kosten. Persönliche Einrichtung bei jedem Tarif.",
"ctaHeading": "Bereit für eine Verwaltung, die einfach funktioniert?", "ctaHeading": "Bereit für eine Verwaltung, die einfach funktioniert?",
"ctaDescription": "Fordern Sie einen kostenlosen Testzugang an — oder lassen Sie sich persönlich beraten. Telefon: 09451 9499-09.", "ctaDescription": "Fordern Sie einen kostenlosen Testzugang an — oder lassen Sie sich persönlich beraten. Telefon: 09451 9499-09.",
"ctaButtonPrimary": "Kostenlosen Testzugang anfragen", "ctaButtonPrimary": "Kostenlosen Testzugang anfragen",

View File

@@ -13,7 +13,7 @@
"faq": "FAQ", "faq": "FAQ",
"faqSubtitle": "Frequently asked questions about MYeasyCMS", "faqSubtitle": "Frequently asked questions about MYeasyCMS",
"pricing": "Pricing", "pricing": "Pricing",
"pricingSubtitle": "Plans and pricing options", "pricingSubtitle": "Fair pricing by club size — all features included",
"backToBlog": "Back to blog", "backToBlog": "Back to blog",
"noPosts": "No posts found", "noPosts": "No posts found",
"blogPaginationNext": "Next Page", "blogPaginationNext": "Next Page",
@@ -43,28 +43,23 @@
"contactErrorDescription": "An error occurred while sending your message. Please try again later", "contactErrorDescription": "An error occurred while sending your message. Please try again later",
"footerDescription": "Association and federation management from Bavaria — personal, reliable, and fair since 2004. Developed by Com.BISS GmbH, Schierling.", "footerDescription": "Association and federation management from Bavaria — personal, reliable, and fair since 2004. Developed by Com.BISS GmbH, Schierling.",
"copyright": "© 2004{year} Com.BISS GmbH. All Rights Reserved.", "copyright": "© 2004{year} Com.BISS GmbH. All Rights Reserved.",
"heroPill": "Since 2004 — 22 years of experience", "heroPill": "Since 2004 — 22 years of experience",
"heroTitle": "Association management that grows with you", "heroTitle": "Association management that grows with you",
"heroTitleLine1": "Association management that", "heroTitleLine1": "Association management that",
"heroTitleLine2": "grows with you", "heroTitleLine2": "grows with you",
"heroSubtitle": "From member management to SEPA direct debit — the software trusted by associations and federations across Bavaria for two decades. 69,000 managed members, 90+ connected organizations.", "heroSubtitle": "From member management to SEPA direct debit — the software trusted by associations and federations across Bavaria for two decades. 69,000 managed members, 90+ connected organizations.",
"trustedBy": "Trusted by associations and federations across Bavaria", "trustedBy": "Trusted by associations and federations across Bavaria",
"trustAssociations": "3 District Fishing Federations", "trustAssociations": "3 District Fishing Federations",
"trustSchools": "Adult Education Centers", "trustSchools": "Adult Education Centers",
"trustClubs": "90+ Connected Clubs", "trustClubs": "90+ Connected Clubs",
"trustOrganizations": "City of Regensburg since 2010", "trustOrganizations": "City of Regensburg since 2010",
"statMembers": "Members managed", "statMembers": "Members managed",
"statOrganizations": "Organizations", "statOrganizations": "Organizations",
"statYears": "Years of experience", "statYears": "Years of experience",
"statFederations": "District federations", "statFederations": "District federations",
"featuresHeading": "Everything your organization needs", "featuresHeading": "Everything your organization needs",
"featuresSubheading": "MYeasyCMS was built specifically for associations and federations — modular, web-based, accessible from any browser.", "featuresSubheading": "MYeasyCMS was built specifically for associations and federations — modular, web-based, accessible from any browser.",
"featuresLabel": "Core Modules", "featuresLabel": "Core Modules",
"featureMembersTitle": "Member Management", "featureMembersTitle": "Member Management",
"featureMembersDesc": "Master data, contact information, mandates, honors, history, and notes — all in one place. With departments, dues tracking, and membership cards.", "featureMembersDesc": "Master data, contact information, mandates, honors, history, and notes — all in one place. With departments, dues tracking, and membership cards.",
"featureCoursesTitle": "Course Management", "featureCoursesTitle": "Course Management",
@@ -77,10 +72,8 @@
"featureFinanceDesc": "Dues and fee management, SEPA direct debit mandates, XML export, and account management by fiscal year. Invoices and payments under control.", "featureFinanceDesc": "Dues and fee management, SEPA direct debit mandates, XML export, and account management by fiscal year. Invoices and payments under control.",
"featureNewsletterTitle": "Email & Newsletter", "featureNewsletterTitle": "Email & Newsletter",
"featureNewsletterDesc": "Email communication with members and newsletter distribution with templates. Keep your members informed.", "featureNewsletterDesc": "Email communication with members and newsletter distribution with templates. Keep your members informed.",
"showcaseHeading": "A powerful dashboard at a glance", "showcaseHeading": "A powerful dashboard at a glance",
"showcaseDescription": "Get a complete overview of your organization — members, courses, open invoices, and events — all from one central place. Quick actions for the most common tasks.", "showcaseDescription": "Get a complete overview of your organization — members, courses, open invoices, and events — all from one central place. Quick actions for the most common tasks.",
"testimonialsHeading": "What our customers say", "testimonialsHeading": "What our customers say",
"testimonialsSubheading": "Organizations across Bavaria trust MYeasyCMS for their daily work.", "testimonialsSubheading": "Organizations across Bavaria trust MYeasyCMS for their daily work.",
"testimonial1Quote": "MYeasyCMS has simplified our member management enormously. The personal support is unmatched.", "testimonial1Quote": "MYeasyCMS has simplified our member management enormously. The personal support is unmatched.",
@@ -92,18 +85,15 @@
"testimonial3Quote": "The SEPA integration alone saves us hours every month. And the team implements our requests faster than any provider we have worked with.", "testimonial3Quote": "The SEPA integration alone saves us hours every month. And the team implements our requests faster than any provider we have worked with.",
"testimonial3Name": "Sports Association", "testimonial3Name": "Sports Association",
"testimonial3Role": "Schierling, Customer since 2010", "testimonial3Role": "Schierling, Customer since 2010",
"additionalFeaturesHeading": "And there's more", "additionalFeaturesHeading": "And there's more",
"additionalFeaturesSubheading": "Additional tools that simplify every aspect of daily association work.", "additionalFeaturesSubheading": "Additional tools that simplify every aspect of daily association work.",
"additionalFeaturesLabel": "More Features", "additionalFeaturesLabel": "More Features",
"featureDocumentsTitle": "Documents & Cards", "featureDocumentsTitle": "Documents & Cards",
"featureDocumentsDesc": "Membership cards, invoices, labels, reports, letters, and certificates — generated from templates, exportable as PDF and Excel.", "featureDocumentsDesc": "Membership cards, invoices, labels, reports, letters, and certificates — generated from templates, exportable as PDF and Excel.",
"featureSiteBuilderTitle": "Club Website", "featureSiteBuilderTitle": "Club Website",
"featureSiteBuilderDesc": "Create your club's public website without programming — with a drag-and-drop editor, events, and course offerings directly from the CMS.", "featureSiteBuilderDesc": "Create your club's public website without programming — with a drag-and-drop editor, events, and course offerings directly from the CMS.",
"featureModulesTitle": "Custom Modules", "featureModulesTitle": "Custom Modules",
"featureModulesDesc": "Extend the platform with custom data modules for waters, catch books, work duties, or any other club data.", "featureModulesDesc": "Extend the platform with custom data modules for waters, catch books, work duties, or any other club data.",
"whyChooseHeading": "Why organizations trust Com.BISS", "whyChooseHeading": "Why organizations trust Com.BISS",
"whyChooseDescription": "In 2004, five women came together and founded a web agency. Since then, we've worked hand in hand with our customers — personal, fair, and reliable. Managing directors: Brit Schiergl and Elisabeth Zehetbauer.", "whyChooseDescription": "In 2004, five women came together and founded a web agency. Since then, we've worked hand in hand with our customers — personal, fair, and reliable. Managing directors: Brit Schiergl and Elisabeth Zehetbauer.",
"whyResponsiveTitle": "Personal", "whyResponsiveTitle": "Personal",
@@ -114,7 +104,6 @@
"whySupportDesc": "Fair prices, fast and flexible implementation of customer requests. New features and changes at fixed prices — no surprises.", "whySupportDesc": "Fair prices, fast and flexible implementation of customer requests. New features and changes at fixed prices — no surprises.",
"whyGdprTitle": "100% Servers in Germany", "whyGdprTitle": "100% Servers in Germany",
"whyGdprDesc": "Based in Schierling near Regensburg. Servers in Germany. GDPR compliant. Your data stays here.", "whyGdprDesc": "Based in Schierling near Regensburg. Servers in Germany. GDPR compliant. Your data stays here.",
"howItWorksHeading": "Get started in three simple steps", "howItWorksHeading": "Get started in three simple steps",
"howItWorksSubheading": "Setting up your organization on MYeasyCMS takes just minutes.", "howItWorksSubheading": "Setting up your organization on MYeasyCMS takes just minutes.",
"howStep1Title": "Request test access", "howStep1Title": "Request test access",
@@ -123,12 +112,10 @@
"howStep2Desc": "Activate the modules you need — members, dues, waters, SEPA — and customize them to fit your organization.", "howStep2Desc": "Activate the modules you need — members, dues, waters, SEPA — and customize them to fit your organization.",
"howStep3Title": "Start managing", "howStep3Title": "Start managing",
"howStep3Desc": "Import your existing member lists and get started right away — with personal support from our team.", "howStep3Desc": "Import your existing member lists and get started right away — with personal support from our team.",
"pricingPillLabel": "Fair Pricing", "pricingPillLabel": "Fair Pricing",
"pricingPillText": "No limit on number of users", "pricingPillText": "No user limits",
"pricingHeading": "Fair pricing based on club size", "pricingHeading": "Fair pricing by club size",
"pricingSubheading": "All features included. No hidden costs. Personal setup with every plan.", "pricingSubheading": "All features included. No hidden costs. Personal onboarding with every plan.",
"ctaHeading": "Ready for management that simply works?", "ctaHeading": "Ready for management that simply works?",
"ctaDescription": "Request a free test account — or get personal consultation. Phone: 09451 9499-09.", "ctaDescription": "Request a free test account — or get personal consultation. Phone: 09451 9499-09.",
"ctaButtonPrimary": "Request free test access", "ctaButtonPrimary": "Request free test access",