chore: update marketing site

This commit is contained in:
Mythie
2024-08-20 23:23:36 +10:00
parent 2c9136498c
commit 9178dbd3c1
13 changed files with 136 additions and 76 deletions

View File

@ -44,6 +44,10 @@ export default async function OSSFriendsPage() {
src={backgroundPattern} src={backgroundPattern}
alt="background pattern" alt="background pattern"
className="-mr-[15vw] -mt-[15vh] h-full max-h-[150vh] scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:-mr-[50vw] md:scale-150 lg:scale-[175%]" className="-mr-[15vw] -mt-[15vh] h-full max-h-[150vh] scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:-mr-[50vw] md:scale-150 lg:scale-[175%]"
style={{
mask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 67%)',
WebkitMask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 67%)',
}}
/> />
</div> </div>
</div> </div>

View File

@ -26,6 +26,10 @@ export default function NotFound() {
src={backgroundPattern} src={backgroundPattern}
alt="background pattern" alt="background pattern"
className="-mr-[50vw] -mt-[15vh] h-full scale-100 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-100 lg:scale-[100%]" className="-mr-[50vw] -mt-[15vh] h-full scale-100 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-100 lg:scale-[100%]"
style={{
mask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 67%)',
WebkitMask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 67%)',
}}
priority priority
/> />
</motion.div> </motion.div>

View File

