Marketing packages now use localized name/description data plus seeded placeholder-

driven breakdown tables, with frontend/cards/dialog updated accordingly (database/
  migrations/2025_10_17_000001_add_description_table_to_packages.php, database/
  migrations/2025_10_17_000002_add_translation_columns_to_packages.php, database/seeders/PackageSeeder.php, app/
  Http/Controllers/MarketingController.php, resources/js/pages/marketing/Packages.tsx).
  Filament Package resource gains locale tabs, markdown editor, numeric/toggle inputs, and simplified feature
  management (app/Filament/Resources/PackageResource.php, app/Filament/Resources/PackageResource/Pages/
  CreatePackage.php, .../EditPackage.php).
  Legal pages now render markdown-backed content inside the main layout via a new controller/view route setup and
  updated footer links (app/Http/Controllers/LegalPageController.php, routes/web.php, resources/views/partials/
  footer.blade.php, resources/js/pages/legal/Show.tsx, remove old static pages).
  Translation files and shared assets updated to cover new marketing/legal strings and styling tweaks (public/
  lang/*/marketing.json, resources/lang/*/marketing.php, resources/css/app.css, resources/js/admin/components/
  LanguageSwitcher.tsx).
This commit is contained in:
Codex Agent
2025-10-17 21:20:54 +02:00
parent 25e8f0511b
commit 48a2974152
30 changed files with 1702 additions and 711 deletions

View File

@@ -29,5 +29,8 @@
"data_security_desc": "Wir verwenden HTTPS, verschlüsselte Speicherung (Passwörter hashed) und regelmäßige Backups. Zugriff auf Daten ist rollebasierend beschränkt (Tenant vs SuperAdmin).",
"and": "und",
"stripe_privacy": "Stripe Datenschutz",
"paypal_privacy": "PayPal Datenschutz"
}
"paypal_privacy": "PayPal Datenschutz",
"agb": "Allgemeine Geschäftsbedingungen",
"effective_from": "Gültig seit {{date}}",
"version": "Version {{version}}"
}

View File

@@ -106,6 +106,17 @@
"feature_reseller_dashboard": "Reseller-Dashboard",
"feature_custom_branding": "Benutzerdefiniertes Branding",
"feature_advanced_reporting": "Erweiterte Berichterstattung",
"badge_most_popular": "Beliebteste Wahl",
"badge_best_value": "Bestes Preis-Leistungs-Verhältnis",
"badge_starter": "Perfekt für den Start",
"billing_per_event": "pro Event",
"billing_per_year": "pro Jahr",
"more_features": "+{{count}} weitere Features",
"feature_overview": "Feature-Überblick",
"order_hint": "Sofort startklar keine versteckten Kosten, sichere Zahlung via Stripe oder PayPal.",
"features_label": "Features",
"breakdown_label": "Leistungsübersicht",
"limits_label": "Limits & Kapazitäten",
"for_endcustomers": "Für Endkunden",
"for_resellers": "Für Reseller",
"details_show": "Details anzeigen",
@@ -419,4 +430,4 @@
"google_coming_soon": "Google-Login kommt bald im Comfort-Delta."
}
}
}
}

View File

@@ -26,5 +26,8 @@
"account_deletion": "Account Deletion",
"account_deletion_desc": "You have the right to have your personal data deleted at any time (right to erasure, Art. 17 GDPR). Contact us at [Email] to delete your account. All associated data (events, photos, purchases) will be deleted, unless legal retention obligations exist.",
"data_security": "Data Security",
"data_security_desc": "We use HTTPS, encrypted storage (passwords hashed) and regular backups. Access to data is role-based restricted (Tenant vs SuperAdmin)."
}
"data_security_desc": "We use HTTPS, encrypted storage (passwords hashed) and regular backups. Access to data is role-based restricted (Tenant vs SuperAdmin).",
"agb": "Terms & Conditions",
"effective_from": "Effective from {{date}}",
"version": "Version {{version}}"
}

View File

@@ -96,6 +96,17 @@
"feature_reseller_dashboard": "Reseller Dashboard",
"feature_custom_branding": "Custom Branding",
"feature_advanced_reporting": "Advanced Reporting",
"badge_most_popular": "Most Popular",
"badge_best_value": "Best Value",
"badge_starter": "Perfect Starter",
"billing_per_event": "per event",
"billing_per_year": "per year",
"more_features": "+{{count}} more features",
"feature_overview": "Feature overview",
"order_hint": "Launch instantly secure Stripe or PayPal checkout, no hidden fees.",
"features_label": "Features",
"breakdown_label": "At-a-glance",
"limits_label": "Limits & Capacity",
"for_endcustomers": "For End Customers",
"for_resellers": "For Resellers",
"details_show": "Show Details",
@@ -125,6 +136,9 @@
"customer_opinions": "Customer Opinions",
"errors": {
"select_package": "Please select a package."
},
"currency": {
"euro": "€"
}
},
"blog": {
@@ -410,4 +424,4 @@
"google_coming_soon": "Google Login coming soon in Comfort-Delta."
}
}
}
}