@ -2,11 +2,14 @@
import React, { useCallback, useEffect, useRef, useState } from 'react'; import React, { useCallback, useEffect, useRef, useState } from 'react';
import Link from 'next/link';
import { Trans, msg } from '@lingui/macro'; import { Trans, msg } from '@lingui/macro';
import { useLingui } from '@lingui/react'; import { useLingui } from '@lingui/react';
import type { AutoplayType } from 'embla-carousel-autoplay'; import type { AutoplayType } from 'embla-carousel-autoplay';
import Autoplay from 'embla-carousel-autoplay'; import Autoplay from 'embla-carousel-autoplay';
import useEmblaCarousel from 'embla-carousel-react'; import useEmblaCarousel from 'embla-carousel-react';
import { usePlausible } from 'next-plausible';
import { useTheme } from 'next-themes'; import { useTheme } from 'next-themes';
import { Card } from '@documenso/ui/primitives/card'; import { Card } from '@documenso/ui/primitives/card';
@ -61,6 +64,7 @@ const SLIDES = [
export const Carousel = () => { export const Carousel = () => {
const { _ } = useLingui(); const { _ } = useLingui();
const event = usePlausible();
const slides = SLIDES; const slides = SLIDES;
const [_isPlaying, setIsPlaying] = useState(false); const [_isPlaying, setIsPlaying] = useState(false);
@ -238,7 +242,10 @@ export const Carousel = () => {
if (!mounted) return null; if (!mounted) return null;
return ( return (
<> <>
<Card className="mx-auto mt-12 w-full max-w-4xl rounded-2xl p-1 before:rounded-2xl" gradient> <Card
className="relative mx-auto mt-12 w-full max-w-4xl rounded-2xl p-1 before:rounded-2xl"
gradient
>
<div className="overflow-hidden rounded-xl" ref={emblaRef}> <div className="overflow-hidden rounded-xl" ref={emblaRef}>
<div className="flex touch-pan-y rounded-xl"> <div className="flex touch-pan-y rounded-xl">
{slides.map((slide, index) => ( {slides.map((slide, index) => (
@ -269,6 +276,19 @@ export const Carousel = () => {
</span> </span>
<Progress value={progress} className="h-1" /> <Progress value={progress} className="h-1" />
</div> </div>
<Link
href="https://documen.so/book-a-demo"
className="bg-foreground/70 dark:bg-foreground/80 absolute inset-0 hidden flex-col items-center justify-center gap-y-2 rounded-xl opacity-0 backdrop-blur-[2px] transition-opacity group-hover:opacity-100 md:flex"
onClick={() => event('view-demo')}
>
<span className="text-background max-w-[60ch] text-2xl font-semibold">Book a Demo</span>
<span className="text-background max-w-[60ch] text-center text-sm">
Want to learn more about Documenso and how it works? Book a demo today! Our founders
will walk you through the application and answer any questions you may have regarding
usage, integration, and more.
</span>
</Link>
</Card> </Card>
<div className="mx-auto mt-6 w-full max-w-4xl px-2 sm:mt-12"> <div className="mx-auto mt-6 w-full max-w-4xl px-2 sm:mt-12">

View File

@ -24,6 +24,10 @@ export const FasterSmarterBeautifulBento = ({
src={backgroundPattern} src={backgroundPattern}
alt="background pattern" alt="background pattern"
className="h-full scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-150 lg:scale-[175%]" className="h-full scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-150 lg:scale-[175%]"
style={{
mask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 67%)',
WebkitMask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 67%)',
}}
/> />
</div> </div>
<h2 className="px-0 text-[22px] font-semibold md:px-12 md:text-4xl lg:px-24"> <h2 className="px-0 text-[22px] font-semibold md:px-12 md:text-4xl lg:px-24">

View File

@ -86,6 +86,10 @@ export const Hero = ({ className, ...props }: HeroProps) => {
src={backgroundPattern} src={backgroundPattern}
alt="background pattern" alt="background pattern"
className="-mr-[50vw] -mt-[15vh] h-full scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-150 lg:scale-[175%]" className="-mr-[50vw] -mt-[15vh] h-full scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-150 lg:scale-[175%]"
style={{
mask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
WebkitMask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
}}
/> />
</motion.div> </motion.div>
</div> </div>

View File

@ -21,6 +21,10 @@ export const OpenBuildTemplateBento = ({ className, ...props }: OpenBuildTemplat
src={backgroundPattern} src={backgroundPattern}
alt="background pattern" alt="background pattern"
className="h-full scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-150 lg:scale-[175%]" className="h-full scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-150 lg:scale-[175%]"
style={{
mask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
WebkitMask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
}}
/> />
</div> </div>
<h2 className="px-0 text-[22px] font-semibold md:px-12 md:text-4xl lg:px-24"> <h2 className="px-0 text-[22px] font-semibold md:px-12 md:text-4xl lg:px-24">

View File

@ -25,6 +25,10 @@ export const ShareConnectPaidWidgetBento = ({
src={backgroundPattern} src={backgroundPattern}
alt="background pattern" alt="background pattern"
className="h-full scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-150 lg:scale-[175%]" className="h-full scale-125 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-150 lg:scale-[175%]"
style={{
mask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
WebkitMask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
}}
/> />
</div> </div>
<h2 className="px-0 text-[22px] font-semibold md:px-12 md:text-4xl lg:px-24"> <h2 className="px-0 text-[22px] font-semibold md:px-12 md:text-4xl lg:px-24">
@ -39,7 +43,7 @@ export const ShareConnectPaidWidgetBento = ({
<CardContent className="grid grid-cols-1 gap-8 p-6"> <CardContent className="grid grid-cols-1 gap-8 p-6">
<p className="text-foreground/80 leading-relaxed"> <p className="text-foreground/80 leading-relaxed">
<strong className="block"> <strong className="block">
<Trans>Easy Sharing (Soon).</Trans> <Trans>Easy Sharing.</Trans>
</strong> </strong>
<Trans>Receive your personal link to share with everyone you care about.</Trans> <Trans>Receive your personal link to share with everyone you care about.</Trans>
</p> </p>

View File

@ -17,6 +17,10 @@ export default function UnauthenticatedLayout({ children }: UnauthenticatedLayou
src={backgroundPattern} src={backgroundPattern}
alt="background pattern" alt="background pattern"
className="dark:brightness-95 dark:contrast-[70%] dark:invert dark:sepia" className="dark:brightness-95 dark:contrast-[70%] dark:invert dark:sepia"
style={{
mask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
WebkitMask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
}}
/> />
</div> </div>

View File

@ -29,6 +29,10 @@ export default function NotFoundPartial({ children }: NotFoundPartialProps) {
src={backgroundPattern} src={backgroundPattern}
alt="background pattern" alt="background pattern"
className="-mr-[50vw] -mt-[15vh] h-full scale-100 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-100 lg:scale-[100%]" className="-mr-[50vw] -mt-[15vh] h-full scale-100 object-cover dark:contrast-[70%] dark:invert dark:sepia md:scale-100 lg:scale-[100%]"
style={{
mask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
WebkitMask: 'radial-gradient(rgba(255, 255, 255, 1) 0%, transparent 80%)',
}}
priority priority
/> />
</motion.div> </motion.div>

File diff suppressed because one or more lines are too long

View File

@ -30,7 +30,7 @@ msgstr "5 Standarddokumente pro Monat"
msgid "5 Users Included" msgid "5 Users Included"
msgstr "5 Benutzer inbegriffen" msgstr "5 Benutzer inbegriffen"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:30 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:34
msgid "A 10x better signing experience." msgid "A 10x better signing experience."
msgstr "Eine 10x bessere Signaturerfahrung." msgstr "Eine 10x bessere Signaturerfahrung."
@ -52,11 +52,11 @@ msgstr "Erhobener Betrag"
msgid "API Access" msgid "API Access"
msgstr "API-Zugriff" msgstr "API-Zugriff"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:63 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:67
msgid "Beautiful." msgid "Beautiful."
msgstr "Schön." msgstr "Schön."
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:65 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:69
msgid "Because signing should be celebrated. Thats why we care about the smallest detail in our product." msgid "Because signing should be celebrated. Thats why we care about the smallest detail in our product."
msgstr "Weil Unterschriften gefeiert werden sollten. Deshalb kümmern wir uns um jedes kleinste Detail in unserem Produkt." msgstr "Weil Unterschriften gefeiert werden sollten. Deshalb kümmern wir uns um jedes kleinste Detail in unserem Produkt."
@ -66,7 +66,7 @@ msgstr "Weil Unterschriften gefeiert werden sollten. Deshalb kümmern wir uns um
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:60 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:64
msgid "Build on top." msgid "Build on top."
msgstr "Aufbauen oben drauf." msgstr "Aufbauen oben drauf."
@ -82,7 +82,7 @@ msgstr "Karrieren"
msgid "Changelog" msgid "Changelog"
msgstr "Änderungsprotokoll" msgstr "Änderungsprotokoll"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:81 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:85
msgid "Choose a template from the community app store. Or submit your own template for others to use." msgid "Choose a template from the community app store. Or submit your own template for others to use."
msgstr "Wählen Sie eine Vorlage aus dem Community-App-Store. Oder reichen Sie Ihre eigene Vorlage ein, damit andere sie benutzen können." msgstr "Wählen Sie eine Vorlage aus dem Community-App-Store. Oder reichen Sie Ihre eigene Vorlage ein, damit andere sie benutzen können."
@ -98,7 +98,7 @@ msgstr "Fertige Dokumente"
msgid "Completed Documents per Month" msgid "Completed Documents per Month"
msgstr "Fertige Dokumente pro Monat" msgstr "Fertige Dokumente pro Monat"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:61 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:65
msgid "Connections" msgid "Connections"
msgstr "Verbindungen" msgstr "Verbindungen"
@ -106,7 +106,7 @@ msgstr "Verbindungen"
msgid "Contact Us" msgid "Contact Us"
msgstr "Kontaktiere uns" msgstr "Kontaktiere uns"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:63 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:67
msgid "Create connections and automations with Zapier and more to integrate with your favorite tools." msgid "Create connections and automations with Zapier and more to integrate with your favorite tools."
msgstr "Erstellen Sie Verbindungen und Automatisierungen mit Zapier und mehr, um sich mit Ihren Lieblingstools zu integrieren." msgstr "Erstellen Sie Verbindungen und Automatisierungen mit Zapier und mehr, um sich mit Ihren Lieblingstools zu integrieren."
@ -118,7 +118,7 @@ msgstr "Erstellen Sie Ihr Konto und beginnen Sie mit der Nutzung modernster Doku
msgid "Customers with an Active Subscriptions." msgid "Customers with an Active Subscriptions."
msgstr "Kunden mit einer aktiven Abonnements." msgstr "Kunden mit einer aktiven Abonnements."
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:29 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:33
msgid "Customise and expand." msgid "Customise and expand."
msgstr "Anpassen und erweitern." msgstr "Anpassen und erweitern."
@ -130,7 +130,7 @@ msgstr "Design"
msgid "Designed for every stage of your journey." msgid "Designed for every stage of your journey."
msgstr "Entwickelt für jede Phase Ihrer Reise." msgstr "Entwickelt für jede Phase Ihrer Reise."
#: apps/marketing/src/components/(marketing)/carousel.tsx:37 #: apps/marketing/src/components/(marketing)/carousel.tsx:40
msgid "Direct Link" msgid "Direct Link"
msgstr "Direktlink" msgstr "Direktlink"
@ -142,7 +142,7 @@ msgstr "Documenso ist eine Gemeinschaftsanstrengung, um ein offenes und lebendig
msgid "Documenso on X" msgid "Documenso on X"
msgstr "Documenso auf X" msgstr "Documenso auf X"
#: apps/marketing/src/components/(marketing)/hero.tsx:100 #: apps/marketing/src/components/(marketing)/hero.tsx:104
msgid "Document signing,<0/>finally open source." msgid "Document signing,<0/>finally open source."
msgstr "Unterschriften,<0/>endlich Open Source." msgstr "Unterschriften,<0/>endlich Open Source."
@ -152,13 +152,17 @@ msgstr "Unterschriften,<0/>endlich Open Source."
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentation" msgstr "Dokumentation"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:106 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:110
msgid "Easily embed Documenso into your product. Simply copy and paste our react widget into your application." msgid "Easily embed Documenso into your product. Simply copy and paste our react widget into your application."
msgstr "Betten Sie Documenso ganz einfach in Ihr Produkt ein. Kopieren und fügen Sie einfach unser React-Widget in Ihre Anwendung ein." msgstr "Betten Sie Documenso ganz einfach in Ihr Produkt ein. Kopieren und fügen Sie einfach unser React-Widget in Ihre Anwendung ein."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:42 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:42
msgid "Easy Sharing (Soon)." #~ msgid "Easy Sharing (Soon)."
msgstr "Einfaches Teilen (Bald)." #~ msgstr "Einfaches Teilen (Bald)."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:46
msgid "Easy Sharing."
msgstr ""
#: apps/marketing/src/components/(marketing)/pricing-table.tsx:148 #: apps/marketing/src/components/(marketing)/pricing-table.tsx:148
#: apps/marketing/src/components/(marketing)/pricing-table.tsx:192 #: apps/marketing/src/components/(marketing)/pricing-table.tsx:192
@ -177,11 +181,11 @@ msgstr "Enterprise-Konformität, Lizenz- oder technische Bedürfnisse?"
msgid "Everything you need for a great signing experience." msgid "Everything you need for a great signing experience."
msgstr "Alles, was Sie für ein großartiges Signaturerlebnis benötigen." msgstr "Alles, was Sie für ein großartiges Signaturerlebnis benötigen."
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:41 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:45
msgid "Fast." msgid "Fast."
msgstr "Schnell." msgstr "Schnell."
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:32 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:36
msgid "Faster, smarter and more beautiful." msgid "Faster, smarter and more beautiful."
msgstr "Schneller, intelligenter und schöner." msgstr "Schneller, intelligenter und schöner."
@ -217,7 +221,7 @@ msgstr "Aus dem Blog"
msgid "Full-Time" msgid "Full-Time"
msgstr "Vollzeit" msgstr "Vollzeit"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:83 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:87
msgid "Get paid (Soon)." msgid "Get paid (Soon)."
msgstr "Lassen Sie sich bezahlen (Bald)." msgstr "Lassen Sie sich bezahlen (Bald)."
@ -269,11 +273,11 @@ msgstr "Wie gehen Sie mit meinen Daten um?"
msgid "Individual" msgid "Individual"
msgstr "Einzelperson" msgstr "Einzelperson"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:85 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:89
msgid "Integrated payments with Stripe so you dont have to worry about getting paid." msgid "Integrated payments with Stripe so you dont have to worry about getting paid."
msgstr "Integrierte Zahlungen mit Stripe, sodass Sie sich keine Sorgen ums Bezahlen machen müssen." msgstr "Integrierte Zahlungen mit Stripe, sodass Sie sich keine Sorgen ums Bezahlen machen müssen."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:31 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:35
msgid "Integrates with all your favourite tools." msgid "Integrates with all your favourite tools."
msgstr "Integriert sich mit all Ihren Lieblingstools." msgstr "Integriert sich mit all Ihren Lieblingstools."
@ -281,7 +285,7 @@ msgstr "Integriert sich mit all Ihren Lieblingstools."
msgid "Is there more?" msgid "Is there more?"
msgstr "Gibt es mehr?" msgstr "Gibt es mehr?"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:40 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:44
msgid "Its up to you. Either clone our repository or rely on our easy to use hosting solution." msgid "Its up to you. Either clone our repository or rely on our easy to use hosting solution."
msgstr "Es liegt an Ihnen. Entweder klonen Sie unser Repository oder nutzen unsere einfach zu bedienende Hosting-Lösung." msgstr "Es liegt an Ihnen. Entweder klonen Sie unser Repository oder nutzen unsere einfach zu bedienende Hosting-Lösung."
@ -297,7 +301,7 @@ msgstr "Treten Sie der Open Signing-Bewegung bei"
msgid "Location" msgid "Location"
msgstr "Standort" msgstr "Standort"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:62 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:66
msgid "Make it your own through advanced customization and adjustability." msgid "Make it your own through advanced customization and adjustability."
msgstr "Machen Sie es zu Ihrem eigenen durch erweiterte Anpassung und Einstellbarkeit." msgstr "Machen Sie es zu Ihrem eigenen durch erweiterte Anpassung und Einstellbarkeit."
@ -328,7 +332,7 @@ msgid "No credit card required"
msgstr "Keine Kreditkarte erforderlich" msgstr "Keine Kreditkarte erforderlich"
#: apps/marketing/src/components/(marketing)/callout.tsx:29 #: apps/marketing/src/components/(marketing)/callout.tsx:29
#: apps/marketing/src/components/(marketing)/hero.tsx:121 #: apps/marketing/src/components/(marketing)/hero.tsx:125
msgid "No Credit Card required" msgid "No Credit Card required"
msgstr "Keine Kreditkarte erforderlich" msgstr "Keine Kreditkarte erforderlich"
@ -341,7 +345,7 @@ msgstr "Keines dieser Angebote passt zu Ihnen? Versuchen Sie das Selbst-Hosting!
msgid "Open Issues" msgid "Open Issues"
msgstr "Offene Issues" msgstr "Offene Issues"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:38 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:42
msgid "Open Source or Hosted." msgid "Open Source or Hosted."
msgstr "Open Source oder Hosted." msgstr "Open Source oder Hosted."
@ -356,7 +360,7 @@ msgstr "Offenes Startup"
msgid "OSS Friends" msgid "OSS Friends"
msgstr "OSS-Freunde" msgstr "OSS-Freunde"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:87 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:91
msgid "Our custom templates come with smart rules that can help you save time and energy." msgid "Our custom templates come with smart rules that can help you save time and energy."
msgstr "Unsere benutzerdefinierten Vorlagen verfügen über intelligente Regeln, die Ihnen Zeit und Energie sparen können." msgstr "Unsere benutzerdefinierten Vorlagen verfügen über intelligente Regeln, die Ihnen Zeit und Energie sparen können."
@ -392,15 +396,15 @@ msgstr "Preise"
msgid "Privacy" msgid "Privacy"
msgstr "Datenschutz" msgstr "Datenschutz"
#: apps/marketing/src/components/(marketing)/carousel.tsx:55 #: apps/marketing/src/components/(marketing)/carousel.tsx:58
msgid "Profile" msgid "Profile"
msgstr "Profil" msgstr "Profil"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:104 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:108
msgid "React Widget (Soon)." msgid "React Widget (Soon)."
msgstr "React Widget (Demnächst)." msgstr "React Widget (Demnächst)."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:44 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:48
msgid "Receive your personal link to share with everyone you care about." msgid "Receive your personal link to share with everyone you care about."
msgstr "Erhalten Sie Ihren persönlichen Link zum Teilen mit allen, die Ihnen wichtig sind." msgstr "Erhalten Sie Ihren persönlichen Link zum Teilen mit allen, die Ihnen wichtig sind."
@ -425,7 +429,7 @@ msgstr "Sprachen suchen..."
msgid "Securely. Our data centers are located in Frankfurt (Germany), giving us the best local privacy laws. We are very aware of the sensitive nature of our data and follow best practices to ensure the security and integrity of the data entrusted to us." msgid "Securely. Our data centers are located in Frankfurt (Germany), giving us the best local privacy laws. We are very aware of the sensitive nature of our data and follow best practices to ensure the security and integrity of the data entrusted to us."
msgstr "Sicher. Unsere Rechenzentren befinden sich in Frankfurt (Deutschland) und bieten uns die besten lokalen Datenschutzgesetze. Uns ist die sensible Natur unserer Daten sehr bewusst und wir folgen bewährten Praktiken, um die Sicherheit und Integrität der uns anvertrauten Daten zu gewährleisten." msgstr "Sicher. Unsere Rechenzentren befinden sich in Frankfurt (Deutschland) und bieten uns die besten lokalen Datenschutzgesetze. Uns ist die sensible Natur unserer Daten sehr bewusst und wir folgen bewährten Praktiken, um die Sicherheit und Integrität der uns anvertrauten Daten zu gewährleisten."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:33 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:37
msgid "Send, connect, receive and embed everywhere." msgid "Send, connect, receive and embed everywhere."
msgstr "Überall senden, verbinden, empfangen und einbetten." msgstr "Überall senden, verbinden, empfangen und einbetten."
@ -447,7 +451,7 @@ msgstr "Anmelden"
msgid "Sign up" msgid "Sign up"
msgstr "Registrieren" msgstr "Registrieren"
#: apps/marketing/src/components/(marketing)/carousel.tsx:19 #: apps/marketing/src/components/(marketing)/carousel.tsx:22
msgid "Signing Process" msgid "Signing Process"
msgstr "Signaturprozess" msgstr "Signaturprozess"
@ -457,11 +461,11 @@ msgstr "Signaturprozess"
msgid "Signup Now" msgid "Signup Now"
msgstr "Jetzt registrieren" msgstr "Jetzt registrieren"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:85 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:89
msgid "Smart." msgid "Smart."
msgstr "Intelligent." msgstr "Intelligent."
#: apps/marketing/src/components/(marketing)/hero.tsx:128 #: apps/marketing/src/components/(marketing)/hero.tsx:132
msgid "Star on GitHub" msgid "Star on GitHub"
msgstr "Auf GitHub favorisieren" msgstr "Auf GitHub favorisieren"
@ -487,12 +491,12 @@ msgstr "Team"
msgid "Team Inbox" msgid "Team Inbox"
msgstr "Team-Posteingang" msgstr "Team-Posteingang"
#: apps/marketing/src/components/(marketing)/carousel.tsx:25 #: apps/marketing/src/components/(marketing)/carousel.tsx:28
#: apps/marketing/src/components/(marketing)/pricing-table.tsx:162 #: apps/marketing/src/components/(marketing)/pricing-table.tsx:162
msgid "Teams" msgid "Teams"
msgstr "Teams" msgstr "Teams"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:79 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:83
msgid "Template Store (Soon)." msgid "Template Store (Soon)."
msgstr "Vorlagen-Shop (Demnächst)." msgstr "Vorlagen-Shop (Demnächst)."
@ -528,12 +532,12 @@ msgstr "Insgesamt Finanzierungsvolumen"
msgid "Total Users" msgid "Total Users"
msgstr "Gesamtanzahl der Benutzer" msgstr "Gesamtanzahl der Benutzer"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:27 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:31
msgid "Truly your own." msgid "Truly your own."
msgstr "Wirklich Ihr Eigenes." msgstr "Wirklich Ihr Eigenes."
#: apps/marketing/src/components/(marketing)/callout.tsx:27 #: apps/marketing/src/components/(marketing)/callout.tsx:27
#: apps/marketing/src/components/(marketing)/hero.tsx:119 #: apps/marketing/src/components/(marketing)/hero.tsx:123
msgid "Try our Free Plan" msgid "Try our Free Plan"
msgstr "Probieren Sie unseren Gratisplan aus" msgstr "Probieren Sie unseren Gratisplan aus"
@ -566,7 +570,7 @@ msgstr "Wir helfen Ihnen gerne unter <0>support@documenso.com</0> oder <1>in uns
msgid "What is the difference between the plans?" msgid "What is the difference between the plans?"
msgstr "Was ist der Unterschied zwischen den Plänen?" msgstr "Was ist der Unterschied zwischen den Plänen?"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:43 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:47
msgid "When it comes to sending or receiving a contract, you can count on lightning-fast speeds." msgid "When it comes to sending or receiving a contract, you can count on lightning-fast speeds."
msgstr "Wenn es um das Senden oder Empfangen eines Vertrags geht, können Sie auf blitzschnelle Geschwindigkeiten zählen." msgstr "Wenn es um das Senden oder Empfangen eines Vertrags geht, können Sie auf blitzschnelle Geschwindigkeiten zählen."
@ -594,6 +598,6 @@ msgstr "Ja! Documenso wird unter der GNU AGPL V3 Open-Source-Lizenz angeboten. D
msgid "You can self-host Documenso for free or use our ready-to-use hosted version. The hosted version comes with additional support, painless scalability and more. Early adopters will get access to all features we build this year, for no additional cost! Forever! Yes, that includes multiple users per account later. If you want Documenso for your enterprise, we are happy to talk about your needs." msgid "You can self-host Documenso for free or use our ready-to-use hosted version. The hosted version comes with additional support, painless scalability and more. Early adopters will get access to all features we build this year, for no additional cost! Forever! Yes, that includes multiple users per account later. If you want Documenso for your enterprise, we are happy to talk about your needs."
msgstr "Sie können Documenso kostenlos selbst hosten oder unsere sofort einsatzbereite gehostete Version nutzen. Die gehostete Version bietet zusätzlichen Support, schmerzfreie Skalierbarkeit und mehr. Frühzeitige Anwender erhalten in diesem Jahr Zugriff auf alle Funktionen, die wir entwickeln, ohne zusätzliche Kosten! Für immer! Ja, das beinhaltet später mehrere Benutzer pro Konto. Wenn Sie Documenso für Ihr Unternehmen möchten, sprechen wir gerne über Ihre Bedürfnisse." msgstr "Sie können Documenso kostenlos selbst hosten oder unsere sofort einsatzbereite gehostete Version nutzen. Die gehostete Version bietet zusätzlichen Support, schmerzfreie Skalierbarkeit und mehr. Frühzeitige Anwender erhalten in diesem Jahr Zugriff auf alle Funktionen, die wir entwickeln, ohne zusätzliche Kosten! Für immer! Ja, das beinhaltet später mehrere Benutzer pro Konto. Wenn Sie Documenso für Ihr Unternehmen möchten, sprechen wir gerne über Ihre Bedürfnisse."
#: apps/marketing/src/components/(marketing)/carousel.tsx:258 #: apps/marketing/src/components/(marketing)/carousel.tsx:265
msgid "Your browser does not support the video tag." msgid "Your browser does not support the video tag."
msgstr "Ihr Browser unterstützt das Video-Tag nicht." msgstr "Ihr Browser unterstützt das Video-Tag nicht."

File diff suppressed because one or more lines are too long

View File

@ -25,7 +25,7 @@ msgstr "5 standard documents per month"
msgid "5 Users Included" msgid "5 Users Included"
msgstr "5 Users Included" msgstr "5 Users Included"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:30 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:34
msgid "A 10x better signing experience." msgid "A 10x better signing experience."
msgstr "A 10x better signing experience." msgstr "A 10x better signing experience."
@ -47,11 +47,11 @@ msgstr "Amount Raised"
msgid "API Access" msgid "API Access"
msgstr "API Access" msgstr "API Access"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:63 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:67
msgid "Beautiful." msgid "Beautiful."
msgstr "Beautiful." msgstr "Beautiful."
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:65 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:69
msgid "Because signing should be celebrated. Thats why we care about the smallest detail in our product." msgid "Because signing should be celebrated. Thats why we care about the smallest detail in our product."
msgstr "Because signing should be celebrated. Thats why we care about the smallest detail in our product." msgstr "Because signing should be celebrated. Thats why we care about the smallest detail in our product."
@ -61,7 +61,7 @@ msgstr "Because signing should be celebrated. Thats why we care about the sma
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:60 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:64
msgid "Build on top." msgid "Build on top."
msgstr "Build on top." msgstr "Build on top."
@ -77,7 +77,7 @@ msgstr "Careers"
msgid "Changelog" msgid "Changelog"
msgstr "Changelog" msgstr "Changelog"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:81 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:85
msgid "Choose a template from the community app store. Or submit your own template for others to use." msgid "Choose a template from the community app store. Or submit your own template for others to use."
msgstr "Choose a template from the community app store. Or submit your own template for others to use." msgstr "Choose a template from the community app store. Or submit your own template for others to use."
@ -93,7 +93,7 @@ msgstr "Completed Documents"
msgid "Completed Documents per Month" msgid "Completed Documents per Month"
msgstr "Completed Documents per Month" msgstr "Completed Documents per Month"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:61 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:65
msgid "Connections" msgid "Connections"
msgstr "Connections" msgstr "Connections"
@ -101,7 +101,7 @@ msgstr "Connections"
msgid "Contact Us" msgid "Contact Us"
msgstr "Contact Us" msgstr "Contact Us"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:63 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:67
msgid "Create connections and automations with Zapier and more to integrate with your favorite tools." msgid "Create connections and automations with Zapier and more to integrate with your favorite tools."
msgstr "Create connections and automations with Zapier and more to integrate with your favorite tools." msgstr "Create connections and automations with Zapier and more to integrate with your favorite tools."
@ -113,7 +113,7 @@ msgstr "Create your account and start using state-of-the-art document signing. O
msgid "Customers with an Active Subscriptions." msgid "Customers with an Active Subscriptions."
msgstr "Customers with an Active Subscriptions." msgstr "Customers with an Active Subscriptions."
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:29 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:33
msgid "Customise and expand." msgid "Customise and expand."
msgstr "Customise and expand." msgstr "Customise and expand."
@ -125,7 +125,7 @@ msgstr "Design"
msgid "Designed for every stage of your journey." msgid "Designed for every stage of your journey."
msgstr "Designed for every stage of your journey." msgstr "Designed for every stage of your journey."
#: apps/marketing/src/components/(marketing)/carousel.tsx:37 #: apps/marketing/src/components/(marketing)/carousel.tsx:40
msgid "Direct Link" msgid "Direct Link"
msgstr "Direct Link" msgstr "Direct Link"
@ -137,7 +137,7 @@ msgstr "Documenso is a community effort to create an open and vibrant ecosystem
msgid "Documenso on X" msgid "Documenso on X"
msgstr "Documenso on X" msgstr "Documenso on X"
#: apps/marketing/src/components/(marketing)/hero.tsx:100 #: apps/marketing/src/components/(marketing)/hero.tsx:104
msgid "Document signing,<0/>finally open source." msgid "Document signing,<0/>finally open source."
msgstr "Document signing,<0/>finally open source." msgstr "Document signing,<0/>finally open source."
@ -147,13 +147,17 @@ msgstr "Document signing,<0/>finally open source."
msgid "Documentation" msgid "Documentation"
msgstr "Documentation" msgstr "Documentation"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:106 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:110
msgid "Easily embed Documenso into your product. Simply copy and paste our react widget into your application." msgid "Easily embed Documenso into your product. Simply copy and paste our react widget into your application."
msgstr "Easily embed Documenso into your product. Simply copy and paste our react widget into your application." msgstr "Easily embed Documenso into your product. Simply copy and paste our react widget into your application."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:42 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:42
msgid "Easy Sharing (Soon)." #~ msgid "Easy Sharing (Soon)."
msgstr "Easy Sharing (Soon)." #~ msgstr "Easy Sharing (Soon)."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:46
msgid "Easy Sharing."
msgstr "Easy Sharing."
#: apps/marketing/src/components/(marketing)/pricing-table.tsx:148 #: apps/marketing/src/components/(marketing)/pricing-table.tsx:148
#: apps/marketing/src/components/(marketing)/pricing-table.tsx:192 #: apps/marketing/src/components/(marketing)/pricing-table.tsx:192
@ -172,11 +176,11 @@ msgstr "Enterprise Compliance, License or Technical Needs?"
msgid "Everything you need for a great signing experience." msgid "Everything you need for a great signing experience."
msgstr "Everything you need for a great signing experience." msgstr "Everything you need for a great signing experience."
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:41 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:45
msgid "Fast." msgid "Fast."
msgstr "Fast." msgstr "Fast."
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:32 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:36
msgid "Faster, smarter and more beautiful." msgid "Faster, smarter and more beautiful."
msgstr "Faster, smarter and more beautiful." msgstr "Faster, smarter and more beautiful."
@ -212,7 +216,7 @@ msgstr "From the blog"
msgid "Full-Time" msgid "Full-Time"
msgstr "Full-Time" msgstr "Full-Time"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:83 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:87
msgid "Get paid (Soon)." msgid "Get paid (Soon)."
msgstr "Get paid (Soon)." msgstr "Get paid (Soon)."
@ -264,11 +268,11 @@ msgstr "How do you handle my data?"
msgid "Individual" msgid "Individual"
msgstr "Individual" msgstr "Individual"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:85 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:89
msgid "Integrated payments with Stripe so you dont have to worry about getting paid." msgid "Integrated payments with Stripe so you dont have to worry about getting paid."
msgstr "Integrated payments with Stripe so you dont have to worry about getting paid." msgstr "Integrated payments with Stripe so you dont have to worry about getting paid."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:31 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:35
msgid "Integrates with all your favourite tools." msgid "Integrates with all your favourite tools."
msgstr "Integrates with all your favourite tools." msgstr "Integrates with all your favourite tools."
@ -276,7 +280,7 @@ msgstr "Integrates with all your favourite tools."
msgid "Is there more?" msgid "Is there more?"
msgstr "Is there more?" msgstr "Is there more?"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:40 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:44
msgid "Its up to you. Either clone our repository or rely on our easy to use hosting solution." msgid "Its up to you. Either clone our repository or rely on our easy to use hosting solution."
msgstr "Its up to you. Either clone our repository or rely on our easy to use hosting solution." msgstr "Its up to you. Either clone our repository or rely on our easy to use hosting solution."
@ -292,7 +296,7 @@ msgstr "Join the Open Signing Movement"
msgid "Location" msgid "Location"
msgstr "Location" msgstr "Location"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:62 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:66
msgid "Make it your own through advanced customization and adjustability." msgid "Make it your own through advanced customization and adjustability."
msgstr "Make it your own through advanced customization and adjustability." msgstr "Make it your own through advanced customization and adjustability."
@ -323,7 +327,7 @@ msgid "No credit card required"
msgstr "No credit card required" msgstr "No credit card required"
#: apps/marketing/src/components/(marketing)/callout.tsx:29 #: apps/marketing/src/components/(marketing)/callout.tsx:29
#: apps/marketing/src/components/(marketing)/hero.tsx:121 #: apps/marketing/src/components/(marketing)/hero.tsx:125
msgid "No Credit Card required" msgid "No Credit Card required"
msgstr "No Credit Card required" msgstr "No Credit Card required"
@ -336,7 +340,7 @@ msgstr "None of these work for you? Try self-hosting!"
msgid "Open Issues" msgid "Open Issues"
msgstr "Open Issues" msgstr "Open Issues"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:38 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:42
msgid "Open Source or Hosted." msgid "Open Source or Hosted."
msgstr "Open Source or Hosted." msgstr "Open Source or Hosted."
@ -351,7 +355,7 @@ msgstr "Open Startup"
msgid "OSS Friends" msgid "OSS Friends"
msgstr "OSS Friends" msgstr "OSS Friends"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:87 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:91
msgid "Our custom templates come with smart rules that can help you save time and energy." msgid "Our custom templates come with smart rules that can help you save time and energy."
msgstr "Our custom templates come with smart rules that can help you save time and energy." msgstr "Our custom templates come with smart rules that can help you save time and energy."
@ -387,15 +391,15 @@ msgstr "Pricing"
msgid "Privacy" msgid "Privacy"
msgstr "Privacy" msgstr "Privacy"
#: apps/marketing/src/components/(marketing)/carousel.tsx:55 #: apps/marketing/src/components/(marketing)/carousel.tsx:58
msgid "Profile" msgid "Profile"
msgstr "Profile" msgstr "Profile"
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:104 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:108
msgid "React Widget (Soon)." msgid "React Widget (Soon)."
msgstr "React Widget (Soon)." msgstr "React Widget (Soon)."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:44 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:48
msgid "Receive your personal link to share with everyone you care about." msgid "Receive your personal link to share with everyone you care about."
msgstr "Receive your personal link to share with everyone you care about." msgstr "Receive your personal link to share with everyone you care about."
@ -420,7 +424,7 @@ msgstr "Search languages..."
msgid "Securely. Our data centers are located in Frankfurt (Germany), giving us the best local privacy laws. We are very aware of the sensitive nature of our data and follow best practices to ensure the security and integrity of the data entrusted to us." msgid "Securely. Our data centers are located in Frankfurt (Germany), giving us the best local privacy laws. We are very aware of the sensitive nature of our data and follow best practices to ensure the security and integrity of the data entrusted to us."
msgstr "Securely. Our data centers are located in Frankfurt (Germany), giving us the best local privacy laws. We are very aware of the sensitive nature of our data and follow best practices to ensure the security and integrity of the data entrusted to us." msgstr "Securely. Our data centers are located in Frankfurt (Germany), giving us the best local privacy laws. We are very aware of the sensitive nature of our data and follow best practices to ensure the security and integrity of the data entrusted to us."
#: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:33 #: apps/marketing/src/components/(marketing)/share-connect-paid-widget-bento.tsx:37
msgid "Send, connect, receive and embed everywhere." msgid "Send, connect, receive and embed everywhere."
msgstr "Send, connect, receive and embed everywhere." msgstr "Send, connect, receive and embed everywhere."
@ -442,7 +446,7 @@ msgstr "Sign in"
msgid "Sign up" msgid "Sign up"
msgstr "Sign up" msgstr "Sign up"
#: apps/marketing/src/components/(marketing)/carousel.tsx:19 #: apps/marketing/src/components/(marketing)/carousel.tsx:22
msgid "Signing Process" msgid "Signing Process"
msgstr "Signing Process" msgstr "Signing Process"
@ -452,11 +456,11 @@ msgstr "Signing Process"
msgid "Signup Now" msgid "Signup Now"
msgstr "Signup Now" msgstr "Signup Now"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:85 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:89
msgid "Smart." msgid "Smart."
msgstr "Smart." msgstr "Smart."
#: apps/marketing/src/components/(marketing)/hero.tsx:128 #: apps/marketing/src/components/(marketing)/hero.tsx:132
msgid "Star on GitHub" msgid "Star on GitHub"
msgstr "Star on GitHub" msgstr "Star on GitHub"
@ -482,12 +486,12 @@ msgstr "Team"
msgid "Team Inbox" msgid "Team Inbox"
msgstr "Team Inbox" msgstr "Team Inbox"
#: apps/marketing/src/components/(marketing)/carousel.tsx:25 #: apps/marketing/src/components/(marketing)/carousel.tsx:28
#: apps/marketing/src/components/(marketing)/pricing-table.tsx:162 #: apps/marketing/src/components/(marketing)/pricing-table.tsx:162
msgid "Teams" msgid "Teams"
msgstr "Teams" msgstr "Teams"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:79 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:83
msgid "Template Store (Soon)." msgid "Template Store (Soon)."
msgstr "Template Store (Soon)." msgstr "Template Store (Soon)."
@ -523,12 +527,12 @@ msgstr "Total Funding Raised"
msgid "Total Users" msgid "Total Users"
msgstr "Total Users" msgstr "Total Users"
#: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:27 #: apps/marketing/src/components/(marketing)/open-build-template-bento.tsx:31
msgid "Truly your own." msgid "Truly your own."
msgstr "Truly your own." msgstr "Truly your own."
#: apps/marketing/src/components/(marketing)/callout.tsx:27 #: apps/marketing/src/components/(marketing)/callout.tsx:27
#: apps/marketing/src/components/(marketing)/hero.tsx:119 #: apps/marketing/src/components/(marketing)/hero.tsx:123
msgid "Try our Free Plan" msgid "Try our Free Plan"
msgstr "Try our Free Plan" msgstr "Try our Free Plan"
@ -561,7 +565,7 @@ msgstr "We are happy to assist you at <0>support@documenso.com</0> or <1>in our
msgid "What is the difference between the plans?" msgid "What is the difference between the plans?"
msgstr "What is the difference between the plans?" msgstr "What is the difference between the plans?"
#: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:43 #: apps/marketing/src/components/(marketing)/faster-smarter-beautiful-bento.tsx:47
msgid "When it comes to sending or receiving a contract, you can count on lightning-fast speeds." msgid "When it comes to sending or receiving a contract, you can count on lightning-fast speeds."
msgstr "When it comes to sending or receiving a contract, you can count on lightning-fast speeds." msgstr "When it comes to sending or receiving a contract, you can count on lightning-fast speeds."
@ -589,6 +593,6 @@ msgstr "Yes! Documenso is offered under the GNU AGPL V3 open source license. Thi
msgid "You can self-host Documenso for free or use our ready-to-use hosted version. The hosted version comes with additional support, painless scalability and more. Early adopters will get access to all features we build this year, for no additional cost! Forever! Yes, that includes multiple users per account later. If you want Documenso for your enterprise, we are happy to talk about your needs." msgid "You can self-host Documenso for free or use our ready-to-use hosted version. The hosted version comes with additional support, painless scalability and more. Early adopters will get access to all features we build this year, for no additional cost! Forever! Yes, that includes multiple users per account later. If you want Documenso for your enterprise, we are happy to talk about your needs."
msgstr "You can self-host Documenso for free or use our ready-to-use hosted version. The hosted version comes with additional support, painless scalability and more. Early adopters will get access to all features we build this year, for no additional cost! Forever! Yes, that includes multiple users per account later. If you want Documenso for your enterprise, we are happy to talk about your needs." msgstr "You can self-host Documenso for free or use our ready-to-use hosted version. The hosted version comes with additional support, painless scalability and more. Early adopters will get access to all features we build this year, for no additional cost! Forever! Yes, that includes multiple users per account later. If you want Documenso for your enterprise, we are happy to talk about your needs."
#: apps/marketing/src/components/(marketing)/carousel.tsx:258 #: apps/marketing/src/components/(marketing)/carousel.tsx:265
msgid "Your browser does not support the video tag." msgid "Your browser does not support the video tag."
msgstr "Your browser does not support the video tag." msgstr "Your browser does not support the video tag."