diff --git a/.env.example b/.env.example
index ed77d048a..b2dfb0805 100644
--- a/.env.example
+++ b/.env.example
@@ -27,6 +27,8 @@ NEXT_PRIVATE_OIDC_SKIP_VERIFY=""
# [[URLS]]
NEXT_PUBLIC_WEBAPP_URL="http://localhost:3000"
NEXT_PUBLIC_MARKETING_URL="http://localhost:3001"
+# URL used by the web app to request itself (e.g. local background jobs)
+NEXT_PRIVATE_INTERNAL_WEBAPP_URL="http://localhost:3000"
# [[DATABASE]]
NEXT_PRIVATE_DATABASE_URL="postgres://documenso:password@127.0.0.1:54320/documenso"
diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml
index 22705c2d6..baa4c1f07 100644
--- a/.github/workflows/e2e-tests.yml
+++ b/.github/workflows/e2e-tests.yml
@@ -32,6 +32,9 @@ jobs:
- name: Run Playwright tests
run: npm run ci
+ env:
+ # Needed since we use next start which will set the NODE_ENV to production
+ NEXT_PRIVATE_SIGNING_LOCAL_FILE_PATH: './example/cert.p12'
- uses: actions/upload-artifact@v4
if: always()
diff --git a/apps/documentation/pages/developers/self-hosting/how-to.mdx b/apps/documentation/pages/developers/self-hosting/how-to.mdx
index 2acbf9abb..a316b02b1 100644
--- a/apps/documentation/pages/developers/self-hosting/how-to.mdx
+++ b/apps/documentation/pages/developers/self-hosting/how-to.mdx
@@ -5,6 +5,8 @@ description: Learn how to self-host Documenso on your server or cloud infrastruc
import { Callout, Steps } from 'nextra/components';
+import { CallToAction } from '@documenso/ui/components/call-to-action';
+
# Self Hosting
We support various deployment methods and are actively working on adding more. Please let us know if you have a specific deployment method in mind!
@@ -273,3 +275,5 @@ We offer several alternative deployment methods for Documenso if you need more o
## Koyeb
[](https://app.koyeb.com/deploy?type=git&repository=github.com/documenso/documenso&branch=main&name=documenso-app&builder=dockerfile&dockerfile=/docker/Dockerfile)
+
+
diff --git a/apps/documentation/pages/developers/self-hosting/index.mdx b/apps/documentation/pages/developers/self-hosting/index.mdx
index 84cbed30b..b4aefb848 100644
--- a/apps/documentation/pages/developers/self-hosting/index.mdx
+++ b/apps/documentation/pages/developers/self-hosting/index.mdx
@@ -3,6 +3,10 @@ title: Getting Started with Self-Hosting
description: A step-by-step guide to setting up and hosting your own Documenso instance.
---
+import { CallToAction } from '@documenso/ui/components/call-to-action';
+
# Getting Started with Self-Hosting
This is a step-by-step guide to setting up and hosting your own Documenso instance. Before getting started, [select the right license for you](/users/licenses).
+
+
diff --git a/apps/marketing/content/blog/introducing-embedding.mdx b/apps/marketing/content/blog/introducing-embedding.mdx
new file mode 100644
index 000000000..45a04aec2
--- /dev/null
+++ b/apps/marketing/content/blog/introducing-embedding.mdx
@@ -0,0 +1,72 @@
+---
+title: 'Introducing Embedding Support for Documenso'
+description: 'Embedding is now here! Learn how we built it and how it can be used to bring e-signing to your own applications.'
+authorName: 'Lucas Smith'
+authorImage: '/blog/blog-author-lucas.png'
+authorRole: 'Co-Founder'
+date: 2024-09-06
+tags:
+ - Development
+---
+
+When we first launched Documenso, one of the most requested features was embedding. We knew it was important and aligned with our desire to not just be a e-signing application but to instead provide the e-signature infrastructure for the web and beyond.
+
+With that said, we decided to hold off initially so we could focus on building a solid, well-featured core application. Looking back, this was definitely the right call. Embedding is only as good as the features behind it, and we didn't want to release something that wasn't ready to meet user and developer expectations.
+
+Over the past year, we've been busy adding tons of new features and reaching new levels of compliance, like 21 CFR Part 11. We've also introduced [new fields](/blog/introducing-advanced-signing-fields), [built out an API](/blog/public-api), [added webhooks, integrations with Zapier](/blog/launch-week-2-day-4), and a lot more.
+
+Now that we've laid a solid foundation, it's finally time to focus on embedding, the top-requested feature from both our users and those self-hosting our platform.
+
+## Why Embedding Took Time
+
+In previous projects, I’ve often seen embedding built by bundling components for use in a client’s website or app. This method gives users maximum flexibility for styling and behavior, while avoiding certain cross-origin issues. However, it can also introduce problems like code conflicts or performance bottlenecks. For example, third-party tools such as Google Tag Manager (GTM) or other marketing scripts can interfere with your SDK. Additionally, the SDK must remain lightweight to avoid slowing down the client’s page.
+
+For Documenso, we decided to explore a different approach. After carefully researching our options, we opted for an iframe-based solution. While iframes are typically less flexible—especially when it comes to theming or passing pre-filled data containing personally identifiable information (PII)—we identified ways to mitigate these concerns.
+
+One of the biggest challenges was ensuring that we could pass sensitive data, like emails for pre-filling forms, without exposing PII to our server. To solve this, we used [fragment identifiers](https://developer.mozilla.org/en-US/docs/Web/API/URL/hash) in the URL, which are processed client-side and never sent in network requests. This method ensures that PII is protected and not logged by our server or any intermediate web services.
+
+### Using the PostMessage API for Communication
+
+To maintain a high level of interactivity, our iframes communicate with the parent window using the [postMessage API](https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage). This allows us to notify the parent app when specific events occur inside the iframe, creating a more dynamic user experience and bridging the gap between our iframe-based solution and typical fat SDKs.
+
+Additionally, props are passed into the iframe via the [fragment identifier](https://developer.mozilla.org/en-US/docs/Web/API/URL/hash) of the URL. This avoids the need for complex two-way data synchronization between the parent and child frames, making the system stable and more reliable.
+
+### Building the Embeds with Mitosis
+
+Given that our iframe solution is quite lightweight, we saw this as a great opportunity to experiment with [Mitosis](https://mitosis.builder.io/) which would let us do something truly special. For those unfamiliar, Mitosis is a project by Builder.io that lets you write components once and then transpile them into a variety of frameworks like React, Vue, and Svelte.
+
+We used Mitosis to build two key components: a direct template embed and a document signing embed. The direct template allows users to use a template as if it were an evergreen document—meaning that, when someone completes the template, a new document is automatically generated. This is the use case we expect most users to adopt for embedding. For more advanced workflows, we also offer a document signing embed, which can handle multi-recipient workflows and other complex scenarios intended for use in deeper, rich integrations.
+
+Mitosis allowed us to quickly target several popular frameworks, including [React](https://www.npmjs.com/package/@documenso/embed-react), [Preact](https://www.npmjs.com/package/@documenso/embed-preact), [Vue](https://www.npmjs.com/package/@documenso/embed-vue), [Svelte](https://www.npmjs.com/package/@documenso/embed-svelte), and [SolidJS](https://www.npmjs.com/package/@documenso/embed-solid).
+
+I had also hoped to include Angular, but while Mitosis makes it really easy to transpile component, we still have to take care of bundling and packaging the resulting component ourselves. While the above frameworks can all be bundled using Vite.js, Angular still has it's own set of tooling that we would need to learn and use. Given this constraint we opted to put Angular on hold for now while we wait for the newer Vite.js support to mature.
+
+### Challenges and Lessons with Mitosis and more
+
+While our experience with Mitosis was largely positive, there were some challenges along the way. For instance, certain state properties with the same names as props caused issues during the transpilation process, leading to type errors and unexpected transpilation results with some targets.
+
+This was also a challenge since our initial implementation of the two components had some minor separation of concerns which also resulted in some transpilation issues with some targets. We addressed this by removing the separation of concerns for now since it was mostly for show rather than out of necessity.
+
+On top of that, packaging and publishing the embeds posed its own set of challenges, particularly given the growing complexity of JavaScript package management. Tools like [Publint](https://www.npmjs.com/package/publint) helped streamline the process by ensuring we followed best practices for both CommonJS and ESM formats.
+
+### To the Future, The Documenso Platform
+
+With the embedding feature now in place, we're excited to continue expanding Documenso's capabilities. Embeds are just the beginning of what we're calling the Documenso platform. Through our user research, we've learned that while many businesses appreciate having a flexible e-signature solution, they're even more interested in using our tools to build signing functionality directly into their own apps—without worrying about the technical complexities of compliance and security that come with e-signing.
+
+Over the coming months, we'll be working on enhancing our API, strengthening integrations with tools like Zapier, and improving our webhook system. Our goal is to give users the ability to embed e-signatures and document management wherever they need it, whether that's through self-hosting or by using Documenso as a platform. We can't wait to see how our users and self-hosters leverage these new capabilities!
+
+### Ready to Get Started?
+
+If you're ready to embed document signing into your own app or website, check out our [Embedding Documentation](https://docs.documenso.com/developers/embedding?utm_source=blog&utm_campaign=introducing-embedding) to see how easy it is to get started. You'll find everything you need to get started today!
+
+
+
+We're always here to help! If you have questions or need support, join our [Discord](https://documen.so/discord) or [book a demo](https://documen.so/book-a-demo). We'd love to hear how you're using Documenso or wanting to use Documenso to enhance your workflow.
+
+Stay tuned for more updates as we continue to evolve the Documenso platform and make it even easier to bring document signing into your workflows.
diff --git a/apps/marketing/content/changelog.mdx b/apps/marketing/content/changelog.mdx
index 9116b676c..e04c9b2f4 100644
--- a/apps/marketing/content/changelog.mdx
+++ b/apps/marketing/content/changelog.mdx
@@ -8,6 +8,80 @@ Check out what's new in the latest version and read our thoughts on it. For more
---
+# Documenso v1.7.0: Embedded Signing, Copy and Paste, and More
+
+We're thrilled to announce the release of Documenso v1.7.0, packed with exciting new features and improvements that enhance document signing flexibility, user experience, and global accessibility.
+
+We're excited to see what you'll create with this release and we'd love to hear your feedback. Let's dive into the highlights:
+
+## 🌟 Key Features
+
+### Embedded Signing Experience
+
+Take your document signing to the next level with our new embedded signing feature. Now you can seamlessly integrate Documenso's signing process directly into your own website or application, providing a smooth, branded experience for your users.
+
+
+
+Check out our [Embedding documentation](https://docs.documenso.com/developers/embedding) to learn more about how to get started.
+
+### Copy and Paste Fields
+
+Streamline your document preparation with our new copy and paste functionality for fields. This feature allows you to quickly duplicate fields across your document, saving time and ensuring consistency in your templates.
+
+### Customizable Signature Colors
+
+Recipients can now select a signature color from our list of available colors, supporting workflows where specific colors are required for each recipient, location, or document.
+
+### Enhanced Internationalization (i18n)
+
+Following on from our last release we've now expanded our i18n support to the main web application. We haven't yet added support for any additional languages but that will be coming quickly now that we have completed the hard work of wrapping all of our content in our new i18n system.
+
+These enhancements make Documenso more accessible to users worldwide.
+
+## 🔧 Other Improvements
+
+- **API Enhancements**:
+
+ - New endpoint to prefill fields via API
+ - Updated createFields API endpoint for more flexibility
+ - Automatically set public profile URL for OIDC users
+
+- **Security and Performance**:
+
+ - Document sealing moved to a background job for improved performance
+ - Disable 2FA with backup codes for enhanced account recovery options
+ - Extended lifespan for invites and confirmations
+
+- **User Experience**:
+
+ - Updated email templates to reflect team-specific information
+ - Fixed issues with dialog closing on page refresh
+ - Improved field editing in document templates
+
+- **Other Items**:
+ - Added Elestio as a one-click deploy option
+ - Updated README for manual self-hosting
+ - New environment variable for internal webapp URL configuration
+
+## 📚 New Content
+
+- [Advanced fields article to help you make the most of Documenso's capabilities](/blog/introducing-advanced-signing-fields)
+- [Embedding blog post to guide you through how we implemented embedding](/blog/introducing-embedding)
+
+## 👏 Community Contributions
+
+A big thank you to our vibrant community! This release includes contributions from several new contributors, further enriching Documenso's capabilities.
+
+We're excited to see how you'll use these new features to streamline your document workflows. As always, we appreciate your feedback and support in making Documenso the best open-source document signing solution available.
+
+Enjoy exploring v1.7.0!
+
+---
+
# Documenso v1.6.1: Internationalization, Enhanced OIDC, and More
We're excited to announce the release of Documenso v1.6.1, which brings several improvements to enhance your document signing experience. Here are the key updates:
diff --git a/apps/marketing/package.json b/apps/marketing/package.json
index 7614cacdc..391108109 100644
--- a/apps/marketing/package.json
+++ b/apps/marketing/package.json
@@ -1,6 +1,6 @@
{
"name": "@documenso/marketing",
- "version": "1.7.0-rc.4",
+ "version": "1.7.1-rc.0",
"private": true,
"license": "AGPL-3.0",
"scripts": {
diff --git a/apps/marketing/process-env.d.ts b/apps/marketing/process-env.d.ts
index 207bacef5..fabe9b243 100644
--- a/apps/marketing/process-env.d.ts
+++ b/apps/marketing/process-env.d.ts
@@ -2,7 +2,8 @@ declare namespace NodeJS {
export interface ProcessEnv {
NEXT_PUBLIC_WEBAPP_URL?: string;
NEXT_PUBLIC_MARKETING_URL?: string;
-
+ NEXT_PRIVATE_INTERNAL_WEBAPP_URL?:string;
+
NEXT_PRIVATE_DATABASE_URL: string;
NEXT_PUBLIC_STRIPE_COMMUNITY_PLAN_MONTHLY_PRICE_ID: string;
diff --git a/apps/marketing/public/blog/introducing-embedding/embedding-demo.mp4 b/apps/marketing/public/blog/introducing-embedding/embedding-demo.mp4
new file mode 100644
index 000000000..883ac5506
Binary files /dev/null and b/apps/marketing/public/blog/introducing-embedding/embedding-demo.mp4 differ
diff --git a/apps/marketing/src/app/layout.tsx b/apps/marketing/src/app/layout.tsx
index f5c4f04dd..544b5ceb4 100644
--- a/apps/marketing/src/app/layout.tsx
+++ b/apps/marketing/src/app/layout.tsx
@@ -1,7 +1,6 @@
import { Suspense } from 'react';
import { Caveat, Inter } from 'next/font/google';
-import { cookies, headers } from 'next/headers';
import { AxiomWebVitals } from 'next-axiom';
import { PublicEnvScript } from 'next-runtime-env';
@@ -10,8 +9,6 @@ import { FeatureFlagProvider } from '@documenso/lib/client-only/providers/featur
import { I18nClientProvider } from '@documenso/lib/client-only/providers/i18n.client';
import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server';
import { NEXT_PUBLIC_MARKETING_URL } from '@documenso/lib/constants/app';
-import type { SUPPORTED_LANGUAGE_CODES } from '@documenso/lib/constants/i18n';
-import { ZSupportedLanguageCodeSchema } from '@documenso/lib/constants/i18n';
import { getAllAnonymousFlags } from '@documenso/lib/universal/get-feature-flag';
import { TrpcProvider } from '@documenso/trpc/react';
import { cn } from '@documenso/ui/lib/utils';
@@ -59,25 +56,7 @@ export function generateMetadata() {
export default async function RootLayout({ children }: { children: React.ReactNode }) {
const flags = await getAllAnonymousFlags();
- let overrideLang: (typeof SUPPORTED_LANGUAGE_CODES)[number] | undefined;
-
- // Should be safe to remove when we upgrade NextJS.
- // https://github.com/vercel/next.js/pull/65008
- // Currently if the middleware sets the cookie, it's not accessible in the cookies
- // during the same render.
- // So we go the roundabout way of checking the header for the set-cookie value.
- if (!cookies().get('i18n')) {
- const setCookieValue = headers().get('set-cookie');
- const i18nCookie = setCookieValue?.split(';').find((cookie) => cookie.startsWith('i18n='));
-
- if (i18nCookie) {
- const i18n = i18nCookie.split('=')[1];
-
- overrideLang = ZSupportedLanguageCodeSchema.parse(i18n);
- }
- }
-
- const { lang, i18n } = setupI18nSSR(overrideLang);
+ const { lang, locales, i18n } = setupI18nSSR();
return (
-
+
{children}
diff --git a/apps/marketing/src/components/(marketing)/footer.tsx b/apps/marketing/src/components/(marketing)/footer.tsx
index 5fe7eac54..e22c4fea6 100644
--- a/apps/marketing/src/components/(marketing)/footer.tsx
+++ b/apps/marketing/src/components/(marketing)/footer.tsx
@@ -1,6 +1,6 @@
'use client';
-import type { HTMLAttributes } from 'react';
+import { type HTMLAttributes, useState } from 'react';
import Image from 'next/image';
import Link from 'next/link';
@@ -9,15 +9,15 @@ import { msg } from '@lingui/macro';
import { useLingui } from '@lingui/react';
import { FaXTwitter } from 'react-icons/fa6';
import { LiaDiscord } from 'react-icons/lia';
-import { LuGithub } from 'react-icons/lu';
+import { LuGithub, LuLanguages } from 'react-icons/lu';
import LogoImage from '@documenso/assets/logo.png';
-import { cn } from '@documenso/ui/lib/utils';
-import { ThemeSwitcher } from '@documenso/ui/primitives/theme-switcher';
-
-import { I18nSwitcher } from '~/components/(marketing)/i18n-switcher';
-
+import { SUPPORTED_LANGUAGES } from '@documenso/lib/constants/i18n';
// import { StatusWidgetContainer } from './status-widget-container';
+import { LanguageSwitcherDialog } from '@documenso/ui/components/common/language-switcher-dialog';
+import { cn } from '@documenso/ui/lib/utils';
+import { Button } from '@documenso/ui/primitives/button';
+import { ThemeSwitcher } from '@documenso/ui/primitives/theme-switcher';
export type FooterProps = HTMLAttributes;
@@ -44,7 +44,9 @@ const FOOTER_LINKS = [
];
export const Footer = ({ className, ...props }: FooterProps) => {
- const { _ } = useLingui();
+ const { _, i18n } = useLingui();
+
+ const [languageSwitcherOpen, setLanguageSwitcherOpen] = useState(false);
return (
diff --git a/apps/web/src/components/formatter/locale-date.tsx b/apps/web/src/components/formatter/locale-date.tsx
deleted file mode 100644
index 98a115f60..000000000
--- a/apps/web/src/components/formatter/locale-date.tsx
+++ /dev/null
@@ -1,49 +0,0 @@
-'use client';
-
-import type { HTMLAttributes } from 'react';
-import { useCallback, useEffect, useState } from 'react';
-
-import type { DateTimeFormatOptions } from 'luxon';
-import { DateTime } from 'luxon';
-
-import { useLocale } from '@documenso/lib/client-only/providers/locale';
-
-export type LocaleDateProps = HTMLAttributes & {
- date: string | number | Date;
- format?: DateTimeFormatOptions | string;
-};
-
-/**
- * Formats the date based on the user locale.
- *
- * Will use the estimated locale from the user headers on SSR, then will use
- * the client browser locale once mounted.
- */
-export const LocaleDate = ({ className, date, format, ...props }: LocaleDateProps) => {
- const { locale } = useLocale();
-
- const formatDateTime = useCallback(
- (date: DateTime) => {
- if (typeof format === 'string') {
- return date.toFormat(format);
- }
-
- return date.toLocaleString(format);
- },
- [format],
- );
-
- const [localeDate, setLocaleDate] = useState(() =>
- formatDateTime(DateTime.fromJSDate(new Date(date)).setLocale(locale)),
- );
-
- useEffect(() => {
- setLocaleDate(formatDateTime(DateTime.fromJSDate(new Date(date))));
- }, [date, format, formatDateTime]);
-
- return (
-
- {localeDate}
-
- );
-};
diff --git a/apps/web/src/components/templates/manage-public-template-dialog.tsx b/apps/web/src/components/templates/manage-public-template-dialog.tsx
index fb49aa5d1..874d03b53 100644
--- a/apps/web/src/components/templates/manage-public-template-dialog.tsx
+++ b/apps/web/src/components/templates/manage-public-template-dialog.tsx
@@ -52,8 +52,6 @@ import { useToast } from '@documenso/ui/primitives/use-toast';
import { useOptionalCurrentTeam } from '~/providers/team';
-import { LocaleDate } from '../formatter/locale-date';
-
export type ManagePublicTemplateDialogProps = {
directTemplates: (Template & {
directLink: Pick;
@@ -93,7 +91,7 @@ export const ManagePublicTemplateDialog = ({
onIsOpenChange,
...props
}: ManagePublicTemplateDialogProps) => {
- const { _ } = useLingui();
+ const { _, i18n } = useLingui();
const { toast } = useToast();
const [open, onOpenChange] = useState(isOpen);
@@ -300,7 +298,7 @@ export const ManagePublicTemplateDialog = ({
-
+ {i18n.date(row.createdAt)}
diff --git a/apps/web/src/middleware.ts b/apps/web/src/middleware.ts
index 695210f86..99f6bccf1 100644
--- a/apps/web/src/middleware.ts
+++ b/apps/web/src/middleware.ts
@@ -5,7 +5,6 @@ import { NextResponse } from 'next/server';
import { getToken } from 'next-auth/jwt';
import { TEAM_URL_ROOT_REGEX } from '@documenso/lib/constants/teams';
-import { extractSupportedLanguage } from '@documenso/lib/utils/i18n';
import { formatDocumentsPath } from '@documenso/lib/utils/teams';
async function middleware(req: NextRequest): Promise {
@@ -96,12 +95,7 @@ async function middleware(req: NextRequest): Promise {
export default async function middlewareWrapper(req: NextRequest) {
const response = await middleware(req);
- const lang = extractSupportedLanguage({
- headers: req.headers,
- cookies: cookies(),
- });
-
- response.cookies.set('i18n', lang);
+ // Can place anything that needs to be set on the response here.
return response;
}
diff --git a/docker/README.md b/docker/README.md
index f3b3abd90..780d116fe 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -74,6 +74,7 @@ docker run -d \
-e NEXT_PRIVATE_ENCRYPTION_KEY=""
-e NEXT_PRIVATE_ENCRYPTION_SECONDARY_KEY=""
-e NEXT_PUBLIC_WEBAPP_URL=""
+ -e NEXT_PRIVATE_INTERNAL_WEBAPP_URL="http://localhost:3000"
-e NEXT_PRIVATE_DATABASE_URL=""
-e NEXT_PRIVATE_DIRECT_DATABASE_URL=""
-e NEXT_PRIVATE_SMTP_TRANSPORT=""
diff --git a/docker/production/compose.yml b/docker/production/compose.yml
index 36682ee42..bd2b9597e 100644
--- a/docker/production/compose.yml
+++ b/docker/production/compose.yml
@@ -29,6 +29,7 @@ services:
- NEXT_PRIVATE_GOOGLE_CLIENT_ID=${NEXT_PRIVATE_GOOGLE_CLIENT_ID}
- NEXT_PRIVATE_GOOGLE_CLIENT_SECRET=${NEXT_PRIVATE_GOOGLE_CLIENT_SECRET}
- NEXT_PUBLIC_WEBAPP_URL=${NEXT_PUBLIC_WEBAPP_URL:?err}
+ - NEXT_PRIVATE_INTERNAL_WEBAPP_URL=${NEXT_PRIVATE_INTERNAL_WEBAPP_URL:-http://localhost:$PORT}
- NEXT_PUBLIC_MARKETING_URL=${NEXT_PUBLIC_MARKETING_URL:-https://documenso.com}
- NEXT_PRIVATE_DATABASE_URL=${NEXT_PRIVATE_DATABASE_URL:?err}
- NEXT_PRIVATE_DIRECT_DATABASE_URL=${NEXT_PRIVATE_DIRECT_DATABASE_URL:-${NEXT_PRIVATE_DATABASE_URL}}
diff --git a/package-lock.json b/package-lock.json
index 9bae68b33..401cd918d 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@documenso/root",
- "version": "1.7.0-rc.4",
+ "version": "1.7.1-rc.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@documenso/root",
- "version": "1.7.0-rc.4",
+ "version": "1.7.1-rc.0",
"workspaces": [
"apps/*",
"packages/*"
@@ -80,7 +80,7 @@
},
"apps/marketing": {
"name": "@documenso/marketing",
- "version": "1.7.0-rc.4",
+ "version": "1.7.1-rc.0",
"license": "AGPL-3.0",
"dependencies": {
"@documenso/assets": "*",
@@ -424,7 +424,7 @@
},
"apps/web": {
"name": "@documenso/web",
- "version": "1.7.0-rc.4",
+ "version": "1.7.1-rc.0",
"license": "AGPL-3.0",
"dependencies": {
"@documenso/api": "*",
diff --git a/package.json b/package.json
index b828a858b..ac6b73516 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"private": true,
- "version": "1.7.0-rc.4",
+ "version": "1.7.1-rc.0",
"scripts": {
"build": "turbo run build",
"build:web": "turbo run build --filter=@documenso/web",
diff --git a/packages/api/v1/implementation.ts b/packages/api/v1/implementation.ts
index 8f8987b79..c7765de1c 100644
--- a/packages/api/v1/implementation.ts
+++ b/packages/api/v1/implementation.ts
@@ -16,6 +16,7 @@ import { getDocumentById } from '@documenso/lib/server-only/document/get-documen
import { resendDocument } from '@documenso/lib/server-only/document/resend-document';
import { sendDocument } from '@documenso/lib/server-only/document/send-document';
import { updateDocument } from '@documenso/lib/server-only/document/update-document';
+import { updateDocumentSettings } from '@documenso/lib/server-only/document/update-document-settings';
import { deleteField } from '@documenso/lib/server-only/field/delete-field';
import { getFieldById } from '@documenso/lib/server-only/field/get-field-by-id';
import { updateField } from '@documenso/lib/server-only/field/update-field';
@@ -295,6 +296,16 @@ export const ApiContractV1Implementation = createNextRoute(ApiContractV1, {
requestMetadata: extractNextApiRequestMetadata(args.req),
});
+ if (body.authOptions) {
+ await updateDocumentSettings({
+ documentId: document.id,
+ userId: user.id,
+ teamId: team?.id,
+ data: body.authOptions,
+ requestMetadata: extractNextApiRequestMetadata(args.req),
+ });
+ }
+
const recipients = await setRecipientsForDocument({
userId: user.id,
teamId: team?.id,
@@ -465,6 +476,16 @@ export const ApiContractV1Implementation = createNextRoute(ApiContractV1, {
});
}
+ if (body.authOptions) {
+ await updateDocumentSettings({
+ documentId: document.id,
+ userId: user.id,
+ teamId: team?.id,
+ data: body.authOptions,
+ requestMetadata: extractNextApiRequestMetadata(args.req),
+ });
+ }
+
return {
status: 200,
body: {
@@ -547,6 +568,16 @@ export const ApiContractV1Implementation = createNextRoute(ApiContractV1, {
});
}
+ if (body.authOptions) {
+ await updateDocumentSettings({
+ documentId: document.id,
+ userId: user.id,
+ teamId: team?.id,
+ data: body.authOptions,
+ requestMetadata: extractNextApiRequestMetadata(args.req),
+ });
+ }
+
return {
status: 200,
body: {
@@ -682,7 +713,7 @@ export const ApiContractV1Implementation = createNextRoute(ApiContractV1, {
createRecipient: authenticatedMiddleware(async (args, user, team) => {
const { id: documentId } = args.params;
- const { name, email, role } = args.body;
+ const { name, email, role, authOptions } = args.body;
const document = await getDocumentById({
id: Number(documentId),
@@ -736,6 +767,7 @@ export const ApiContractV1Implementation = createNextRoute(ApiContractV1, {
email,
name,
role,
+ actionAuth: authOptions?.actionAuth ?? null,
},
],
requestMetadata: extractNextApiRequestMetadata(args.req),
@@ -767,7 +799,7 @@ export const ApiContractV1Implementation = createNextRoute(ApiContractV1, {
updateRecipient: authenticatedMiddleware(async (args, user, team) => {
const { id: documentId, recipientId } = args.params;
- const { name, email, role } = args.body;
+ const { name, email, role, authOptions } = args.body;
const document = await getDocumentById({
id: Number(documentId),
@@ -801,6 +833,7 @@ export const ApiContractV1Implementation = createNextRoute(ApiContractV1, {
email,
name,
role,
+ actionAuth: authOptions?.actionAuth,
requestMetadata: extractNextApiRequestMetadata(args.req),
}).catch(() => null);
diff --git a/packages/api/v1/schema.ts b/packages/api/v1/schema.ts
index 1800b53dc..f632f36a8 100644
--- a/packages/api/v1/schema.ts
+++ b/packages/api/v1/schema.ts
@@ -5,6 +5,11 @@ import { DATE_FORMATS, DEFAULT_DOCUMENT_DATE_FORMAT } from '@documenso/lib/const
import '@documenso/lib/constants/time-zones';
import { DEFAULT_DOCUMENT_TIME_ZONE, TIME_ZONES } from '@documenso/lib/constants/time-zones';
import { ZUrlSchema } from '@documenso/lib/schemas/common';
+import {
+ ZDocumentAccessAuthTypesSchema,
+ ZDocumentActionAuthTypesSchema,
+ ZRecipientActionAuthTypesSchema,
+} from '@documenso/lib/types/document-auth';
import { ZFieldMetaSchema } from '@documenso/lib/types/field-meta';
import {
DocumentDataType,
@@ -120,6 +125,12 @@ export const ZCreateDocumentMutationSchema = z.object({
redirectUrl: z.string(),
})
.partial(),
+ authOptions: z
+ .object({
+ globalAccessAuth: ZDocumentAccessAuthTypesSchema.optional(),
+ globalActionAuth: ZDocumentActionAuthTypesSchema.optional(),
+ })
+ .optional(),
formValues: z.record(z.string(), z.union([z.string(), z.boolean(), z.number()])).optional(),
});
@@ -166,6 +177,12 @@ export const ZCreateDocumentFromTemplateMutationSchema = z.object({
})
.partial()
.optional(),
+ authOptions: z
+ .object({
+ globalAccessAuth: ZDocumentAccessAuthTypesSchema.optional(),
+ globalActionAuth: ZDocumentActionAuthTypesSchema.optional(),
+ })
+ .optional(),
formValues: z.record(z.string(), z.union([z.string(), z.boolean(), z.number()])).optional(),
});
@@ -223,6 +240,12 @@ export const ZGenerateDocumentFromTemplateMutationSchema = z.object({
})
.partial()
.optional(),
+ authOptions: z
+ .object({
+ globalAccessAuth: ZDocumentAccessAuthTypesSchema.optional(),
+ globalActionAuth: ZDocumentActionAuthTypesSchema.optional(),
+ })
+ .optional(),
formValues: z.record(z.string(), z.union([z.string(), z.boolean(), z.number()])).optional(),
});
@@ -254,6 +277,11 @@ export const ZCreateRecipientMutationSchema = z.object({
name: z.string().min(1),
email: z.string().email().min(1),
role: z.nativeEnum(RecipientRole).optional().default(RecipientRole.SIGNER),
+ authOptions: z
+ .object({
+ actionAuth: ZRecipientActionAuthTypesSchema.optional(),
+ })
+ .optional(),
});
/**
diff --git a/packages/lib/client-only/providers/i18n.client.tsx b/packages/lib/client-only/providers/i18n.client.tsx
index b1dcce428..b3c92bfc8 100644
--- a/packages/lib/client-only/providers/i18n.client.tsx
+++ b/packages/lib/client-only/providers/i18n.client.tsx
@@ -5,19 +5,24 @@ import { useState } from 'react';
import { type Messages, setupI18n } from '@lingui/core';
import { I18nProvider } from '@lingui/react';
+import type { I18nLocaleData } from '../../constants/i18n';
+
export function I18nClientProvider({
children,
- initialLocale,
+ initialLocaleData,
initialMessages,
}: {
children: React.ReactNode;
- initialLocale: string;
+ initialLocaleData: I18nLocaleData;
initialMessages: Messages;
}) {
+ const { lang, locales } = initialLocaleData;
+
const [i18n] = useState(() => {
return setupI18n({
- locale: initialLocale,
- messages: { [initialLocale]: initialMessages },
+ locale: lang,
+ locales: locales,
+ messages: { [lang]: initialMessages },
});
});
diff --git a/packages/lib/client-only/providers/i18n.server.tsx b/packages/lib/client-only/providers/i18n.server.tsx
index 272b6968e..fc0432b38 100644
--- a/packages/lib/client-only/providers/i18n.server.tsx
+++ b/packages/lib/client-only/providers/i18n.server.tsx
@@ -1,26 +1,26 @@
import 'server-only';
-import { cookies } from 'next/headers';
+import { cookies, headers } from 'next/headers';
import type { I18n, Messages } from '@lingui/core';
import { setupI18n } from '@lingui/core';
import { setI18n } from '@lingui/react/server';
-import { IS_APP_WEB, IS_APP_WEB_I18N_ENABLED } from '../../constants/app';
+import { IS_APP_WEB } from '../../constants/app';
import { SUPPORTED_LANGUAGE_CODES } from '../../constants/i18n';
-import { extractSupportedLanguage } from '../../utils/i18n';
+import { extractLocaleData } from '../../utils/i18n';
-type SupportedLocales = (typeof SUPPORTED_LANGUAGE_CODES)[number];
+type SupportedLanguages = (typeof SUPPORTED_LANGUAGE_CODES)[number];
-async function loadCatalog(locale: SupportedLocales): Promise<{
+async function loadCatalog(lang: SupportedLanguages): Promise<{
[k: string]: Messages;
}> {
const { messages } = await import(
- `../../translations/${locale}/${IS_APP_WEB ? 'web' : 'marketing'}.js`
+ `../../translations/${lang}/${IS_APP_WEB ? 'web' : 'marketing'}.js`
);
return {
- [locale]: messages,
+ [lang]: messages,
};
}
@@ -31,18 +31,18 @@ export const allMessages = catalogs.reduce((acc, oneCatalog) => {
return { ...acc, ...oneCatalog };
}, {});
-type AllI18nInstances = { [K in SupportedLocales]: I18n };
+type AllI18nInstances = { [K in SupportedLanguages]: I18n };
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
-export const allI18nInstances = SUPPORTED_LANGUAGE_CODES.reduce((acc, locale) => {
- const messages = allMessages[locale] ?? {};
+export const allI18nInstances = SUPPORTED_LANGUAGE_CODES.reduce((acc, lang) => {
+ const messages = allMessages[lang] ?? {};
const i18n = setupI18n({
- locale,
- messages: { [locale]: messages },
+ locale: lang,
+ messages: { [lang]: messages },
});
- return { ...acc, [locale]: i18n };
+ return { ...acc, [lang]: i18n };
}, {}) as AllI18nInstances;
/**
@@ -50,24 +50,23 @@ export const allI18nInstances = SUPPORTED_LANGUAGE_CODES.reduce((acc, locale) =>
*
* https://lingui.dev/tutorials/react-rsc#pages-layouts-and-lingui
*/
-export const setupI18nSSR = (overrideLang?: SupportedLocales) => {
- let lang =
- overrideLang ||
- extractSupportedLanguage({
- cookies: cookies(),
- });
-
- // Override web app to be English.
- if (!IS_APP_WEB_I18N_ENABLED && IS_APP_WEB) {
- lang = 'en';
- }
+export const setupI18nSSR = () => {
+ const { lang, locales } = extractLocaleData({
+ cookies: cookies(),
+ headers: headers(),
+ });
// Get and set a ready-made i18n instance for the given language.
const i18n = allI18nInstances[lang];
+
+ // Reactivate the i18n instance with the locale for date and number formatting.
+ i18n.activate(lang, locales);
+
setI18n(i18n);
return {
lang,
+ locales,
i18n,
};
};
diff --git a/packages/lib/client-only/providers/locale.tsx b/packages/lib/client-only/providers/locale.tsx
deleted file mode 100644
index ff8b03e5a..000000000
--- a/packages/lib/client-only/providers/locale.tsx
+++ /dev/null
@@ -1,37 +0,0 @@
-'use client';
-
-import { createContext, useContext } from 'react';
-
-export type LocaleContextValue = {
- locale: string;
-};
-
-export const LocaleContext = createContext(null);
-
-export const useLocale = () => {
- const context = useContext(LocaleContext);
-
- if (!context) {
- throw new Error('useLocale must be used within a LocaleProvider');
- }
-
- return context;
-};
-
-export function LocaleProvider({
- children,
- locale,
-}: {
- children: React.ReactNode;
- locale: string;
-}) {
- return (
-
- {children}
-
- );
-}
diff --git a/packages/lib/constants/app.ts b/packages/lib/constants/app.ts
index 622878fdf..15430f78a 100644
--- a/packages/lib/constants/app.ts
+++ b/packages/lib/constants/app.ts
@@ -1,15 +1,16 @@
import { env } from 'next-runtime-env';
-export const IS_APP_WEB_I18N_ENABLED = false;
export const APP_DOCUMENT_UPLOAD_SIZE_LIMIT =
Number(process.env.NEXT_PUBLIC_DOCUMENT_SIZE_UPLOAD_LIMIT) || 50;
export const NEXT_PUBLIC_WEBAPP_URL = () => env('NEXT_PUBLIC_WEBAPP_URL');
export const NEXT_PUBLIC_MARKETING_URL = () => env('NEXT_PUBLIC_MARKETING_URL');
+export const NEXT_PRIVATE_INTERNAL_WEBAPP_URL = process.env.NEXT_PRIVATE_INTERNAL_WEBAPP_URL ?? NEXT_PUBLIC_WEBAPP_URL();
export const IS_APP_MARKETING = process.env.NEXT_PUBLIC_PROJECT === 'marketing';
export const IS_APP_WEB = process.env.NEXT_PUBLIC_PROJECT === 'web';
export const IS_BILLING_ENABLED = () => env('NEXT_PUBLIC_FEATURE_BILLING_ENABLED') === 'true';
+export const IS_APP_WEB_I18N_ENABLED = true;
export const APP_FOLDER = () => (IS_APP_MARKETING ? 'marketing' : 'web');
diff --git a/packages/lib/constants/i18n.ts b/packages/lib/constants/i18n.ts
index 8728b4307..b7dc58618 100644
--- a/packages/lib/constants/i18n.ts
+++ b/packages/lib/constants/i18n.ts
@@ -6,9 +6,22 @@ export const ZSupportedLanguageCodeSchema = z.enum(SUPPORTED_LANGUAGE_CODES).cat
export type SupportedLanguageCodes = (typeof SUPPORTED_LANGUAGE_CODES)[number];
+export type I18nLocaleData = {
+ /**
+ * The supported language extracted from the locale.
+ */
+ lang: SupportedLanguageCodes;
+
+ /**
+ * The preferred locales.
+ */
+ locales: string[];
+};
+
export const APP_I18N_OPTIONS = {
supportedLangs: SUPPORTED_LANGUAGE_CODES,
sourceLang: 'en',
+ defaultLocale: 'en-US',
} as const;
type SupportedLanguage = {
diff --git a/packages/lib/jobs/client/local.ts b/packages/lib/jobs/client/local.ts
index 8a307f082..a0405dbf1 100644
--- a/packages/lib/jobs/client/local.ts
+++ b/packages/lib/jobs/client/local.ts
@@ -6,7 +6,7 @@ import { json } from 'micro';
import { prisma } from '@documenso/prisma';
import { BackgroundJobStatus, Prisma } from '@documenso/prisma/client';
-import { NEXT_PUBLIC_WEBAPP_URL } from '../../constants/app';
+import { NEXT_PRIVATE_INTERNAL_WEBAPP_URL } from '../../constants/app';
import { sign } from '../../server-only/crypto/sign';
import { verify } from '../../server-only/crypto/verify';
import {
@@ -229,7 +229,7 @@ export class LocalJobProvider extends BaseJobProvider {
}) {
const { jobId, jobDefinitionId, data, isRetry } = options;
- const endpoint = `${NEXT_PUBLIC_WEBAPP_URL()}/api/jobs/${jobDefinitionId}/${jobId}`;
+ const endpoint = `${NEXT_PRIVATE_INTERNAL_WEBAPP_URL}/api/jobs/${jobDefinitionId}/${jobId}`;
const signature = sign(data);
const headers: Record = {
diff --git a/packages/lib/server-only/feature-flags/all.ts b/packages/lib/server-only/feature-flags/all.ts
index 71efd5425..05163b356 100644
--- a/packages/lib/server-only/feature-flags/all.ts
+++ b/packages/lib/server-only/feature-flags/all.ts
@@ -5,7 +5,7 @@ import { getToken } from 'next-auth/jwt';
import { LOCAL_FEATURE_FLAGS } from '@documenso/lib/constants/feature-flags';
import PostHogServerClient from '@documenso/lib/server-only/feature-flags/get-post-hog-server-client';
-import { NEXT_PUBLIC_MARKETING_URL, NEXT_PUBLIC_WEBAPP_URL } from '../../constants/app';
+import { NEXT_PUBLIC_MARKETING_URL, NEXT_PUBLIC_WEBAPP_URL, NEXT_PRIVATE_INTERNAL_WEBAPP_URL } from '../../constants/app';
import { extractDistinctUserId, mapJwtToFlagProperties } from './get';
/**
@@ -46,6 +46,10 @@ export default async function handlerFeatureFlagAll(req: Request) {
if (origin.startsWith(NEXT_PUBLIC_MARKETING_URL() ?? 'http://localhost:3001')) {
res.headers.set('Access-Control-Allow-Origin', origin);
}
+
+ if (origin.startsWith(NEXT_PRIVATE_INTERNAL_WEBAPP_URL ?? 'http://localhost:3000')) {
+ res.headers.set('Access-Control-Allow-Origin', origin);
+ }
}
return res;
diff --git a/packages/lib/server-only/feature-flags/get.ts b/packages/lib/server-only/feature-flags/get.ts
index 5b2b3b7fd..46a223d14 100644
--- a/packages/lib/server-only/feature-flags/get.ts
+++ b/packages/lib/server-only/feature-flags/get.ts
@@ -7,7 +7,7 @@ import { getToken } from 'next-auth/jwt';
import { LOCAL_FEATURE_FLAGS, extractPostHogConfig } from '@documenso/lib/constants/feature-flags';
import PostHogServerClient from '@documenso/lib/server-only/feature-flags/get-post-hog-server-client';
-import { NEXT_PUBLIC_MARKETING_URL, NEXT_PUBLIC_WEBAPP_URL } from '../../constants/app';
+import { NEXT_PUBLIC_MARKETING_URL, NEXT_PUBLIC_WEBAPP_URL, NEXT_PRIVATE_INTERNAL_WEBAPP_URL } from '../../constants/app';
/**
* Evaluate a single feature flag based on the current user if possible.
@@ -67,6 +67,10 @@ export default async function handleFeatureFlagGet(req: Request) {
if (origin.startsWith(NEXT_PUBLIC_MARKETING_URL() ?? 'http://localhost:3001')) {
res.headers.set('Access-Control-Allow-Origin', origin);
}
+
+ if (origin.startsWith(NEXT_PRIVATE_INTERNAL_WEBAPP_URL ?? 'http://localhost:3000')) {
+ res.headers.set('Access-Control-Allow-Origin', origin);
+ }
}
return res;
diff --git a/packages/lib/server-only/field/set-fields-for-template.ts b/packages/lib/server-only/field/set-fields-for-template.ts
index c38d96b76..88002479a 100644
--- a/packages/lib/server-only/field/set-fields-for-template.ts
+++ b/packages/lib/server-only/field/set-fields-for-template.ts
@@ -107,7 +107,10 @@ export const setFieldsForTemplate = async ({
}
}
- if (field.type === FieldType.CHECKBOX && field.fieldMeta) {
+ if (field.type === FieldType.CHECKBOX) {
+ if (!field.fieldMeta) {
+ throw new Error('Checkbox field is missing required metadata');
+ }
const checkboxFieldParsedMeta = ZCheckboxFieldMeta.parse(field.fieldMeta);
const errors = validateCheckboxField(
checkboxFieldParsedMeta?.values?.map((item) => item.value) ?? [],
@@ -118,7 +121,10 @@ export const setFieldsForTemplate = async ({
}
}
- if (field.type === FieldType.RADIO && field.fieldMeta) {
+ if (field.type === FieldType.RADIO) {
+ if (!field.fieldMeta) {
+ throw new Error('Radio field is missing required metadata');
+ }
const radioFieldParsedMeta = ZRadioFieldMeta.parse(field.fieldMeta);
const checkedRadioFieldValue = radioFieldParsedMeta.values?.find(
(option) => option.checked,
@@ -129,7 +135,10 @@ export const setFieldsForTemplate = async ({
}
}
- if (field.type === FieldType.DROPDOWN && field.fieldMeta) {
+ if (field.type === FieldType.DROPDOWN) {
+ if (!field.fieldMeta) {
+ throw new Error('Dropdown field is missing required metadata');
+ }
const dropdownFieldParsedMeta = ZDropdownFieldMeta.parse(field.fieldMeta);
const errors = validateDropdownField(undefined, dropdownFieldParsedMeta);
if (errors.length > 0) {
diff --git a/packages/lib/server-only/headers/get-locale.tsx b/packages/lib/server-only/headers/get-locale.tsx
deleted file mode 100644
index 417d86e43..000000000
--- a/packages/lib/server-only/headers/get-locale.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-import { headers } from 'next/headers';
-
-export const getLocale = () => {
- const headerItems = headers();
-
- const locales = headerItems.get('accept-language') ?? 'en-US';
-
- const [locale] = locales.split(',');
-
- return locale;
-};
diff --git a/packages/lib/server-only/i18n/switch-i18n-language.ts b/packages/lib/server-only/i18n/switch-i18n-language.ts
index 168d3e00c..6465f7ff8 100644
--- a/packages/lib/server-only/i18n/switch-i18n-language.ts
+++ b/packages/lib/server-only/i18n/switch-i18n-language.ts
@@ -4,5 +4,5 @@ import { cookies } from 'next/headers';
// eslint-disable-next-line @typescript-eslint/require-await
export const switchI18NLanguage = async (lang: string) => {
- cookies().set('i18n', lang);
+ cookies().set('language', lang);
};
diff --git a/packages/lib/server-only/recipient/update-recipient.ts b/packages/lib/server-only/recipient/update-recipient.ts
index 6d7d6c7e8..2b5ad43c8 100644
--- a/packages/lib/server-only/recipient/update-recipient.ts
+++ b/packages/lib/server-only/recipient/update-recipient.ts
@@ -1,9 +1,16 @@
+import { isUserEnterprise } from '@documenso/ee/server-only/util/is-document-enterprise';
import { prisma } from '@documenso/prisma';
import type { RecipientRole, Team } from '@documenso/prisma/client';
+import { AppError, AppErrorCode } from '../../errors/app-error';
import { DOCUMENT_AUDIT_LOG_TYPE } from '../../types/document-audit-logs';
+import {
+ type TRecipientActionAuthTypes,
+ ZRecipientAuthOptionsSchema,
+} from '../../types/document-auth';
import type { RequestMetadata } from '../../universal/extract-request-metadata';
import { createDocumentAuditLogData, diffRecipientChanges } from '../../utils/document-audit-logs';
+import { createRecipientAuthOptions } from '../../utils/document-auth';
export type UpdateRecipientOptions = {
documentId: number;
@@ -11,6 +18,7 @@ export type UpdateRecipientOptions = {
email?: string;
name?: string;
role?: RecipientRole;
+ actionAuth?: TRecipientActionAuthTypes | null;
userId: number;
teamId?: number;
requestMetadata?: RequestMetadata;
@@ -22,6 +30,7 @@ export const updateRecipient = async ({
email,
name,
role,
+ actionAuth,
userId,
teamId,
requestMetadata,
@@ -48,6 +57,9 @@ export const updateRecipient = async ({
}),
},
},
+ include: {
+ Document: true,
+ },
});
let team: Team | null = null;
@@ -75,6 +87,22 @@ export const updateRecipient = async ({
throw new Error('Recipient not found');
}
+ if (actionAuth) {
+ const isDocumentEnterprise = await isUserEnterprise({
+ userId,
+ teamId,
+ });
+
+ if (!isDocumentEnterprise) {
+ throw new AppError(
+ AppErrorCode.UNAUTHORIZED,
+ 'You do not have permission to set the action auth',
+ );
+ }
+ }
+
+ const recipientAuthOptions = ZRecipientAuthOptionsSchema.parse(recipient.authOptions);
+
const updatedRecipient = await prisma.$transaction(async (tx) => {
const persisted = await prisma.recipient.update({
where: {
@@ -84,6 +112,10 @@ export const updateRecipient = async ({
email: email?.toLowerCase() ?? recipient.email,
name: name ?? recipient.name,
role: role ?? recipient.role,
+ authOptions: createRecipientAuthOptions({
+ accessAuth: recipientAuthOptions.accessAuth,
+ actionAuth: actionAuth ?? null,
+ }),
},
});
diff --git a/packages/lib/server-only/webhooks/trigger/trigger-webhook.ts b/packages/lib/server-only/webhooks/trigger/trigger-webhook.ts
index e0a5eaaaf..e226c808d 100644
--- a/packages/lib/server-only/webhooks/trigger/trigger-webhook.ts
+++ b/packages/lib/server-only/webhooks/trigger/trigger-webhook.ts
@@ -1,6 +1,6 @@
import type { WebhookTriggerEvents } from '@documenso/prisma/client';
-import { NEXT_PUBLIC_WEBAPP_URL } from '../../../constants/app';
+import { NEXT_PRIVATE_INTERNAL_WEBAPP_URL } from '../../../constants/app';
import { sign } from '../../crypto/sign';
import { getAllWebhooksByEventTrigger } from '../get-all-webhooks-by-event-trigger';
@@ -29,7 +29,7 @@ export const triggerWebhook = async ({ event, data, userId, teamId }: TriggerWeb
const signature = sign(body);
await Promise.race([
- fetch(`${NEXT_PUBLIC_WEBAPP_URL()}/api/webhook/trigger`, {
+ fetch(`${NEXT_PRIVATE_INTERNAL_WEBAPP_URL}/api/webhook/trigger`, {
method: 'POST',
headers: {
'content-type': 'application/json',
diff --git a/packages/lib/translations/de/common.po b/packages/lib/translations/de/common.po
index 886448ec4..0db7dbe44 100644
--- a/packages/lib/translations/de/common.po
+++ b/packages/lib/translations/de/common.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-08-27 16:03\n"
+"PO-Revision-Date: 2024-09-05 06:04\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -116,7 +116,7 @@ msgid "Advanced Options"
msgstr "Erweiterte Optionen"
#: packages/ui/primitives/document-flow/add-fields.tsx:510
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:370
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:402
msgid "Advanced settings"
msgstr "Erweiterte Einstellungen"
@@ -140,7 +140,15 @@ msgstr "Genehmiger"
msgid "Approving"
msgstr "Genehmigung"
-#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:297
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:276
+msgid "Black"
+msgstr ""
+
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:290
+msgid "Blue"
+msgstr ""
+
+#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:287
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:58
msgid "Cancel"
msgstr "Abbrechen"
@@ -167,7 +175,7 @@ msgid "Character Limit"
msgstr "Zeichenbeschränkung"
#: packages/ui/primitives/document-flow/add-fields.tsx:932
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:756
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:788
msgid "Checkbox"
msgstr "Checkbox"
@@ -179,7 +187,7 @@ msgstr "Checkbox-Werte"
msgid "Clear filters"
msgstr "Filter löschen"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx:256
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:310
msgid "Clear Signature"
msgstr "Unterschrift löschen"
@@ -196,7 +204,7 @@ msgid "Configure Direct Recipient"
msgstr "Direkten Empfänger konfigurieren"
#: packages/ui/primitives/document-flow/add-fields.tsx:511
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:371
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:403
msgid "Configure the {0} field"
msgstr "Konfigurieren Sie das Feld {0}"
@@ -213,7 +221,7 @@ msgid "Custom Text"
msgstr "Benutzerdefinierter Text"
#: packages/ui/primitives/document-flow/add-fields.tsx:828
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:652
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:684
msgid "Date"
msgstr "Datum"
@@ -245,7 +253,7 @@ msgid "Drag & drop your PDF here."
msgstr "Ziehen Sie Ihr PDF hierher."
#: packages/ui/primitives/document-flow/add-fields.tsx:958
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:782
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:814
msgid "Dropdown"
msgstr "Dropdown"
@@ -257,7 +265,7 @@ msgstr "Dropdown-Optionen"
#: packages/ui/primitives/document-flow/add-signature.tsx:272
#: packages/ui/primitives/document-flow/add-signers.tsx:232
#: packages/ui/primitives/document-flow/add-signers.tsx:239
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:600
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:632
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:210
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:217
msgid "Email"
@@ -275,7 +283,7 @@ msgstr "Direktlink-Signierung aktivieren"
msgid "Enter password"
msgstr "Passwort eingeben"
-#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:226
+#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:216
msgid "Error"
msgstr "Fehler"
@@ -284,7 +292,7 @@ msgstr "Fehler"
msgid "External ID"
msgstr "Externe ID"
-#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:227
+#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:217
msgid "Failed to save settings."
msgstr "Einstellungen konnten nicht gespeichert werden."
@@ -312,6 +320,10 @@ msgstr "Globale Empfängerauthentifizierung"
msgid "Go Back"
msgstr "Zurück"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:297
+msgid "Green"
+msgstr ""
+
#: packages/lib/constants/recipient-roles.ts:72
msgid "I am a signer of this document"
msgstr "Ich bin ein Unterzeichner dieses Dokuments"
@@ -367,7 +379,7 @@ msgstr "Min"
#: packages/ui/primitives/document-flow/add-fields.tsx:802
#: packages/ui/primitives/document-flow/add-signature.tsx:298
#: packages/ui/primitives/document-flow/add-signers.tsx:265
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:626
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:658
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:245
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:251
msgid "Name"
@@ -386,12 +398,12 @@ msgid "Needs to view"
msgstr "Muss sehen"
#: packages/ui/primitives/document-flow/add-fields.tsx:613
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:465
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:497
msgid "No recipient matching this description was found."
msgstr "Kein passender Empfänger mit dieser Beschreibung gefunden."
#: packages/ui/primitives/document-flow/add-fields.tsx:629
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:481
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:513
msgid "No recipients with this role"
msgstr "Keine Empfänger mit dieser Rolle"
@@ -416,7 +428,7 @@ msgid "No value found."
msgstr "Kein Wert gefunden."
#: packages/ui/primitives/document-flow/add-fields.tsx:880
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:704
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:736
msgid "Number"
msgstr "Nummer"
@@ -451,7 +463,7 @@ msgid "Placeholder"
msgstr "Platzhalter"
#: packages/ui/primitives/document-flow/add-fields.tsx:906
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:730
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:762
msgid "Radio"
msgstr "Radio"
@@ -477,6 +489,10 @@ msgstr "Erhält Kopie"
msgid "Recipient action authentication"
msgstr "Empfängeraktion Authentifizierung"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:283
+msgid "Red"
+msgstr ""
+
#: packages/ui/primitives/document-flow/add-settings.tsx:298
#: packages/ui/primitives/template-flow/add-template-settings.tsx:332
msgid "Redirect URL"
@@ -498,14 +514,18 @@ msgstr "Pflichtfeld"
msgid "Rows per page"
msgstr "Zeilen pro Seite"
-#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:296
+#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:286
msgid "Save"
msgstr "Speichern"
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:798
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:848
msgid "Save Template"
msgstr "Vorlage speichern"
+#: packages/ui/components/common/language-switcher-dialog.tsx:34
+msgid "Search languages..."
+msgstr "Sprachen suchen..."
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:105
msgid "Select"
msgstr "Auswählen"
@@ -552,7 +572,7 @@ msgstr "Unterschreiben"
#: packages/ui/primitives/document-flow/add-fields.tsx:724
#: packages/ui/primitives/document-flow/add-signature.tsx:323
#: packages/ui/primitives/document-flow/field-icon.tsx:52
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:548
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:580
msgid "Signature"
msgstr "Unterschrift"
@@ -598,7 +618,7 @@ msgid "Template title"
msgstr "Vorlagentitel"
#: packages/ui/primitives/document-flow/add-fields.tsx:854
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:678
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:710
msgid "Text"
msgstr "Text"
@@ -688,6 +708,7 @@ msgid "Title"
msgstr "Titel"
#: packages/ui/primitives/document-flow/add-fields.tsx:971
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:828
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "Um fortzufahren, legen Sie bitte mindestens einen Wert für das Feld {0} fest."
@@ -733,6 +754,10 @@ msgstr "Viewer"
msgid "Viewing"
msgstr "Viewing"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:280
+#~ msgid "White"
+#~ msgstr ""
+
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
msgstr "Sie sind dabei, dieses Dokument an die Empfänger zu senden. Sind Sie sicher, dass Sie fortfahren möchten?"
diff --git a/packages/lib/translations/de/marketing.js b/packages/lib/translations/de/marketing.js
index 3f897d5fb..89b04ae16 100644
--- a/packages/lib/translations/de/marketing.js
+++ b/packages/lib/translations/de/marketing.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"u0zktA\":\"5 standard documents per month\",\"rKtmiD\":\"5 Users Included\",\"vaHmll\":\"A 10x better signing experience.\",\"t7ZCoe\":\"Dokument hinzufügen\",\"gBefbz\":[\"Add More Users for \",[\"0\"]],\"XkF8tv\":\"All our metrics, finances, and learnings are public. We believe in transparency and want to share our journey with you. You can read more about why here: <0>Announcing Open Metrics0>\",\"tkQ/WI\":\"Amount Raised\",\"qOMroC\":\"API Access\",\"FNv8t7\":\"Beautiful.\",\"W/TUoX\":\"Because signing should be celebrated. That’s why we care about the smallest detail in our product.\",\"astDB+\":\"Blog\",\"7zGun7\":\"Build on top.\",\"fxgcNV\":\"Can I use Documenso commercially?\",\"V+D/YP\":\"Careers\",\"CWe7wB\":\"Changelog\",\"JZbmjL\":\"Choose a template from the community app store. Or submit your own template for others to use.\",\"chL5IG\":\"Community\",\"p5+XQN\":\"Completed Documents\",\"NApCXa\":\"Completed Documents per Month\",\"z5kV0h\":\"Connections\",\"YcfUZ9\":\"Contact Us\",\"1NJjIG\":\"Create connections and automations with Zapier and more to integrate with your favorite tools.\",\"rr83qK\":\"Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp.\",\"75ojt0\":\"Customers with an Active Subscriptions.\",\"pF9qTh\":\"Customise and expand.\",\"f8fH8W\":\"Design\",\"W6qD1T\":\"Designed for every stage of your journey.\",\"K6KbY4\":\"Direct Link\",\"aLD+Td\":\"Documenso is a community effort to create an open and vibrant ecosystem around a tool, everybody is free to use and adapt. By being truly open we want to create trusted infrastructure for the future of the internet.\",\"32yG8y\":\"Documenso on X\",\"+1xAO7\":\"Document signing,<0/>finally open source.\",\"TvY/XA\":\"Documentation\",\"tSS7hj\":\"Easily embed Documenso into your product. Simply copy and paste our react widget into your application.\",\"LRAhFG\":\"Easy Sharing.\",\"V6EY8B\":\"Email and Discord Support\",\"C0/bri\":\"Engagement\",\"JejrgO\":\"Geben Sie Ihre Details ein.\",\"8Zy3YU\":\"Enterprise Compliance, License or Technical Needs?\",\"ZSW8id\":\"Everything you need for a great signing experience.\",\"sXswT6\":\"Fast.\",\"cT9Z9e\":\"Faster, smarter and more beautiful.\",\"k/ANik\":\"Finances\",\"I7Exsw\":\"Follow us on X\",\"f3Botn\":\"For companies looking to scale across multiple teams.\",\"y2DcZj\":\"For small teams and individuals with basic needs.\",\"2POOFK\":\"Free\",\"OdieZe\":\"From the blog\",\"IPgkVQ\":\"Full-Time\",\"aSWzT9\":\"Get paid (Soon).\",\"ZDIydz\":\"Get started\",\"c3b0B0\":\"Get Started\",\"pS8wej\":\"Get started today.\",\"7FPIvI\":\"Get the latest news from Documenso, including product updates, team announcements and more!\",\"kV0qBq\":\"GitHub: Total Merged PRs\",\"652R6j\":\"GitHub: Total Open Issues\",\"R1aJ0W\":\"GitHub: Total Stars\",\"P1ovAc\":\"Global Salary Bands\",\"IAq/yr\":\"Growth\",\"Xi7f+z\":\"How can I contribute?\",\"9VGuMA\":\"How do you handle my data?\",\"fByw/g\":\"Individual\",\"Csm+TN\":\"Integrated payments with Stripe so you don’t have to worry about getting paid.\",\"phSPy7\":\"Integrates with all your favourite tools.\",\"pfjrI2\":\"Is there more?\",\"LOyqaC\":\"It’s up to you. Either clone our repository or rely on our easy to use hosting solution.\",\"PCgMVa\":\"Join Date\",\"TgL4dH\":\"Join the Open Signing Movement\",\"wJijgU\":\"Location\",\"OIowgO\":\"Make it your own through advanced customization and adjustability.\",\"GHelWd\":\"Merged PR's\",\"vXBVQZ\":\"Merged PRs\",\"+8Nek/\":\"Monthly\",\"6YtxFj\":\"Name\",\"CtgXe4\":\"New Users\",\"OpNhRn\":\"No credit card required\",\"6C9AxJ\":\"No Credit Card required\",\"igwAqT\":\"None of these work for you? Try self-hosting!\",\"jjAtjQ\":\"Open Issues\",\"b76QYo\":\"Open Source or Hosted.\",\"OWsQIe\":\"Open Startup\",\"Un80BR\":\"OSS Friends\",\"6zNyfI\":\"Our custom templates come with smart rules that can help you save time and energy.\",\"+OmhKD\":\"Our Enterprise License is great for large organizations looking to switch to Documenso for all their signing needs. It's available for our cloud offering as well as self-hosted setups and offers a wide range of compliance and Adminstration Features.\",\"I2ufwS\":\"Our self-hosted option is great for small teams and individuals who need a simple solution. You can use our docker based setup to get started in minutes. Take control with full customizability and data ownership.\",\"F9564X\":\"Part-Time\",\"qJVkX+\":\"Premium Profile Name\",\"aHCEmh\":\"Pricing\",\"rjGI/Q\":\"Privacy\",\"vERlcd\":\"Profile\",\"77/8W2\":\"React Widget (Soon).\",\"OYoVNk\":\"Receive your personal link to share with everyone you care about.\",\"GDvlUT\":\"Role\",\"bUqwb8\":\"Salary\",\"GNfoAO\":\"Save $60 or $120\",\"StoBff\":\"Search languages...\",\"dhi4w4\":\"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.\",\"kZBxnz\":\"Send, connect, receive and embed everywhere.\",\"eSfS30\":\"Seniority\",\"aoDa18\":\"Shop\",\"c+Fnce\":\"Unterschreiben\",\"5lWFkC\":\"Sign in\",\"e+RpCP\":\"Sign up\",\"4yiZOB\":\"Signing Process\",\"RkUXMm\":\"Signup Now\",\"omz3DH\":\"Smart.\",\"AvYbUL\":\"Star on GitHub\",\"y2dGtU\":\"Stars\",\"uAQUqI\":\"Status\",\"XYLcNv\":\"Support\",\"KM6m8p\":\"Team\",\"lm5v+6\":\"Team Inbox\",\"CAL6E9\":\"Teams\",\"w4nM1s\":\"Template Store (Soon).\",\"yFoQ27\":\"That's awesome. You can take a look at the current <0>Issues0> and join our <1>Discord Community1> to keep up to date, on what the current priorities are. In any case, we are an open community and welcome all input, technical and non-technical ❤️\",\"GE1BlA\":\"This page is evolving as we learn what makes a great signing company. We'll update it when we have more to share.\",\"MHrjPM\":\"Titel\",\"2YvdxE\":\"Total Completed Documents\",\"8e4lIo\":\"Total Customers\",\"bPpoCb\":\"Total Funding Raised\",\"vb0Q0/\":\"Total Users\",\"mgQhDS\":\"Truly your own.\",\"4McJfQ\":\"Try our Free Plan\",\"9mkNAn\":\"Twitter Stats\",\"CHzOWB\":\"Unlimited Documents per Month\",\"BOV7DD\":\"Up to 10 recipients per document\",\"fydTfa\":\"Laden Sie ein Dokument hoch und fügen Sie Felder hinzu.\",\"vdAd7c\":\"Using our hosted version is the easiest way to get started, you can simply subscribe and start signing your documents. We take care of the infrastructure, so you can focus on your business. Additionally, when using our hosted version you benefit from our trusted signing certificates which helps you to build trust with your customers.\",\"W2nDs0\":\"View all stats\",\"WMfAK8\":\"We are happy to assist you at <0>support@documenso.com0> or <1>in our Discord-Support-Channel1> please message either Lucas or Timur to get added to the channel if you are not already a member.\",\"ZaMyxU\":\"What is the difference between the plans?\",\"8GpyFt\":\"When it comes to sending or receiving a contract, you can count on lightning-fast speeds.\",\"HEDnID\":\"Where can I get support?\",\"sib3h3\":\"Why should I prefer Documenso over DocuSign or some other signing tool?\",\"cVPDPt\":\"Why should I use your hosting service?\",\"zkWmBh\":\"Yearly\",\"8AKApo\":\"Yes! Documenso is offered under the GNU AGPL V3 open source license. This means you can use it for free and even modify it to fit your needs, as long as you publish your changes under the same license.\",\"rzQpex\":\"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.\",\"1j9aoC\":\"Your browser does not support the video tag.\",\"Lg0j3K\":\"Ihr Browser unterstützt das Video-Tag nicht.>>>>>>> main\",\"73XXzw\":[[\"0\"],\" von \",[\"1\"],\" Zeile(n) ausgewählt.\"],\"lZ4w45\":[[\"visibleRows\",\"plural\",{\"one\":[\"Eine \",\"#\",\" Ergebnis wird angezeigt.\"],\"other\":[\"#\",\" Ergebnisse werden angezeigt.\"]}]],\"AhYxw5\":\"<0>Authentifizierungsmethode erben0> - Verwenden Sie die in den \\\"Allgemeinen Einstellungen\\\" konfigurierte globale Aktionssignatur-Authentifizierungsmethode\",\"OepImG\":\"<0>Keine Einschränkungen0> - Keine Authentifizierung erforderlich\",\"07+JZ2\":\"<0>Keine Einschränkungen0> - Das Dokument kann direkt über die dem Empfänger gesendete URL abgerufen werden\",\"jx/lwn\":\"<0>Keine0> - Keine Authentifizierung erforderlich\",\"CUT3u1\":\"<0>2FA erforderlich0> - Der Empfänger muss ein Konto haben und die 2FA über seine Einstellungen aktiviert haben\",\"2PbD3D\":\"<0>Konto erforderlich0> - Der Empfänger muss angemeldet sein, um das Dokument anzeigen zu können\",\"QHSbey\":\"<0>Passkey erforderlich0> - Der Empfänger muss ein Konto haben und den Passkey über seine Einstellungen konfiguriert haben\",\"Oy5nEc\":\"Dokument hinzufügen\",\"7Pz5x5\":\"Fügen Sie eine URL hinzu, um den Benutzer nach der Unterzeichnung des Dokuments weiterzuleiten\",\"aILOUH\":\"Fügen Sie dem Dokument eine externe ID hinzu. Diese kann verwendet werden, um das Dokument in externen Systemen zu identifizieren.\",\"bK1dPK\":\"Fügen Sie der Vorlage eine externe ID hinzu. Diese kann zur Identifizierung in externen Systemen verwendet werden.\",\"nnZ1Sa\":\"Weitere Option hinzufügen\",\"0/UVRw\":\"Weiteren Wert hinzufügen\",\"VaCh6w\":\"Mich selbst hinzufügen\",\"jAa/lz\":\"Mich hinzufügen\",\"29QK6H\":\"Platzhalterempfänger hinzufügen\",\"vcxlzZ\":\"Unterzeichner hinzufügen\",\"MwcOtB\":\"Text hinzufügen\",\"7F2ltK\":\"Text zum Feld hinzufügen\",\"U3pytU\":\"Admin\",\"NFIOKv\":\"Erweiterte Optionen\",\"VNgKZz\":\"Erweiterte Einstellungen\",\"bNUpvl\":\"Nach der Übermittlung wird ein Dokument automatisch generiert und zu Ihrer Dokumentenseite hinzugefügt. Sie erhalten außerdem eine Benachrichtigung per E-Mail.\",\"Z7ZXbT\":\"Genehmigen\",\"7kb4LU\":\"Genehmigt\",\"ca9AbO\":\"Genehmiger\",\"j2Uisd\":\"Genehmigung\",\"dEgA5A\":\"Abbrechen\",\"brJrDl\":\"Unterzeichner kann nicht entfernt werden\",\"RpYfjZ\":\"Cc\",\"XdZeJk\":\"CC\",\"nrL/ZD\":\"CC'd\",\"EEk+d0\":\"Zeichenbeschränkung\",\"G1XxbZ\":\"Checkbox\",\"wbixMe\":\"Checkbox-Werte\",\"u8JHrO\":\"Filter löschen\",\"IqxkER\":\"Unterschrift löschen\",\"eZ6/Uj\":\"Klicken, um das Feld einzufügen\",\"yz7wBu\":\"Schließen\",\"OrcxNk\":\"Direkten Empfänger konfigurieren\",\"92KLYs\":[\"Konfigurieren Sie das Feld \",[\"0\"]],\"xGVfLh\":\"Fortsetzen\",\"FxVG/l\":\"In die Zwischenablage kopiert\",\"GB2F11\":\"Benutzerdefinierter Text\",\"mYGY3B\":\"Datum\",\"4BHv90\":\"Datumsformat\",\"NLXhq7\":\"Empfänger des direkten Links\",\"YScG1E\":\"Dokumentenzugriff\",\"rAqi0g\":\"Dokumenterstellung\",\"mzI/c+\":\"Herunterladen\",\"6GyScL\":\"Ziehen Sie Ihr PDF hierher.\",\"iKQcPM\":\"Dropdown\",\"XXvhMd\":\"Dropdown-Optionen\",\"O3oNi5\":\"E-Mail\",\"XLpxoj\":\"E-Mail-Optionen\",\"qChNnS\":\"Direktlink-Signierung aktivieren\",\"f7sXvi\":\"Passwort eingeben\",\"SlfejT\":\"Fehler\",\"5KfWxA\":\"Externe ID\",\"4CP+OV\":\"Einstellungen konnten nicht gespeichert werden.\",\"LK3SFK\":\"Zeichenbeschränkung des Feldes\",\"NYkIsf\":\"Feldformat\",\"X6Tb6Q\":\"Feldbeschriftung\",\"NaVkSD\":\"Feldplatzhalter\",\"N1UTWT\":\"Globale Empfängerauthentifizierung\",\"sr0UJD\":\"Zurück\",\"uCroPU\":\"Ich bin ein Unterzeichner dieses Dokuments\",\"K6KTX2\":\"Ich bin ein Betrachter dieses Dokuments\",\"ngj5km\":\"Ich bin ein Genehmiger dieses Dokuments\",\"JUZIGu\":\"Ich bin verpflichtet, eine Kopie dieses Dokuments zu erhalten\",\"ZjDoG7\":\"I am required to recieve a copy of this document\",\"fnbcC0\":\"Authentifizierungsmethode erben\",\"87a/t/\":\"Beschriftung\",\"dtOoGl\":\"Manager\",\"CK1KXz\":\"Max\",\"OvoEq7\":\"Mitglied\",\"ziXm9u\":\"Nachricht <0>(Optional)0>\",\"eTUF28\":\"Min\",\"4nqUV0\":\"Muss genehmigen\",\"lNQBPg\":\"Muss unterzeichnen\",\"eUAUyG\":\"Muss sehen\",\"GBIRGD\":\"Kein passender Empfänger mit dieser Beschreibung gefunden.\",\"f34Qxi\":\"Keine Empfänger mit dieser Rolle\",\"qQ7oqE\":\"Keine Einschränkungen\",\"AxPAXW\":\"Keine Ergebnisse gefunden\",\"pt86ev\":\"Kein Unterschriftsfeld gefunden\",\"CSOFdu\":\"Kein Wert gefunden.\",\"HptUxX\":\"Nummer\",\"bR2sEm\":\"Zahlenformat\",\"eY6ns+\":\"Sobald aktiviert, können Sie einen aktiven Empfänger für die Direktlink-Signierung auswählen oder einen neuen erstellen. Dieser Empfängertyp kann nicht bearbeitet oder gelöscht werden.\",\"JE2qy+\":\"Sobald Ihre Vorlage eingerichtet ist, teilen Sie den Link überall, wo Sie möchten. Die Person, die den Link öffnet, kann ihre Informationen im Feld für direkte Empfänger eingeben und alle anderen ihr zugewiesenen Felder ausfüllen.\",\"fpzyLj\":[\"Seite \",[\"0\"],\" von \",[\"1\"]],\"8ltyoa\":\"Passwort erforderlich\",\"ayaTI6\":\"Wählen Sie eine Zahl\",\"hx1ePY\":\"Platzhalter\",\"MtkqZc\":\"Radio\",\"5cEi0C\":\"Radio-Werte\",\"uNQ6eB\":\"Nur lesen\",\"UTnF5X\":\"Erhält Kopie\",\"ZIuo5V\":\"Empfängeraktion Authentifizierung\",\"VTB2Rz\":\"Weiterleitungs-URL\",\"t/YqKh\":\"Entfernen\",\"8dg+Yo\":\"Pflichtfeld\",\"xxCtZv\":\"Zeilen pro Seite\",\"tfDRzk\":\"Speichern\",\"9Y3hAT\":\"Vorlage speichern\",\"rG3WVm\":\"Auswählen\",\"hVPa4O\":\"Option auswählen\",\"IM+vrQ\":\"Wählen Sie mindestens\",\"Gve6FG\":\"Standardoption auswählen\",\"JlFcis\":\"Senden\",\"AEV4wo\":\"Dokument senden\",\"iE3nGO\":\"Unterschriftenkarte teilen\",\"y+hKWu\":\"Link teilen\",\"ydZ6yi\":\"Erweiterte Einstellungen anzeigen\",\"n+8yVN\":\"Unterschrift\",\"PoH7eg\":\"Unterzeichnet\",\"jTCAGu\":\"Unterzeichner\",\"6G8s+q\":\"Unterzeichnung\",\"kW2h2Z\":\"Einige Unterzeichner haben noch kein Unterschriftsfeld zugewiesen bekommen. Bitte weisen Sie jedem Unterzeichner mindestens ein Unterschriftsfeld zu, bevor Sie fortfahren.\",\"nwtY4N\":\"Etwas ist schief gelaufen\",\"kf83Ld\":\"Etwas ist schief gelaufen.\",\"WlBiWh\":[\"Schritt <0>\",[\"step\"],\" von \",[\"maxStep\"],\"0>\"],\"ki77Td\":\"Betreff <0>(Optional)0>\",\"hQRttt\":\"Einreichen\",\"URdrTr\":\"Vorlagentitel\",\"xeiujy\":\"Text\",\"imClgr\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger Felder signieren\",\"yyD2dE\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger das Signaturfeld signieren können.\",\"GtDmLf\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger das Dokument anzeigen können.\",\"zAoaPB\":\"Der Name des Dokuments\",\"Ev3GOS\":\"Das eingegebene Passwort ist falsch. Bitte versuchen Sie es erneut.\",\"OPnnb6\":\"Der Empfänger muss keine Aktion ausführen und erhält nach Abschluss eine Kopie des Dokuments.\",\"v8p6Mb\":\"Der Empfänger muss das Dokument genehmigen, damit es abgeschlossen werden kann.\",\"CPv0TB\":\"Der Empfänger muss das Dokument unterschreiben, damit es abgeschlossen werden kann.\",\"oIvIfH\":\"Der Empfänger muss das Dokument anzeigen, damit es abgeschlossen werden kann.\",\"Br2bvS\":\"Der Freigabelink konnte in diesem Moment nicht erstellt werden. Bitte versuchen Sie es erneut.\",\"XJIzqY\":\"Der Freigabelink wurde in Ihre Zwischenablage kopiert.\",\"UyM8/E\":\"Die E-Mail des Unterzeichners\",\"zHJ+vk\":\"Der Name des Unterzeichners\",\"kaEF2i\":\"Dies kann überschrieben werden, indem die Authentifizierungsanforderungen im nächsten Schritt direkt für jeden Empfänger festgelegt werden.\",\"QUZVfd\":\"Dieses Dokument wurde bereits an diesen Empfänger gesendet. Sie können diesen Empfänger nicht mehr bearbeiten.\",\"riNGUC\":\"Dieses Dokument ist durch ein Passwort geschützt. Bitte geben Sie das Passwort ein, um das Dokument anzusehen.\",\"Qkeh+t\":\"Dieses Feld kann nicht geändert oder gelöscht werden. Wenn Sie den direkten Link dieser Vorlage teilen oder zu Ihrem öffentlichen Profil hinzufügen, kann jeder, der darauf zugreift, seinen Namen und seine E-Mail-Adresse eingeben und die ihm zugewiesenen Felder ausfüllen.\",\"l2Xt6u\":\"Dieser Unterzeichner hat das Dokument bereits erhalten.\",\"6iFh5a\":\"Dies überschreibt alle globalen Einstellungen.\",\"RxsRD6\":\"Zeitzone\",\"UWmOq4\":[\"Um fortzufahren, legen Sie bitte mindestens einen Wert für das Feld \",[\"0\"],\" fest.\"],\"EkH9pt\":\"Aktualisieren\",\"GT+2nz\":\"Aktualisieren Sie die Rolle und fügen Sie Felder nach Bedarf für den direkten Empfänger hinzu. Die Person, die den direkten Link verwendet, wird das Dokument als direkter Empfänger unterzeichnen.\",\"kwkhPe\":\"Upgrade\",\"06fEqf\":\"Vorlagendokument hochladen\",\"lGWE4b\":\"Validierung\",\"wMHvYH\":\"Wert\",\"jpctdh\":\"View\",\"vXtpAZ\":\"Viewed\",\"M/TIv1\":\"Viewer\",\"RVWz5F\":\"Viewing\",\"4/hUq0\":\"Sie sind dabei, dieses Dokument an die Empfänger zu senden. Sind Sie sicher, dass Sie fortfahren möchten?\",\"rb/T41\":\"Sie können die folgenden Variablen in Ihrer Nachricht verwenden:\",\"9+Ph0R\":\"Sie können derzeit keine Dokumente hochladen.\",\"m5RA9C\":\"Sie haben Ihr Dokumentenlimit erreicht.\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"u0zktA\":\"5 standard documents per month\",\"rKtmiD\":\"5 Users Included\",\"vaHmll\":\"A 10x better signing experience.\",\"t7ZCoe\":\"Dokument hinzufügen\",\"gBefbz\":[\"Add More Users for \",[\"0\"]],\"XkF8tv\":\"All our metrics, finances, and learnings are public. We believe in transparency and want to share our journey with you. You can read more about why here: <0>Announcing Open Metrics0>\",\"tkQ/WI\":\"Amount Raised\",\"qOMroC\":\"API Access\",\"FNv8t7\":\"Beautiful.\",\"W/TUoX\":\"Because signing should be celebrated. That’s why we care about the smallest detail in our product.\",\"astDB+\":\"Blog\",\"7zGun7\":\"Build on top.\",\"fxgcNV\":\"Can I use Documenso commercially?\",\"V+D/YP\":\"Careers\",\"CWe7wB\":\"Changelog\",\"JZbmjL\":\"Choose a template from the community app store. Or submit your own template for others to use.\",\"chL5IG\":\"Community\",\"p5+XQN\":\"Completed Documents\",\"NApCXa\":\"Completed Documents per Month\",\"z5kV0h\":\"Connections\",\"YcfUZ9\":\"Contact Us\",\"1NJjIG\":\"Create connections and automations with Zapier and more to integrate with your favorite tools.\",\"rr83qK\":\"Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp.\",\"75ojt0\":\"Customers with an Active Subscriptions.\",\"pF9qTh\":\"Customise and expand.\",\"f8fH8W\":\"Design\",\"W6qD1T\":\"Designed for every stage of your journey.\",\"K6KbY4\":\"Direct Link\",\"aLD+Td\":\"Documenso is a community effort to create an open and vibrant ecosystem around a tool, everybody is free to use and adapt. By being truly open we want to create trusted infrastructure for the future of the internet.\",\"32yG8y\":\"Documenso on X\",\"+1xAO7\":\"Document signing,<0/>finally open source.\",\"TvY/XA\":\"Documentation\",\"tSS7hj\":\"Easily embed Documenso into your product. Simply copy and paste our react widget into your application.\",\"LRAhFG\":\"Easy Sharing.\",\"V6EY8B\":\"Email and Discord Support\",\"C0/bri\":\"Engagement\",\"JejrgO\":\"Geben Sie Ihre Details ein.\",\"8Zy3YU\":\"Enterprise Compliance, License or Technical Needs?\",\"ZSW8id\":\"Everything you need for a great signing experience.\",\"sXswT6\":\"Fast.\",\"cT9Z9e\":\"Faster, smarter and more beautiful.\",\"k/ANik\":\"Finances\",\"I7Exsw\":\"Follow us on X\",\"f3Botn\":\"For companies looking to scale across multiple teams.\",\"y2DcZj\":\"For small teams and individuals with basic needs.\",\"2POOFK\":\"Free\",\"OdieZe\":\"From the blog\",\"IPgkVQ\":\"Full-Time\",\"aSWzT9\":\"Get paid (Soon).\",\"ZDIydz\":\"Get started\",\"c3b0B0\":\"Get Started\",\"pS8wej\":\"Get started today.\",\"7FPIvI\":\"Get the latest news from Documenso, including product updates, team announcements and more!\",\"kV0qBq\":\"GitHub: Total Merged PRs\",\"652R6j\":\"GitHub: Total Open Issues\",\"R1aJ0W\":\"GitHub: Total Stars\",\"P1ovAc\":\"Global Salary Bands\",\"IAq/yr\":\"Growth\",\"Xi7f+z\":\"How can I contribute?\",\"9VGuMA\":\"How do you handle my data?\",\"fByw/g\":\"Individual\",\"Csm+TN\":\"Integrated payments with Stripe so you don’t have to worry about getting paid.\",\"phSPy7\":\"Integrates with all your favourite tools.\",\"pfjrI2\":\"Is there more?\",\"LOyqaC\":\"It’s up to you. Either clone our repository or rely on our easy to use hosting solution.\",\"PCgMVa\":\"Join Date\",\"TgL4dH\":\"Join the Open Signing Movement\",\"wJijgU\":\"Location\",\"OIowgO\":\"Make it your own through advanced customization and adjustability.\",\"GHelWd\":\"Merged PR's\",\"vXBVQZ\":\"Merged PRs\",\"+8Nek/\":\"Monthly\",\"6YtxFj\":\"Name\",\"CtgXe4\":\"New Users\",\"OpNhRn\":\"No credit card required\",\"6C9AxJ\":\"No Credit Card required\",\"igwAqT\":\"None of these work for you? Try self-hosting!\",\"jjAtjQ\":\"Open Issues\",\"b76QYo\":\"Open Source or Hosted.\",\"OWsQIe\":\"Open Startup\",\"Un80BR\":\"OSS Friends\",\"6zNyfI\":\"Our custom templates come with smart rules that can help you save time and energy.\",\"+OmhKD\":\"Our Enterprise License is great for large organizations looking to switch to Documenso for all their signing needs. It's available for our cloud offering as well as self-hosted setups and offers a wide range of compliance and Adminstration Features.\",\"I2ufwS\":\"Our self-hosted option is great for small teams and individuals who need a simple solution. You can use our docker based setup to get started in minutes. Take control with full customizability and data ownership.\",\"F9564X\":\"Part-Time\",\"qJVkX+\":\"Premium Profile Name\",\"aHCEmh\":\"Pricing\",\"rjGI/Q\":\"Privacy\",\"vERlcd\":\"Profile\",\"77/8W2\":\"React Widget (Soon).\",\"OYoVNk\":\"Receive your personal link to share with everyone you care about.\",\"GDvlUT\":\"Role\",\"bUqwb8\":\"Salary\",\"GNfoAO\":\"Save $60 or $120\",\"StoBff\":\"Search languages...\",\"dhi4w4\":\"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.\",\"kZBxnz\":\"Send, connect, receive and embed everywhere.\",\"eSfS30\":\"Seniority\",\"aoDa18\":\"Shop\",\"c+Fnce\":\"Unterschreiben\",\"5lWFkC\":\"Sign in\",\"e+RpCP\":\"Sign up\",\"4yiZOB\":\"Signing Process\",\"RkUXMm\":\"Signup Now\",\"omz3DH\":\"Smart.\",\"AvYbUL\":\"Star on GitHub\",\"y2dGtU\":\"Stars\",\"uAQUqI\":\"Status\",\"XYLcNv\":\"Support\",\"KM6m8p\":\"Team\",\"lm5v+6\":\"Team Inbox\",\"CAL6E9\":\"Teams\",\"w4nM1s\":\"Template Store (Soon).\",\"yFoQ27\":\"That's awesome. You can take a look at the current <0>Issues0> and join our <1>Discord Community1> to keep up to date, on what the current priorities are. In any case, we are an open community and welcome all input, technical and non-technical ❤️\",\"GE1BlA\":\"This page is evolving as we learn what makes a great signing company. We'll update it when we have more to share.\",\"MHrjPM\":\"Titel\",\"2YvdxE\":\"Total Completed Documents\",\"8e4lIo\":\"Total Customers\",\"bPpoCb\":\"Total Funding Raised\",\"vb0Q0/\":\"Total Users\",\"mgQhDS\":\"Truly your own.\",\"4McJfQ\":\"Try our Free Plan\",\"9mkNAn\":\"Twitter Stats\",\"CHzOWB\":\"Unlimited Documents per Month\",\"BOV7DD\":\"Up to 10 recipients per document\",\"fydTfa\":\"Laden Sie ein Dokument hoch und fügen Sie Felder hinzu.\",\"vdAd7c\":\"Using our hosted version is the easiest way to get started, you can simply subscribe and start signing your documents. We take care of the infrastructure, so you can focus on your business. Additionally, when using our hosted version you benefit from our trusted signing certificates which helps you to build trust with your customers.\",\"W2nDs0\":\"View all stats\",\"WMfAK8\":\"We are happy to assist you at <0>support@documenso.com0> or <1>in our Discord-Support-Channel1> please message either Lucas or Timur to get added to the channel if you are not already a member.\",\"ZaMyxU\":\"What is the difference between the plans?\",\"8GpyFt\":\"When it comes to sending or receiving a contract, you can count on lightning-fast speeds.\",\"HEDnID\":\"Where can I get support?\",\"sib3h3\":\"Why should I prefer Documenso over DocuSign or some other signing tool?\",\"cVPDPt\":\"Why should I use your hosting service?\",\"zkWmBh\":\"Yearly\",\"8AKApo\":\"Yes! Documenso is offered under the GNU AGPL V3 open source license. This means you can use it for free and even modify it to fit your needs, as long as you publish your changes under the same license.\",\"rzQpex\":\"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.\",\"1j9aoC\":\"Your browser does not support the video tag.\",\"Lg0j3K\":\"Ihr Browser unterstützt das Video-Tag nicht.>>>>>>> main\",\"73XXzw\":[[\"0\"],\" von \",[\"1\"],\" Zeile(n) ausgewählt.\"],\"lZ4w45\":[[\"visibleRows\",\"plural\",{\"one\":[\"Eine \",\"#\",\" Ergebnis wird angezeigt.\"],\"other\":[\"#\",\" Ergebnisse werden angezeigt.\"]}]],\"AhYxw5\":\"<0>Authentifizierungsmethode erben0> - Verwenden Sie die in den \\\"Allgemeinen Einstellungen\\\" konfigurierte globale Aktionssignatur-Authentifizierungsmethode\",\"OepImG\":\"<0>Keine Einschränkungen0> - Keine Authentifizierung erforderlich\",\"07+JZ2\":\"<0>Keine Einschränkungen0> - Das Dokument kann direkt über die dem Empfänger gesendete URL abgerufen werden\",\"jx/lwn\":\"<0>Keine0> - Keine Authentifizierung erforderlich\",\"CUT3u1\":\"<0>2FA erforderlich0> - Der Empfänger muss ein Konto haben und die 2FA über seine Einstellungen aktiviert haben\",\"2PbD3D\":\"<0>Konto erforderlich0> - Der Empfänger muss angemeldet sein, um das Dokument anzeigen zu können\",\"QHSbey\":\"<0>Passkey erforderlich0> - Der Empfänger muss ein Konto haben und den Passkey über seine Einstellungen konfiguriert haben\",\"Oy5nEc\":\"Dokument hinzufügen\",\"7Pz5x5\":\"Fügen Sie eine URL hinzu, um den Benutzer nach der Unterzeichnung des Dokuments weiterzuleiten\",\"aILOUH\":\"Fügen Sie dem Dokument eine externe ID hinzu. Diese kann verwendet werden, um das Dokument in externen Systemen zu identifizieren.\",\"bK1dPK\":\"Fügen Sie der Vorlage eine externe ID hinzu. Diese kann zur Identifizierung in externen Systemen verwendet werden.\",\"nnZ1Sa\":\"Weitere Option hinzufügen\",\"0/UVRw\":\"Weiteren Wert hinzufügen\",\"VaCh6w\":\"Mich selbst hinzufügen\",\"jAa/lz\":\"Mich hinzufügen\",\"29QK6H\":\"Platzhalterempfänger hinzufügen\",\"vcxlzZ\":\"Unterzeichner hinzufügen\",\"MwcOtB\":\"Text hinzufügen\",\"7F2ltK\":\"Text zum Feld hinzufügen\",\"U3pytU\":\"Admin\",\"NFIOKv\":\"Erweiterte Optionen\",\"VNgKZz\":\"Erweiterte Einstellungen\",\"bNUpvl\":\"Nach der Übermittlung wird ein Dokument automatisch generiert und zu Ihrer Dokumentenseite hinzugefügt. Sie erhalten außerdem eine Benachrichtigung per E-Mail.\",\"Z7ZXbT\":\"Genehmigen\",\"7kb4LU\":\"Genehmigt\",\"ca9AbO\":\"Genehmiger\",\"j2Uisd\":\"Genehmigung\",\"dEgA5A\":\"Abbrechen\",\"brJrDl\":\"Unterzeichner kann nicht entfernt werden\",\"RpYfjZ\":\"Cc\",\"XdZeJk\":\"CC\",\"nrL/ZD\":\"CC'd\",\"EEk+d0\":\"Zeichenbeschränkung\",\"G1XxbZ\":\"Checkbox\",\"wbixMe\":\"Checkbox-Werte\",\"u8JHrO\":\"Filter löschen\",\"IqxkER\":\"Unterschrift löschen\",\"eZ6/Uj\":\"Klicken, um das Feld einzufügen\",\"yz7wBu\":\"Schließen\",\"OrcxNk\":\"Direkten Empfänger konfigurieren\",\"92KLYs\":[\"Konfigurieren Sie das Feld \",[\"0\"]],\"xGVfLh\":\"Fortsetzen\",\"FxVG/l\":\"In die Zwischenablage kopiert\",\"GB2F11\":\"Benutzerdefinierter Text\",\"mYGY3B\":\"Datum\",\"4BHv90\":\"Datumsformat\",\"NLXhq7\":\"Empfänger des direkten Links\",\"YScG1E\":\"Dokumentenzugriff\",\"rAqi0g\":\"Dokumenterstellung\",\"mzI/c+\":\"Herunterladen\",\"6GyScL\":\"Ziehen Sie Ihr PDF hierher.\",\"iKQcPM\":\"Dropdown\",\"XXvhMd\":\"Dropdown-Optionen\",\"O3oNi5\":\"E-Mail\",\"XLpxoj\":\"E-Mail-Optionen\",\"qChNnS\":\"Direktlink-Signierung aktivieren\",\"f7sXvi\":\"Passwort eingeben\",\"SlfejT\":\"Fehler\",\"5KfWxA\":\"Externe ID\",\"4CP+OV\":\"Einstellungen konnten nicht gespeichert werden.\",\"LK3SFK\":\"Zeichenbeschränkung des Feldes\",\"NYkIsf\":\"Feldformat\",\"X6Tb6Q\":\"Feldbeschriftung\",\"NaVkSD\":\"Feldplatzhalter\",\"N1UTWT\":\"Globale Empfängerauthentifizierung\",\"sr0UJD\":\"Zurück\",\"uCroPU\":\"Ich bin ein Unterzeichner dieses Dokuments\",\"K6KTX2\":\"Ich bin ein Betrachter dieses Dokuments\",\"ngj5km\":\"Ich bin ein Genehmiger dieses Dokuments\",\"JUZIGu\":\"Ich bin verpflichtet, eine Kopie dieses Dokuments zu erhalten\",\"ZjDoG7\":\"I am required to recieve a copy of this document\",\"fnbcC0\":\"Authentifizierungsmethode erben\",\"87a/t/\":\"Beschriftung\",\"dtOoGl\":\"Manager\",\"CK1KXz\":\"Max\",\"OvoEq7\":\"Mitglied\",\"ziXm9u\":\"Nachricht <0>(Optional)0>\",\"eTUF28\":\"Min\",\"4nqUV0\":\"Muss genehmigen\",\"lNQBPg\":\"Muss unterzeichnen\",\"eUAUyG\":\"Muss sehen\",\"GBIRGD\":\"Kein passender Empfänger mit dieser Beschreibung gefunden.\",\"f34Qxi\":\"Keine Empfänger mit dieser Rolle\",\"qQ7oqE\":\"Keine Einschränkungen\",\"AxPAXW\":\"Keine Ergebnisse gefunden\",\"pt86ev\":\"Kein Unterschriftsfeld gefunden\",\"CSOFdu\":\"Kein Wert gefunden.\",\"HptUxX\":\"Nummer\",\"bR2sEm\":\"Zahlenformat\",\"eY6ns+\":\"Sobald aktiviert, können Sie einen aktiven Empfänger für die Direktlink-Signierung auswählen oder einen neuen erstellen. Dieser Empfängertyp kann nicht bearbeitet oder gelöscht werden.\",\"JE2qy+\":\"Sobald Ihre Vorlage eingerichtet ist, teilen Sie den Link überall, wo Sie möchten. Die Person, die den Link öffnet, kann ihre Informationen im Feld für direkte Empfänger eingeben und alle anderen ihr zugewiesenen Felder ausfüllen.\",\"fpzyLj\":[\"Seite \",[\"0\"],\" von \",[\"1\"]],\"8ltyoa\":\"Passwort erforderlich\",\"ayaTI6\":\"Wählen Sie eine Zahl\",\"hx1ePY\":\"Platzhalter\",\"MtkqZc\":\"Radio\",\"5cEi0C\":\"Radio-Werte\",\"uNQ6eB\":\"Nur lesen\",\"UTnF5X\":\"Erhält Kopie\",\"ZIuo5V\":\"Empfängeraktion Authentifizierung\",\"VTB2Rz\":\"Weiterleitungs-URL\",\"t/YqKh\":\"Entfernen\",\"8dg+Yo\":\"Pflichtfeld\",\"xxCtZv\":\"Zeilen pro Seite\",\"tfDRzk\":\"Speichern\",\"9Y3hAT\":\"Vorlage speichern\",\"rG3WVm\":\"Auswählen\",\"hVPa4O\":\"Option auswählen\",\"IM+vrQ\":\"Wählen Sie mindestens\",\"Gve6FG\":\"Standardoption auswählen\",\"JlFcis\":\"Senden\",\"AEV4wo\":\"Dokument senden\",\"iE3nGO\":\"Unterschriftenkarte teilen\",\"y+hKWu\":\"Link teilen\",\"ydZ6yi\":\"Erweiterte Einstellungen anzeigen\",\"n+8yVN\":\"Unterschrift\",\"PoH7eg\":\"Unterzeichnet\",\"jTCAGu\":\"Unterzeichner\",\"6G8s+q\":\"Unterzeichnung\",\"kW2h2Z\":\"Einige Unterzeichner haben noch kein Unterschriftsfeld zugewiesen bekommen. Bitte weisen Sie jedem Unterzeichner mindestens ein Unterschriftsfeld zu, bevor Sie fortfahren.\",\"nwtY4N\":\"Etwas ist schief gelaufen\",\"kf83Ld\":\"Etwas ist schief gelaufen.\",\"WlBiWh\":[\"Schritt <0>\",[\"step\"],\" von \",[\"maxStep\"],\"0>\"],\"ki77Td\":\"Betreff <0>(Optional)0>\",\"hQRttt\":\"Einreichen\",\"URdrTr\":\"Vorlagentitel\",\"xeiujy\":\"Text\",\"imClgr\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger Felder signieren\",\"yyD2dE\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger das Signaturfeld signieren können.\",\"GtDmLf\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger das Dokument anzeigen können.\",\"zAoaPB\":\"Der Name des Dokuments\",\"Ev3GOS\":\"Das eingegebene Passwort ist falsch. Bitte versuchen Sie es erneut.\",\"OPnnb6\":\"Der Empfänger muss keine Aktion ausführen und erhält nach Abschluss eine Kopie des Dokuments.\",\"v8p6Mb\":\"Der Empfänger muss das Dokument genehmigen, damit es abgeschlossen werden kann.\",\"CPv0TB\":\"Der Empfänger muss das Dokument unterschreiben, damit es abgeschlossen werden kann.\",\"oIvIfH\":\"Der Empfänger muss das Dokument anzeigen, damit es abgeschlossen werden kann.\",\"Br2bvS\":\"Der Freigabelink konnte in diesem Moment nicht erstellt werden. Bitte versuchen Sie es erneut.\",\"XJIzqY\":\"Der Freigabelink wurde in Ihre Zwischenablage kopiert.\",\"UyM8/E\":\"Die E-Mail des Unterzeichners\",\"zHJ+vk\":\"Der Name des Unterzeichners\",\"kaEF2i\":\"Dies kann überschrieben werden, indem die Authentifizierungsanforderungen im nächsten Schritt direkt für jeden Empfänger festgelegt werden.\",\"QUZVfd\":\"Dieses Dokument wurde bereits an diesen Empfänger gesendet. Sie können diesen Empfänger nicht mehr bearbeiten.\",\"riNGUC\":\"Dieses Dokument ist durch ein Passwort geschützt. Bitte geben Sie das Passwort ein, um das Dokument anzusehen.\",\"Qkeh+t\":\"Dieses Feld kann nicht geändert oder gelöscht werden. Wenn Sie den direkten Link dieser Vorlage teilen oder zu Ihrem öffentlichen Profil hinzufügen, kann jeder, der darauf zugreift, seinen Namen und seine E-Mail-Adresse eingeben und die ihm zugewiesenen Felder ausfüllen.\",\"l2Xt6u\":\"Dieser Unterzeichner hat das Dokument bereits erhalten.\",\"6iFh5a\":\"Dies überschreibt alle globalen Einstellungen.\",\"RxsRD6\":\"Zeitzone\",\"UWmOq4\":[\"Um fortzufahren, legen Sie bitte mindestens einen Wert für das Feld \",[\"0\"],\" fest.\"],\"EkH9pt\":\"Aktualisieren\",\"GT+2nz\":\"Aktualisieren Sie die Rolle und fügen Sie Felder nach Bedarf für den direkten Empfänger hinzu. Die Person, die den direkten Link verwendet, wird das Dokument als direkter Empfänger unterzeichnen.\",\"kwkhPe\":\"Upgrade\",\"06fEqf\":\"Vorlagendokument hochladen\",\"lGWE4b\":\"Validierung\",\"wMHvYH\":\"Wert\",\"jpctdh\":\"View\",\"vXtpAZ\":\"Viewed\",\"M/TIv1\":\"Viewer\",\"RVWz5F\":\"Viewing\",\"4/hUq0\":\"Sie sind dabei, dieses Dokument an die Empfänger zu senden. Sind Sie sicher, dass Sie fortfahren möchten?\",\"rb/T41\":\"Sie können die folgenden Variablen in Ihrer Nachricht verwenden:\",\"9+Ph0R\":\"Sie können derzeit keine Dokumente hochladen.\",\"m5RA9C\":\"Sie haben Ihr Dokumentenlimit erreicht.\"}")};
diff --git a/packages/lib/translations/de/marketing.po b/packages/lib/translations/de/marketing.po
index 63c75f3d0..07069c87f 100644
--- a/packages/lib/translations/de/marketing.po
+++ b/packages/lib/translations/de/marketing.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-08-27 16:03\n"
+"PO-Revision-Date: 2024-09-05 06:04\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -424,6 +424,8 @@ msgstr ""
#: apps/marketing/src/components/(marketing)/i18n-switcher.tsx:47
msgid "Search languages..."
msgstr ""
+#~ msgid "Search languages..."
+#~ msgstr "Sprachen suchen..."
#: apps/marketing/src/app/(marketing)/pricing/page.tsx:109
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."
diff --git a/packages/lib/translations/de/web.js b/packages/lib/translations/de/web.js
index c502042f6..f3a826529 100644
--- a/packages/lib/translations/de/web.js
+++ b/packages/lib/translations/de/web.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"4CkA8m\":[\"\\\"\",[\"0\"],\"\\\" will appear on the document as it has a timezone of \\\"\",[\"timezone\"],\"\\\".\"],\"PGXGNV\":[\"\\\"\",[\"documentTitle\"],\"\\\" has been successfully deleted\"],\"ibh+jM\":[\"(\",[\"0\"],\") has invited you to approve this document\"],\"Hdo1JO\":[\"(\",[\"0\"],\") has invited you to sign this document\"],\"wPU8t5\":[\"(\",[\"0\"],\") has invited you to view this document\"],\"1mCQTM\":[[\"0\",\"plural\",{\"one\":\"(1 character over)\",\"other\":[\"(\",\"#\",\" characters over)\"]}]],\"8laXJX\":[[\"0\",\"plural\",{\"one\":[\"#\",\" character over the limit\"],\"other\":[\"#\",\" characters over the limit\"]}]],\"/7wuBM\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recipient\"],\"other\":[\"#\",\" recipients\"]}]],\"WVvaAa\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Seat\"],\"other\":[\"#\",\" Seats\"]}]],\"mBW/Nj\":[[\"0\",\"plural\",{\"one\":\"<0>You have <1>11> pending team invitation0>\",\"other\":[\"<2>You have <3>\",\"#\",\"3> pending team invitations2>\"]}]],\"+Futv0\":[[\"0\",\"plural\",{\"one\":\"1 Recipient\",\"other\":[\"#\",\" Recipients\"]}]],\"/9xV/+\":[[\"0\",\"plural\",{\"one\":\"Waiting on 1 recipient\",\"other\":[\"Waiting on \",\"#\",\" recipients\"]}]],\"NKVaV/\":[[\"0\",\"plural\",{\"zero\":\"Select values\",\"other\":[\"#\",\" selected...\"]}]],\"XZlK7r\":[[\"0\"],\" direct signing templates\"],\"FDQtbR\":[[\"0\"],\" document\"],\"NnFCoc\":[[\"0\"],\" of \",[\"1\"],\" documents remaining this month.\"],\"5YOFTl\":[[\"0\"],\" Recipient(s)\"],\"7VC/RF\":[[\"0\"],\" the document to complete the process.\"],\"fjZZE0\":[[\"charactersRemaining\",\"plural\",{\"one\":\"1 character remaining\",\"other\":[[\"charactersRemaining\"],\" characters remaining\"]}]],\"AQAq/V\":[[\"formattedTeamMemberQuanity\"],\" • Monthly • Renews: \",[\"formattedDate\"]],\"QBOMc/\":[[\"numberOfSeats\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"B/VHou\":[[\"remaningLength\",\"plural\",{\"one\":[\"#\",\" character remaining\"],\"other\":[\"#\",\" characters remaining\"]}]],\"Z5MlD3\":[\"<0>\\\"\",[\"0\"],\"\\\"0>is no longer available to sign\"],\"xvzJ86\":\"<0>Sender:0> All\",\"mVRii8\":\"404 Page not found\",\"WZHDfC\":\"404 Profile not found\",\"4lyY0m\":\"404 Team not found\",\"In0QZI\":\"404 Template not found\",\"1a1ztU\":\"A confirmation email has been sent, and it should arrive in your inbox shortly.\",\"0JoPTv\":\"A draft document will be created\",\"pYI9yv\":\"A new token was created successfully.\",\"FnK1CG\":\"A password reset email has been sent, if you have an account you should see it in your inbox shortly.\",\"GtLRrc\":[\"A request to transfer the ownership of this team has been sent to <0>\",[\"0\"],\" (\",[\"1\"],\")0>\"],\"EUAIAh\":\"A secret that will be sent to your URL so you can verify that the request has been sent by Documenso\",\"FUzxsL\":\"A secret that will be sent to your URL so you can verify that the request has been sent by Documenso.\",\"h39O4b\":\"A unique URL to access your profile\",\"B26oYX\":\"A unique URL to identify your team\",\"YKB66I\":\"A verification email will be sent to the provided email.\",\"g3UF2V\":\"Accept\",\"f8bc61\":\"Accepted team invitation\",\"TKFUnX\":\"Account deleted\",\"bwRvnp\":\"Action\",\"7L01XJ\":\"Actions\",\"F6pfE9\":\"Active\",\"i1lpSD\":\"Active Subscriptions\",\"m16xKo\":\"Add\",\"qkB+9Q\":\"Add all relevant fields for each recipient.\",\"bpOeyo\":\"Add all relevant placeholders for each recipient.\",\"GQ/q/T\":\"Add an authenticator to serve as a secondary authentication method for signing documents.\",\"o7gocE\":\"Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents.\",\"bJUlXv\":\"Add email\",\"S/w/ui\":\"Add Fields\",\"iOiHwJ\":\"Add more\",\"rSRyAh\":\"Add number\",\"w3zmQl\":\"Add passkey\",\"zkvWcK\":\"Add Placeholders\",\"2Rqi1z\":\"Add Signers\",\"eZyoIc\":\"Add Subject\",\"bD3qQ7\":\"Add team email\",\"MwcOtB\":\"Text hinzufügen\",\"mXXoi9\":\"Add Text\",\"vn6wzk\":\"Add the people who will sign the document.\",\"8XAJNZ\":\"Add the recipients to create the document with\",\"F9ayeh\":\"Add the subject and message you wish to send to signers.\",\"pjVxbn\":\"Adding and removing seats will adjust your invoice accordingly.\",\"VfkDmn\":\"Admin Actions\",\"SsHJsm\":\"Admin panel\",\"N40H+G\":\"All\",\"/LYSFR\":\"All documents\",\"myVKpO\":\"All documents have been processed. Any new documents that are sent or received will show here.\",\"8dC9dh\":\"All inserted signatures will be voided\",\"a809wO\":\"All recipients will be notified\",\"DA2Nma\":\"All templates\",\"5b4J4v\":\"All Time\",\"8URWfv\":\"Allows authenticating using biometrics, password managers, hardware keys, etc.\",\"QN+LeY\":\"Already have an account? <0>Sign in instead0>\",\"hehnjM\":\"Amount\",\"VeMlGP\":\"An email containing an invitation will be sent to each member.\",\"Cs4Mqi\":\"An email requesting the transfer of this team has been sent.\",\"Vw8l6h\":\"An error occurred\",\"aAZxd7\":\"An error occurred while adding signers.\",\"qFEx41\":\"An error occurred while adding the fields.\",\"ycUtHd\":\"An error occurred while creating document from template.\",\"8jjOHI\":\"An error occurred while creating the webhook. Please try again.\",\"D6tvkq\":\"An error occurred while disabling direct link signing.\",\"HNjVHR\":\"An error occurred while downloading your document.\",\"z7nHXh\":\"An error occurred while duplicating template.\",\"WnEuiF\":\"An error occurred while enabling direct link signing.\",\"eijDci\":\"An error occurred while loading team members. Please try again later.\",\"ZL2b3c\":\"An error occurred while moving the document.\",\"vECB98\":\"An error occurred while moving the template.\",\"677Rs2\":\"An error occurred while removing the signature.\",\"niV8ex\":\"An error occurred while removing the text.\",\"+UiFs2\":\"An error occurred while sending the document.\",\"W8sZtD\":\"An error occurred while sending your confirmation email\",\"CKRkxA\":\"An error occurred while signing the document.\",\"k2HSGs\":\"An error occurred while trying to create a checkout session.\",\"PBvwjZ\":\"An error occurred while updating the document settings.\",\"vNZnKS\":\"An error occurred while updating the signature.\",\"ed1aMc\":\"An error occurred while updating your profile.\",\"hGN3eM\":\"An error occurred while uploading your document.\",\"vW+T+d\":\"An unknown error occurred\",\"Iq1gDI\":\"Any payment methods attached to this team will remain attached to this team. Please contact us if you need to update this information.\",\"ZiooJI\":\"API Tokens\",\"mf2Wzk\":\"App Version\",\"Z7ZXbT\":\"Genehmigen\",\"7kb4LU\":\"Genehmigt\",\"0EvA/s\":\"Are you sure you want to delete this token?\",\"99ZWCN\":[\"Are you sure you want to remove the <0>\",[\"passkeyName\"],\"0> passkey.\"],\"1D4Rs0\":\"Are you sure you wish to delete this team?\",\"6foA8n\":\"Are you sure?\",\"rgXDlk\":\"Attempts sealing the document again, useful for after a code change has occurred to resolve an erroneous document.\",\"ilRCh1\":\"Audit Log\",\"XiaVj+\":\"Authentication required\",\"kfcRb0\":\"Avatar\",\"uzGcBT\":\"Avatar Updated\",\"q8qrYJ\":\"Awaiting email confirmation\",\"iH8pgl\":\"Back\",\"FL8Lic\":\"Back to Documents\",\"k1bLf+\":\"Background Color\",\"ev7oAJ\":\"Backup Code\",\"M2cci0\":\"Backup codes\",\"eQwW5Q\":\"Banner Updated\",\"3dSIQs\":\"Basic details\",\"R+w/Va\":\"Billing\",\"0DGrp8\":\"Browser\",\"r4lECO\":\"Bulk Import\",\"dMoTGp\":\"By deleting this document, the following will occur:\",\"zjt329\":\"By enabling 2FA, you will be required to enter a code from your authenticator app every time you sign in.\",\"dEgA5A\":\"Abbrechen\",\"sa1BnH\":\"Cancelled by user\",\"A4tHrb\":\"Charts\",\"znIg+z\":\"Checkout\",\"MeyfTD\":\"Choose an existing recipient from below to continue\",\"iWVl0V\":\"Choose Direct Link Recipient\",\"1qI3Gk\":\"Choose...\",\"1m18m/\":\"Claim account\",\"tvmS/k\":\"Claim username\",\"vRjC9y\":\"Claim your profile later\",\"HiEGc0\":\"Claim your username now\",\"ELiPtq\":\"Click here to get started\",\"BvF90q\":\"Click here to retry\",\"cgfP+i\":\"Click here to upload\",\"L1127j\":\"Click to copy signing link for sending to recipient\",\"eZ6/Uj\":\"Klicken, um das Feld einzufügen\",\"yz7wBu\":\"Schließen\",\"bD8I7O\":\"Complete\",\"jVAqZz\":\"Complete Approval\",\"0ojNue\":\"Complete Signing\",\"+5y0NQ\":\"Complete Viewing\",\"qqWcBV\":\"Completed\",\"rGm4yZ\":\"Completed documents\",\"p5+XQN\":\"Completed Documents\",\"UfLuLv\":\"Configure general settings for the document.\",\"hIv3aM\":\"Configure general settings for the template.\",\"LVnHGj\":\"Configure template\",\"7VpPHA\":\"Confirm\",\"gMlC/b\":[\"Confirm by typing <0>\",[\"confirmTransferMessage\"],\"0>\"],\"FQnPC+\":[\"Confirm by typing <0>\",[\"deleteMessage\"],\"0>\"],\"gv1JXQ\":[\"Confirm by typing: <0>\",[\"deleteMessage\"],\"0>\"],\"w0Qb5v\":\"Confirm Deletion\",\"CMj4hw\":\"Confirm email\",\"13PnPF\":\"Confirmation email sent\",\"4b3oEV\":\"Content\",\"xGVfLh\":\"Fortsetzen\",\"/KgpcA\":\"Continue to login\",\"FxVG/l\":\"In die Zwischenablage kopiert\",\"phD28x\":\"Copy sharable link\",\"ZxZS0E\":\"Copy Shareable Link\",\"BddwrJ\":\"Copy token\",\"hYgDIe\":\"Create\",\"mpt9T+\":\"Create a new account\",\"kxGCtA\":\"Create a team to collaborate with your team members.\",\"1hMWR6\":\"Create account\",\"H7nlli\":\"Create and send\",\"BYg48B\":\"Create as draft\",\"JqmhmE\":\"Create Direct Link\",\"wtV4WO\":\"Create Direct Signing Link\",\"fDTEKZ\":\"Create document from template\",\"1svIlj\":\"Create now\",\"JLQooE\":\"Create one automatically\",\"YGQVmg\":\"Create team\",\"fWFMgb\":\"Create Team\",\"pzXZ8+\":\"Create token\",\"SiPp29\":\"Create webhook\",\"dkAPxi\":\"Create Webhook\",\"8T5f7o\":\"Create your account and start using state-of-the-art document signing.\",\"rr83qK\":\"Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp.\",\"d+F6q9\":\"Created\",\"88kg0+\":\"Created At\",\"NCIYDF\":\"Created by\",\"45O6zJ\":\"Created on\",\"SVZbH4\":\"Created on <0/>\",\"DCKkhU\":\"Current Password\",\"74XDHP\":[\"Current plan: \",[\"0\"]],\"U0sC6H\":\"Daily\",\"oRVm8M\":\"Dark Mode\",\"mYGY3B\":\"Datum\",\"u46WEi\":\"Date created\",\"jbq7j2\":\"Decline\",\"uSS9OX\":\"Declined team invitation\",\"cnGeoo\":\"Delete\",\"ZDGm40\":\"Delete account\",\"vzX5FB\":\"Delete Account\",\"+vDIXN\":\"Delete document\",\"MUynQL\":\"Delete Document\",\"0tFf9L\":\"Delete passkey\",\"MYiaA4\":\"Delete team\",\"WZHJBH\":\"Delete team member\",\"M5Nsil\":\"Delete the document. This action is irreversible so proceed with caution.\",\"ETB4Yh\":\"Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution.\",\"zdyslo\":\"Delete Webhook\",\"IJMZKG\":\"Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution.\",\"vGjmyl\":\"Deleted\",\"cmDFUK\":\"Deleting account...\",\"PkSiFP\":\"Deleting document\",\"PEHQTf\":\"Device\",\"YseRvk\":\"direct link\",\"cfARFZ\":\"Direct link\",\"VdX+I4\":\"direct link disabled\",\"nNHqgX\":\"Direct Link Signing\",\"k2FNdx\":\"Direct link signing has been disabled\",\"gsc+pZ\":\"Direct link signing has been enabled\",\"CRdqqs\":\"Direct link templates contain one dynamic recipient placeholder. Anyone with access to this link can sign the document, and it will then appear on your documents page.\",\"WCGIfx\":\"Direct template link deleted\",\"2HKj5L\":[\"Direct template link usage exceeded (\",[\"0\"],\"/\",[\"1\"],\")\"],\"cO9+2L\":\"Disable\",\"qERl58\":\"Disable 2FA\",\"pf7wfS\":\"Disable Two Factor Authentication before deleting your account.\",\"E/QGRL\":\"Disabled\",\"H11Db4\":\"Disabling direct link signing will prevent anyone from accessing the link.\",\"Oq0b7I\":\"Display your name and email in documents\",\"pR1j0x\":\"Do you want to delete this template?\",\"MqL7Ex\":\"Do you want to duplicate this template?\",\"MUwFBV\":\"Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account.\",\"7Zdnlq\":\"Document\",\"kz4vX7\":\"Document All\",\"Pr3c2A\":\"Document Approved\",\"Kvf7iA\":\"Document Cancelled\",\"GOO+sv\":\"Document completed\",\"6KFLWX\":\"Document Completed!\",\"frw2OP\":\"Document created\",\"ZlIPM3\":\"Document deleted\",\"IvkBV7\":\"Document draft\",\"nF+jHn\":\"Document Duplicated\",\"Zfj12J\":\"Document history\",\"glwlqW\":\"Document ID\",\"WqG6Wi\":\"Document inbox\",\"WrliRN\":\"Document Limit Exceeded!\",\"AGzFn4\":\"Document metrics\",\"w+SPlp\":\"Document moved\",\"G45FNk\":\"Document no longer available to sign\",\"EhII5Z\":\"Document pending\",\"XIvQfe\":\"Document re-sent\",\"S2Wpx4\":\"Document resealed\",\"2r5F7N\":\"Document sent\",\"prbyy5\":\"Document Signed\",\"O832hg\":\"Document signing process will be cancelled\",\"UkHClc\":\"Document status\",\"RDOlfT\":\"Document title\",\"R1TUTP\":\"Document upload disabled due to unpaid invoices\",\"PGrc79\":\"Document uploaded\",\"UfJ5fX\":\"Document Viewed\",\"bTGVhQ\":\"Document will be permanently deleted\",\"E/muDO\":\"Documents\",\"q89WTJ\":\"Documents Received\",\"77Aq1u\":\"Documents Viewed\",\"352VU2\":\"Don't have an account? <0>Sign up0>\",\"mzI/c+\":\"Herunterladen\",\"lojhUl\":\"Download Audit Logs\",\"uKWz9T\":\"Download Certificate\",\"eneWvv\":\"Draft\",\"gWAuiM\":\"Draft documents\",\"8OzE2k\":\"Drafted Documents\",\"QurWnM\":\"Due to an unpaid invoice, your team has been restricted. Please settle the payment to restore full access to your team.\",\"euc6Ns\":\"Duplicate\",\"ePK91l\":\"Edit\",\"fW5sSv\":\"Edit webhook\",\"O3oNi5\":\"E-Mail\",\"ATGYL1\":\"Email address\",\"hzKQCy\":\"Email Address\",\"HmTucU\":\"Email Confirmed!\",\"JHLcvq\":\"Email sent!\",\"bK7p2G\":\"Email verification has been removed\",\"xk9d59\":\"Email verification has been resent\",\"DCRKbe\":\"Enable 2FA\",\"Gndbft\":\"Enable Authenticator App\",\"iNXTYT\":\"Enable direct link signing\",\"qChNnS\":\"Direktlink-Signierung aktivieren\",\"RxzN1M\":\"Enabled\",\"y6J8wY\":\"Ends On\",\"C3nD/1\":\"Enter your email\",\"oM8ocD\":\"Enter your email address to receive the completed document.\",\"n9V+ps\":\"Enter your name\",\"v0GDxO\":\"Enter your text here\",\"SlfejT\":\"Fehler\",\"ZkROsq\":\"Everyone has signed\",\"4MNaCF\":\"Everyone has signed! You will receive an Email copy of the signed document.\",\"uWW+rJ\":\"Exceeded timeout\",\"M1RnFv\":\"Expired\",\"RIcSTA\":\"Expires on\",\"LbGReD\":\"Expires on <0/>\",\"ToQ1L5\":\"Failed to reseal document\",\"YXKrQK\":\"Failed to update recipient\",\"R41XLH\":\"Failed to update webhook\",\"vF68cg\":\"Fields\",\"8rKUka\":[\"File cannot be larger than \",[\"APP_DOCUMENT_UPLOAD_SIZE_LIMIT\"],\"MB\"],\"glx6on\":\"Forgot your password?\",\"/4TFrF\":\"Full Name\",\"Weq9zb\":\"General\",\"sr0UJD\":\"Zurück\",\"+vhBuq\":\"Go back home\",\"1oocIX\":\"Go Back Home\",\"Q46UEs\":\"Go to owner\",\"71XAMD\":\"Go to your <0>public profile settings0> to add documents.\",\"+pEbZM\":\"Here you can edit your personal details.\",\"gPNXUO\":\"Here you can manage your password and security settings.\",\"rLZFM2\":\"Here's how it works:\",\"C3U9sx\":\"Hey I’m Timur\",\"vLyv1R\":\"Hide\",\"/c6j67\":\"Hide additional information\",\"2+GP4I\":\"I am the owner of this document\",\"Jw3g7g\":\"I'm sure! Delete it\",\"fYt7bZ\":\"If they accept this request, the team will be transferred to their account.\",\"P8EnSP\":\"If you do not want to use the authenticator prompted, you can close it, which will then display the next available authenticator.\",\"usBC38\":\"If you don't find the confirmation link in your inbox, you can request a new one below.\",\"i1sBhX\":\"If your authenticator app does not support QR codes, you can use the following code instead:\",\"Gp4Yi6\":\"Inbox\",\"mIZt96\":\"Inbox documents\",\"nSkB8g\":\"Information\",\"2+B7Tm\":\"Inserted\",\"kgiQxA\":\"Instance Stats\",\"v7dfDY\":\"Invalid code. Please try again.\",\"bajpfj\":\"Invalid file\",\"TN382O\":\"Invalid link\",\"Kx9NEt\":\"Invalid token\",\"lW4qkT\":\"Invitation accepted!\",\"K2fB29\":\"Invitation declined\",\"zbmftZ\":\"Invitation has been deleted\",\"hDYopg\":\"Invitation has been resent\",\"MFKlMB\":\"Invite\",\"+djOzj\":\"Invite member\",\"ZHx/by\":\"Invite Members\",\"qSfH/A\":\"Invite team members\",\"H97wjo\":\"Invited At\",\"IuMGvq\":\"Invoice\",\"pQgy2V\":[\"It looks like \",[\"0\"],\" hasn't added any documents to their profile yet.\"],\"Ji9zm3\":\"It seems that the provided token has expired. We've just sent you another token, please check your email and try again.\",\"PQ53gh\":\"It seems that there is no token provided, if you are trying to verify your email please follow the link in your email.\",\"y51oRm\":\"It seems that there is no token provided. Please check your email and try again.\",\"vfe90m\":\"Last 14 days\",\"uq2BmQ\":\"Last 30 days\",\"ct2SYD\":\"Last 7 days\",\"x5DnMs\":\"Last modified\",\"C3yOz3\":\"Last updated\",\"9aMJpW\":\"Last updated at\",\"JGvwnU\":\"Last used\",\"Mv8CyJ\":\"Leave\",\"v/uzBS\":\"Leave team\",\"cInPuv\":\"Light Mode\",\"0uqjes\":\"Like to have your own public profile with agreements?\",\"jfN/GZ\":\"Link template\",\"T2q4gy\":[\"Listening to \",[\"0\"]],\"qzZ/NB\":\"Load older activity\",\"Jy3ott\":\"Loading document...\",\"KBQH86\":\"Loading Document...\",\"czE0ko\":\"Loading teams...\",\"Z3FXyt\":\"Loading...\",\"z0t9bb\":\"Login\",\"wckWOP\":\"Manage\",\"HQVCTG\":[\"Manage \",[\"0\"],\"'s profile\"],\"Lp5ut7\":\"Manage all teams you are currently associated with.\",\"NwY95d\":\"Manage details for this public template\",\"OcvAVs\":\"Manage Direct Link\",\"g6RCtA\":\"Manage documents\",\"HVAyb8\":\"Manage passkeys\",\"3jHA5d\":\"Manage subscription\",\"L9IOec\":\"Manage Subscription\",\"KuukYs\":\"Manage subscriptions\",\"DHyAij\":\"Manage team subscription.\",\"lLX9Bl\":\"Manage teams\",\"aA0Gfq\":\"Manage the direct link signing for this template\",\"Ruhuv1\":\"Manage the members or invite new members.\",\"Xef1xw\":\"Manage users\",\"T0vQFD\":\"Manage your passkeys.\",\"4a84Cp\":\"Manage your site settings here\",\"Rbs16H\":\"Mark as Viewed\",\"deqwtZ\":\"MAU (created document)\",\"YgNcJU\":\"MAU (had document completed)\",\"Hn6rI0\":\"Member Since\",\"wlQNTg\":\"Members\",\"FaskIK\":\"Modify recipients\",\"+8Nek/\":\"Monthly\",\"MOyLGl\":\"Monthly Active Users: Users that created at least one Document\",\"5G7Dom\":\"Monthly Active Users: Users that had at least one of their documents completed\",\"QWdKwH\":\"Move\",\"YeRZmm\":\"Move Document to Team\",\"QlQmgo\":\"Move Template to Team\",\"wUBLjS\":\"Move to Team\",\"K8Qnlj\":\"Moving...\",\"en+4fS\":\"My templates\",\"6YtxFj\":\"Name\",\"8VD2is\":\"Need to sign documents?\",\"qqeAJM\":\"Never\",\"OEcKyx\":\"Never expire\",\"QWDm5s\":\"New team owner\",\"K6MO8e\":\"New Template\",\"hXzOVo\":\"Next\",\"ZcbBVB\":\"Next field\",\"G5YKES\":\"No active drafts\",\"PsHKvx\":\"No payment required\",\"OBWbru\":\"No public profile templates found\",\"m0I2ba\":\"No recent activity\",\"IMbagb\":\"No recipients\",\"MZbQHL\":\"No results found.\",\"+5xxir\":\"No token provided\",\"s9Rqzv\":\"No valid direct templates found\",\"l08XJv\":\"No valid recipients found\",\"CSOFdu\":\"Kein Wert gefunden.\",\"tRFnIp\":\"No worries, it happens! Enter your email and we'll email you a special link to reset your password.\",\"7aaD1O\":\"Not supported\",\"wkT5xx\":\"Nothing to do\",\"Oizhkg\":\"On this page, you can create a new webhook.\",\"aaavFi\":\"On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation1>.\",\"ZtN+o/\":\"On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here1>\",\"SpqtG7\":\"On this page, you can create new Webhooks and manage the existing ones.\",\"FOWyZB\":\"On this page, you can edit the webhook and its settings.\",\"dM1W5F\":\"Once confirmed, the following will occur:\",\"mZ2nNu\":\"Once you have scanned the QR code or entered the code manually, enter the code provided by your authenticator app below.\",\"udaO9j\":\"Oops! Something went wrong.\",\"OV5wZZ\":\"Opened\",\"ZAVklK\":\"Or\",\"zW+FpA\":\"Or continue with\",\"XUwKbC\":\"Otherwise, the document will be created as a draft.\",\"LtI9AS\":\"Owner\",\"v4nCHK\":\"Paid\",\"FGSN4s\":\"Passkey\",\"8mPPB0\":\"Passkey already exists for the provided authenticator\",\"k/8RhE\":\"Passkey creation cancelled due to one of the following reasons:\",\"knZBf/\":\"Passkey has been removed\",\"1MvYF3\":\"Passkey has been updated\",\"qz7mwn\":\"Passkey name\",\"UZKLEA\":\"Passkeys\",\"v3rPhj\":\"Passkeys allow you to sign in and authenticate using biometrics, password managers, etc.\",\"wsLk4g\":\"Passkeys are not supported on this browser\",\"8ZsakT\":\"Password\",\"ogtYkT\":\"Password updated\",\"4fL/V7\":\"Pay\",\"oyOEbz\":\"Payment is required to finalise the creation of your team.\",\"GptxX/\":\"Payment overdue\",\"UbRKMZ\":\"Pending\",\"Y99ivo\":\"Pending documents\",\"VZJggs\":\"Pending Documents\",\"dSe12f\":\"Pending invitations\",\"pobYPH\":\"Pending team deleted.\",\"7MuXko\":\"Personal\",\"moWIBX\":\"Personal Account\",\"bhE66T\":\"Pick a password\",\"nSCWvF\":\"Pick any of the following agreements below and start signing to get started\",\"LFWYFV\":\"Please check the CSV file and make sure it is according to our format\",\"GUOCNi\":\"Please choose your new password\",\"JcgKEA\":\"Please contact support if you would like to revert this action.\",\"pzDdmv\":\"Please enter a meaningful name for your token. This will help you identify it later.\",\"GqaSjy\":\"Please mark as viewed to complete\",\"jG5btV\":\"Please note that proceeding will remove direct linking recipient and turn it into a placeholder.\",\"Op5XjA\":\"Please note that this action is <0>irreversible0>.\",\"pIF/uD\":\"Please note that this action is <0>irreversible0>. Once confirmed, this document will be permanently deleted.\",\"aYytci\":\"Please note that this action is irreversible. Once confirmed, your template will be permanently deleted.\",\"LIf5dA\":\"Please note that this action is irreversible. Once confirmed, your token will be permanently deleted.\",\"bGHA6C\":\"Please note that this action is irreversible. Once confirmed, your webhook will be permanently deleted.\",\"K2Zlri\":\"Please note that you will lose access to all documents associated with this team & all the members will be removed and notified\",\"VJEW4M\":\"Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support.\",\"Lwg9X/\":\"Please provide a token from your authenticator, or a backup code.\",\"tVQlia\":\"Please try again and make sure you enter the correct email address.\",\"fWCcRl\":\"Please try again later or login using your normal details\",\"PZCqeW\":\"Please try again later.\",\"2oj8HJ\":[\"Please type <0>\",[\"0\"],\"0> to confirm.\"],\"Q6hhn8\":\"Preferences\",\"ghVdS5\":\"Preview and configure template.\",\"zwBp5t\":\"Private\",\"aWLa3z\":\"Private templates can only be modified and viewed by you.\",\"vERlcd\":\"Profile\",\"H8Zk+q\":\"Profile is currently <0>hidden0>.\",\"6zFVy3\":\"Profile is currently <0>visible0>.\",\"srPuxS\":\"Profile updated\",\"7d1a0d\":\"Public\",\"PsWyzr\":\"Public Profile\",\"GCm4vn\":\"Public profile URL\",\"9imnUr\":\"Public profile username\",\"2/o+9Z\":\"Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile.\",\"Zs+87t\":\"Read only field\",\"ckH3fT\":\"Ready\",\"2DmUfb\":\"Reauthentication is required to sign this field\",\"M1HGuR\":\"Recent activity\",\"I3QpvQ\":\"Recipient\",\"evCX7h\":\"Recipient updated\",\"yPrbsy\":\"Recipients\",\"FDT13r\":\"Recipients metrics\",\"cEfPAe\":\"Recipients will still retain their copy of the document\",\"p8zadb\":\"Recovery code copied\",\"x5rgeJ\":\"Recovery codes\",\"ZCl9NH\":\"Registration Successful\",\"cD+FhI\":\"Remembered your password? <0>Sign In0>\",\"t/YqKh\":\"Entfernen\",\"41G745\":\"Remove team email\",\"8xN0jg\":\"Remove team member\",\"JjG/b1\":\"Repeat Password\",\"Ibjxfr\":\"Request transfer\",\"sDXefy\":\"Reseal document\",\"MyjAbr\":\"Resend\",\"bxoWpz\":\"Resend Confirmation Email\",\"HT2UjS\":\"Resend verification\",\"OfhWJH\":\"Reset\",\"wJZvNq\":\"Reset email sent\",\"KbS2K9\":\"Reset Password\",\"NI0xtv\":\"Resetting Password...\",\"2FoHU3\":\"Resolve\",\"bH0aV9\":\"Resolve payment\",\"6gRgw8\":\"Retry\",\"vUOn9d\":\"Return\",\"dRDE6t\":\"Return to Dashboard\",\"OYOJop\":\"Return to Home\",\"Wkb64i\":\"Return to sign in\",\"GXsAby\":\"Revoke\",\"cg+Poy\":\"Revoke access\",\"GDvlUT\":\"Role\",\"5dJK4M\":\"Roles\",\"tfDRzk\":\"Speichern\",\"A1taO8\":\"Search\",\"pUjzwQ\":\"Search by document title\",\"Bw5X+M\":\"Search by name or email\",\"8VEDbV\":\"Secret\",\"a3LDKx\":\"Security\",\"HUVI3V\":\"Security activity\",\"rG3WVm\":\"Auswählen\",\"9GwDu7\":\"Select a team\",\"vWi2vu\":\"Select a team to move this document to. This action cannot be undone.\",\"JxCKQ1\":\"Select a team to move this template to. This action cannot be undone.\",\"hyn0QC\":\"Select a template you'd like to display on your public profile\",\"9VGtlg\":\"Select a template you'd like to display on your team's public profile\",\"gBqxYg\":\"Select passkey\",\"471O/e\":\"Send confirmation email\",\"HbN1UH\":\"Send document\",\"qaDvSa\":\"Send reminder\",\"HW5fQk\":\"Sender\",\"DgPgBb\":\"Sending Reset Email...\",\"IoAuJG\":\"Sending...\",\"h69WC6\":\"Sent\",\"bWhxXv\":\"Set a password\",\"Tz0i8g\":\"Settings\",\"RDjuBN\":\"Setup\",\"Z8lGw6\":\"Share\",\"lCEhm/\":\"Share Signing Card\",\"8vETh9\":\"Show\",\"FSjwRy\":\"Show additional information\",\"7Ifo0h\":\"Show templates in your public profile for your audience to sign and get started quickly\",\"lDZq9u\":\"Show templates in your team public profile for your audience to sign and get started quickly\",\"c+Fnce\":\"Unterschreiben\",\"oKBjbc\":[\"Sign as \",[\"0\"],\" <0>(\",[\"1\"],\")0>\"],\"M7Y6vg\":[\"Sign as <0>\",[\"0\"],\" <1>(\",[\"1\"],\")1>0>\"],\"D0JgR3\":[\"Sign as<0>\",[\"0\"],\" <1>(\",[\"1\"],\")1>0>\"],\"/8S7J+\":\"Sign document\",\"ceklqr\":\"Sign field\",\"vRw782\":\"Sign Here\",\"n1ekoW\":\"Sign In\",\"NxCJcc\":\"Sign in to your account\",\"bHYIks\":\"Sign Out\",\"Mqwtkp\":\"Sign the document to complete the process.\",\"e+RpCP\":\"Sign up\",\"mErq7F\":\"Sign Up\",\"8fC9B9\":\"Sign Up with Google\",\"l/tATK\":\"Sign Up with OIDC\",\"n+8yVN\":\"Unterschrift\",\"6AjNkO\":\"Signatures Collected\",\"cquXHe\":\"Signatures will appear once the document has been completed\",\"PoH7eg\":\"Unterzeichnet\",\"XOxZT4\":\"Signing in...\",\"P1wwqN\":\"Signing up...\",\"ltYQCa\":[\"Since \",[\"0\"]],\"67H0kT\":\"Site Banner\",\"aaU5Fl\":\"Site Settings\",\"nwtY4N\":\"Etwas ist schief gelaufen\",\"xYdwPA\":[\"Something went wrong while attempting to transfer the ownership of team <0>\",[\"0\"],\"0> to your. Please try again later or contact support.\"],\"/OggdM\":[\"Something went wrong while attempting to verify your email address for <0>\",[\"0\"],\"0>. Please try again later.\"],\"oZO7Po\":\"Something went wrong while loading your passkeys.\",\"qDc2pC\":\"Something went wrong while sending the confirmation email.\",\"2U+48H\":\"Something went wrong while updating the team billing subscription, please contact support.\",\"db0Ycb\":\"Something went wrong. Please try again or contact support.\",\"q16m4+\":\"Sorry, we were unable to download the audit logs. Please try again later.\",\"EUyscw\":\"Sorry, we were unable to download the certificate. Please try again later.\",\"29Hx9U\":\"Stats\",\"uAQUqI\":\"Status\",\"EDl9kS\":\"Subscribe\",\"WVzGc2\":\"Subscription\",\"P6F38F\":\"Subscriptions\",\"zzDlyQ\":\"Success\",\"f8RSgi\":\"Successfully created passkey\",\"3WgMId\":\"System Theme\",\"KM6m8p\":\"Team\",\"ZTKtIH\":\"Team checkout\",\"WUM2yD\":\"Team email\",\"rkqgH1\":\"Team Email\",\"2FRR+Z\":\"Team email already verified!\",\"5GbQa1\":\"Team email has been removed\",\"rW28ga\":\"Team email verification\",\"/9ZeEl\":\"Team email verified!\",\"Ww6njg\":\"Team email was updated.\",\"h3p3UT\":\"Team invitation\",\"am190B\":\"Team invitations have been sent.\",\"IJFhQ+\":\"Team Member\",\"EEjL2F\":\"Team Name\",\"alTHVO\":\"Team Only\",\"cvMRdF\":\"Team only templates are not linked anywhere and are visible only to your team.\",\"sSUQSW\":\"Team ownership transfer\",\"NnCr+1\":\"Team ownership transfer already completed!\",\"GzR8VI\":\"Team ownership transferred!\",\"qzHZC+\":\"Team Public Profile\",\"wkzD+0\":\"Team settings\",\"oMfDc9\":\"Team Settings\",\"NONu1b\":\"Team templates\",\"Feqf5k\":\"Team transfer in progress\",\"oXkHk2\":\"Team transfer request expired\",\"IwrHI3\":\"Team URL\",\"CAL6E9\":\"Teams\",\"qKgabb\":\"Teams restricted\",\"/K2CvV\":\"Template\",\"ZTgE3k\":\"Template deleted\",\"7ZORe4\":\"Template document uploaded\",\"Vmoj8n\":\"Template duplicated\",\"3MMlXX\":\"Template has been removed from your public profile.\",\"eupjqf\":\"Template has been updated.\",\"I1vdWI\":\"Template moved\",\"GamjcN\":\"Template saved\",\"iTylMl\":\"Templates\",\"mKknmt\":\"Templates allow you to quickly generate documents with pre-filled recipients and fields.\",\"HmA4Lf\":\"Text Color\",\"jB6Wb0\":\"The account has been deleted successfully.\",\"YPAOfJ\":\"The content to show in the banner, HTML is allowed\",\"+lDHlp\":\"The direct link has been copied to your clipboard\",\"HdogiK\":\"The document has been successfully moved to the selected team.\",\"8TDHmX\":\"The document is now completed, please follow any instructions provided within the parent application.\",\"JaqmMD\":\"The document was created but could not be sent to recipients.\",\"D6V5NE\":\"The document will be hidden from your account\",\"kn3D/u\":\"The document will be immediately sent to recipients if this is checked.\",\"S20Dp9\":\"The events that will trigger a webhook to be sent to your URL.\",\"3BvEti\":[\"The ownership of team <0>\",[\"0\"],\"0> has been successfully transferred to you.\"],\"jiv3IP\":\"The page you are looking for was moved, removed, renamed or might never have existed.\",\"v7aFZT\":\"The profile link has been copied to your clipboard\",\"L9/hN3\":\"The profile you are looking for could not be found.\",\"M2Tl+5\":\"The public description that will be displayed with this template\",\"Bar5Ss\":\"The public name for your template\",\"RL/wwM\":\"The recipient has been updated successfully\",\"aHhSPO\":\"The selected team member will receive an email which they must accept before the team is transferred\",\"so3oXj\":\"The signing link has been copied to your clipboard.\",\"kXciaM\":\"The site banner is a message that is shown at the top of the site. It can be used to display important information to your users.\",\"XaNqYt\":\"The team transfer invitation has been successfully deleted.\",\"DyE711\":[\"The team transfer request to <0>\",[\"0\"],\"0> has expired.\"],\"RLyuG2\":\"The team you are looking for may have been removed, renamed or may have never existed.\",\"wIrx7T\":\"The template has been successfully moved to the selected team.\",\"J+X6HZ\":\"The template will be removed from your profile\",\"9VV//K\":\"The template you are looking for may have been disabled, deleted or may have never existed.\",\"tkv54w\":\"The token was copied to your clipboard.\",\"5cysp1\":\"The token was deleted successfully.\",\"oddVEW\":\"The token you have used to reset your password is either expired or it never existed. If you have still forgotten your password, please request a new reset link.\",\"Orj1pl\":\"The URL for Documenso to send webhook events to.\",\"V92DHZ\":\"The webhook has been successfully deleted.\",\"mlHeCX\":\"The webhook has been updated successfully.\",\"V+5KQa\":\"The webhook was successfully created.\",\"k/INkj\":\"There are no active drafts at the current moment. You can upload a document to start drafting.\",\"ySoKla\":\"There are no completed documents yet. Documents that you have created or received will appear here once completed.\",\"9aYXQv\":\"They have permission on your behalf to:\",\"3ap2Vv\":\"This action is not reversible. Please be certain.\",\"6S2SIc\":\"This document could not be deleted at this time. Please try again.\",\"9q30Lx\":\"This document could not be duplicated at this time. Please try again.\",\"u/cYe5\":\"This document could not be re-sent at this time. Please try again.\",\"240BLI\":\"This document has been cancelled by the owner and is no longer available for others to sign.\",\"UdLWn3\":\"This document has been cancelled by the owner.\",\"K8RH4n\":\"This document has been signed by all recipients\",\"1M0Ssi\":\"This document is currently a draft and has not been sent\",\"LLfa/G\":\"This email is already being used by another team.\",\"YrKIxa\":\"This link is invalid or has expired. Please contact your team to resend a transfer request.\",\"iN8uoK\":\"This link is invalid or has expired. Please contact your team to resend a verification.\",\"b7CscR\":\"This passkey has already been registered.\",\"JMu+vE\":\"This passkey is not configured for this application. Please login and add one in the user settings.\",\"0ES9GX\":\"This price includes minimum 5 seats.\",\"0rusOU\":\"This session has expired. Please try again.\",\"ApCva8\":\"This team, and any associated data excluding billing invoices will be permanently deleted.\",\"1ABR2W\":\"This template could not be deleted at this time. Please try again.\",\"PJUOEm\":\"This token is invalid or has expired. No action is needed.\",\"4WY92K\":\"This token is invalid or has expired. Please contact your team for a new invitation.\",\"6HNLKb\":\"This URL is already in use.\",\"/yOKAT\":\"This username has already been taken\",\"ea/Ia+\":\"This username is already taken\",\"LhMjLm\":\"Time\",\"Mz2JN2\":\"Time zone\",\"MHrjPM\":\"Titel\",\"TF1e2Y\":\"To accept this invitation you must create an account.\",\"9e4NKS\":\"To change the email you must remove and add a new email address.\",\"E3QGBV\":[\"To confirm, please enter the accounts email address <0/>(\",[\"0\"],\").\"],\"/ngXqQ\":\"To confirm, please enter the reason\",\"Z/LRzj\":\"To decline this invitation you must create an account.\",\"QyrRrh\":\"To enable two-factor authentication, scan the following QR code using your authenticator app.\",\"mX0XNr\":\"To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox.\",\"THQgMC\":[\"To mark this document as viewed, you need to be logged in as <0>\",[\"0\"],\"0>\"],\"jlBOs+\":\"To view this document you need to be signed into your account, please sign in to continue.\",\"Tkvndv\":\"Toggle the switch to hide your profile from the public.\",\"X3Df6T\":\"Toggle the switch to show your profile to the public.\",\"TP9/K5\":\"Token\",\"SWyfbd\":\"Token copied to clipboard\",\"OBjhQ4\":\"Token created\",\"B5MBOV\":\"Token deleted\",\"nwwDj8\":\"Token doesn't have an expiration date\",\"v/TQsS\":\"Token expiration date\",\"SKZhW9\":\"Token name\",\"/mWwgA\":\"Total Documents\",\"dKGGPw\":\"Total Recipients\",\"WLfBMX\":\"Total Signers that Signed Up\",\"vb0Q0/\":\"Total Users\",\"PsdN6O\":\"Transfer ownership of this team to a selected team member.\",\"OOrbmP\":\"Transfer team\",\"TAB7/M\":\"Transfer the ownership of the team to another team member.\",\"34nxyb\":\"Triggers\",\"0s6zAM\":\"Two factor authentication\",\"rkM+2p\":\"Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app.\",\"C4pKXW\":\"Two-Factor Authentication\",\"NwChk2\":\"Two-factor authentication disabled\",\"qwpE/S\":\"Two-factor authentication enabled\",\"Rirbh5\":\"Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in.\",\"+zy2Nq\":\"Type\",\"fn5guJ\":\"Type 'delete' to confirm\",\"aLB9e4\":\"Type a command or search...\",\"NKs0zG\":\"Uh oh! Looks like you're missing a token\",\"syy3Gt\":\"Unable to copy recovery code\",\"CRCTCg\":\"Unable to copy token\",\"IFfB53\":\"Unable to create direct template access. Please try again later.\",\"gVlUC8\":\"Unable to decline this team invitation at this time.\",\"Y+wsI7\":\"Unable to delete invitation. Please try again.\",\"UCeveL\":\"Unable to delete team\",\"wp9XuY\":\"Unable to disable two-factor authentication\",\"kIV9PR\":\"Unable to join this team at this time.\",\"KFBm7R\":\"Unable to load document history\",\"NodEs1\":\"Unable to load your public profile templates at this time\",\"vklymD\":\"Unable to remove email verification at this time. Please try again.\",\"w8n1+z\":\"Unable to remove team email at this time. Please try again.\",\"akFhsV\":\"Unable to resend invitation. Please try again.\",\"JQLFI3\":\"Unable to resend verification at this time. Please try again.\",\"jLtRR6\":\"Unable to reset password\",\"QtkcKO\":\"Unable to setup two-factor authentication\",\"N1m2oU\":\"Unable to sign in\",\"dA/8If\":\"Unauthorized\",\"9zMI6W\":\"Uncompleted\",\"29VNqC\":\"Unknown error\",\"7yiFvZ\":\"Unpaid\",\"EkH9pt\":\"Aktualisieren\",\"CVGIOg\":\"Update Banner\",\"MSfA8z\":\"Update passkey\",\"Q3MPWA\":\"Update password\",\"vXPSuB\":\"Update profile\",\"ih1ndv\":\"Update Recipient\",\"5bRMKt\":\"Update role\",\"qg6EfE\":\"Update team\",\"V8JgFA\":\"Update team email\",\"DDP/NH\":\"Update team member\",\"KAyssy\":\"Update user\",\"iFdgvQ\":\"Update webhook\",\"2uDkRs\":\"Updating password...\",\"6JH8iK\":\"Updating profile...\",\"jUV7CU\":\"Upload Avatar\",\"2npSeV\":\"Uploaded by\",\"bM+XCB\":\"Uploaded file is too large\",\"fXh9EJ\":\"Uploaded file is too small\",\"mnNw0z\":\"Uploaded file not an allowed file type\",\"5UWfU/\":\"Use Authenticator\",\"VLViRK\":\"Use Backup Code\",\"NUXH2v\":\"Use Template\",\"7PzzBU\":\"User\",\"GjhOGB\":\"User ID\",\"DgDMhU\":\"User profiles are here!\",\"lcDO4m\":\"User settings\",\"Sxm8rQ\":\"Users\",\"wMHvYH\":\"Wert\",\"BGWaEQ\":\"Verification Email Sent\",\"XZQ6rx\":\"Verification email sent successfully.\",\"ZqWgxB\":\"Verify Now\",\"kuvvht\":\"Verify your email address\",\"c9ZsJU\":\"Verify your email address to unlock all features.\",\"OUPY2G\":\"Verify your email to upload documents.\",\"jpctdh\":\"View\",\"c3aao/\":\"View activity\",\"pTCu0c\":\"View all documents sent to your account\",\"F8qz8t\":\"View all recent security activity related to your account.\",\"t3iQF8\":\"View all security activity related to your account.\",\"t5bHu+\":\"View Codes\",\"Opb2rO\":\"View documents associated with this email\",\"FbRyw+\":\"View invites\",\"kGkM7n\":\"View Original Document\",\"z0hW8A\":\"View Recovery Codes\",\"+SRqZk\":\"View teams\",\"vXtpAZ\":\"Viewed\",\"uUehLT\":\"Waiting\",\"p5sNpe\":\"Waiting for others to sign\",\"CLj7L4\":\"Want to send slick signing links like this one? <0>Check out Documenso.0>\",\"AVOxgl\":\"Want your own public profile?\",\"bJajhk\":\"We are unable to proceed to the billing portal at this time. Please try again, or contact support.\",\"mrAou1\":\"We are unable to remove this passkey at the moment. Please try again later.\",\"PVmZRU\":\"We are unable to update this passkey at the moment. Please try again later.\",\"4CEdkv\":\"We encountered an error while removing the direct template link. Please try again later.\",\"9dCMy6\":\"We encountered an error while updating the webhook. Please try again later.\",\"/666TS\":\"We encountered an unknown error while attempting create the new token. Please try again later.\",\"ghtOmL\":\"We encountered an unknown error while attempting to add this email. Please try again later.\",\"Z3g6da\":\"We encountered an unknown error while attempting to create a team. Please try again later.\",\"5jf+Ky\":\"We encountered an unknown error while attempting to delete it. Please try again later.\",\"BYsCZ0\":\"We encountered an unknown error while attempting to delete the pending team. Please try again later.\",\"X1sSV9\":\"We encountered an unknown error while attempting to delete this team. Please try again later.\",\"kQiucd\":\"We encountered an unknown error while attempting to delete this token. Please try again later.\",\"QbeZrm\":\"We encountered an unknown error while attempting to delete your account. Please try again later.\",\"RFJXMf\":\"We encountered an unknown error while attempting to invite team members. Please try again later.\",\"NOJmg5\":\"We encountered an unknown error while attempting to leave this team. Please try again later.\",\"p1cQqG\":\"We encountered an unknown error while attempting to remove this template from your profile. Please try again later.\",\"dWt6qq\":\"We encountered an unknown error while attempting to remove this transfer. Please try again or contact support.\",\"Bf8/oy\":\"We encountered an unknown error while attempting to remove this user. Please try again later.\",\"+dHRXe\":\"We encountered an unknown error while attempting to request a transfer of this team. Please try again later.\",\"zKkKFY\":\"We encountered an unknown error while attempting to reset your password. Please try again later.\",\"jMJahr\":\"We encountered an unknown error while attempting to revoke access. Please try again or contact support.\",\"v7NHq3\":\"We encountered an unknown error while attempting to save your details. Please try again later.\",\"H2R2SX\":\"We encountered an unknown error while attempting to sign you In. Please try again later.\",\"lFQvqg\":\"We encountered an unknown error while attempting to sign you up. Please try again later.\",\"tIdO3I\":\"We encountered an unknown error while attempting to sign you Up. Please try again later.\",\"s7WVvm\":\"We encountered an unknown error while attempting to update the avatar. Please try again later.\",\"t2qome\":\"We encountered an unknown error while attempting to update the banner. Please try again later.\",\"KRW9aV\":\"We encountered an unknown error while attempting to update the template. Please try again later.\",\"jSzwNQ\":\"We encountered an unknown error while attempting to update this team member. Please try again later.\",\"ZAGznT\":\"We encountered an unknown error while attempting to update your password. Please try again later.\",\"/YgkWz\":\"We encountered an unknown error while attempting to update your public profile. Please try again later.\",\"PgR2KT\":\"We encountered an unknown error while attempting to update your team. Please try again later.\",\"Fkk/tM\":\"We encountered an unknown error while attempting update the team email. Please try again later.\",\"XdaMt1\":\"We have sent a confirmation email for verification.\",\"Z/3o7q\":\"We were unable to copy the token to your clipboard. Please try again.\",\"/f76sW\":\"We were unable to copy your recovery code to your clipboard. Please try again.\",\"5Elc4g\":\"We were unable to create a checkout session. Please try again, or contact support\",\"bw0W5A\":\"We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again.\",\"Ckd2da\":\"We were unable to log you out at this time.\",\"PGrghQ\":\"We were unable to set your public profile to public. Please try again.\",\"I8Rr9j\":\"We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again.\",\"/Ez2eA\":\"We were unable to submit this document at this time. Please try again later.\",\"zfClNd\":\"We were unable to verify your details. Please try again or contact support\",\"791g1I\":\"We were unable to verify your email. If your email is not verified already, please try again.\",\"xxInDV\":\"We're all empty\",\"lgW1qG\":[\"We've sent a confirmation email to <0>\",[\"email\"],\"0>. Please check your inbox and click the link in the email to verify your account.\"],\"an6ayw\":\"Webhook created\",\"LnaC5y\":\"Webhook deleted\",\"kxZ7LS\":\"Webhook updated\",\"nuh/Wq\":\"Webhook URL\",\"v1kQyJ\":\"Webhooks\",\"4XSc4l\":\"Weekly\",\"nx8adn\":\"Welcome back, we are lucky to have you.\",\"v+iPzY\":\"When you click continue, you will be prompted to add the first available authenticator on your system.\",\"ks103z\":\"While waiting for them to do so you can create your own Documenso account and get started with document signing right away.\",\"gW6iyU\":\"Who do you want to remind?\",\"WCtNlH\":\"Write about the team\",\"RB+i+e\":\"Write about yourself\",\"zkWmBh\":\"Yearly\",\"kWJmRL\":\"You\",\"H0+WHg\":[\"You are about to complete approving \\\"\",[\"truncatedTitle\"],\"\\\".<0/> Are you sure?\"],\"kzE21T\":[\"You are about to complete signing \\\"\",[\"truncatedTitle\"],\"\\\".<0/> Are you sure?\"],\"9AVWSg\":[\"You are about to complete viewing \\\"\",[\"truncatedTitle\"],\"\\\".<0/> Are you sure?\"],\"wPAx3W\":[\"You are about to delete <0>\\\"\",[\"documentTitle\"],\"\\\"0>\"],\"bnSqz9\":[\"You are about to delete the following team email from <0>\",[\"teamName\"],\"0>.\"],\"5K1f43\":[\"You are about to hide <0>\\\"\",[\"documentTitle\"],\"\\\"0>\"],\"Z7Zba7\":\"You are about to leave the following team.\",\"w4DsUu\":[\"You are about to remove the following user from <0>\",[\"teamName\"],\"0>.\"],\"3TbP+M\":[\"You are about to revoke access for team <0>\",[\"0\"],\"0> (\",[\"1\"],\") to use your email.\"],\"km5WYz\":\"You are currently on the <0>Free Plan0>.\",\"lS8/qb\":[\"You are currently subscribed to <0>\",[\"0\"],\"0>\"],\"vELAGq\":[\"You are currently updating <0>\",[\"teamMemberName\"],\".0>\"],\"9Vb1lk\":[\"You are currently updating the <0>\",[\"passkeyName\"],\"0> passkey.\"],\"fE9efX\":\"You are not authorized to view this page.\",\"xGF8ow\":\"You can choose to enable or disable your profile for public view.\",\"knayUe\":\"You can choose to enable or disable your team profile for public view.\",\"6RWhw7\":\"You can claim your profile later on by going to your profile settings!\",\"wvsTRr\":\"You can update the profile URL by updating the team URL in the general settings page.\",\"MfJtjp\":\"You can view documents associated with this email and use this identity when sending documents.\",\"q1+l2h\":[\"You cannot have more than \",[\"MAXIMUM_PASSKEYS\"],\" passkeys.\"],\"Nv8I50\":\"You cannot modify a team member who has a higher role than you.\",\"tBM5rt\":\"You cannot upload encrypted PDFs\",\"uPZVOC\":\"You currently have an active plan\",\"vGmUyC\":\"You do not currently have a customer record, this should not happen. Please contact support for assistance.\",\"COkiAI\":[\"You have accepted an invitation from <0>\",[\"0\"],\"0> to join their team.\"],\"XJ/LXV\":[\"You have already completed the ownership transfer for <0>\",[\"0\"],\"0>.\"],\"udOfln\":[\"You have already verified your email address for <0>\",[\"0\"],\"0>.\"],\"rawUsl\":[\"You have been invited by <0>\",[\"0\"],\"0> to join their team.\"],\"C5iBwQ\":[\"You have declined the invitation from <0>\",[\"0\"],\"0> to join their team.\"],\"9vc55I\":\"You have no webhooks yet. Your webhooks will be shown here once you create them.\",\"MWXNow\":\"You have not yet created any templates. To create a template please upload one.\",\"qJTcfP\":\"You have not yet created or received any documents. To create a document please upload one.\",\"yvV4GX\":[\"You have reached the maximum limit of \",[\"0\"],\" direct templates. <0>Upgrade your account to continue!0>\"],\"m5RA9C\":\"Sie haben Ihr Dokumentenlimit erreicht.\",\"K/3HUN\":\"You have reached your document limit. <0>Upgrade your account to continue!0>\",\"dURxlX\":\"You have successfully left this team.\",\"vi6pfe\":\"You have successfully registered. Please verify your account by clicking on the link you received in the email.\",\"B5Ovxs\":\"You have successfully removed this user from the team.\",\"PIl3Hg\":\"You have successfully revoked access.\",\"Z1UZXO\":[\"You have updated \",[\"teamMemberName\"],\".\"],\"tD6Cj2\":[\"You have verified your email address for <0>\",[\"0\"],\"0>.\"],\"pNlz0U\":\"You must be an admin of this team to manage billing.\",\"xIaz3h\":\"You must enter {confirmTransferMessage} to proceed\",\"OGT1bh\":\"You must enter {deleteMessage} to proceed\",\"jifgCp\":\"You must have at least one other team member to transfer ownership.\",\"ID3LkG\":\"You must set a profile URL before enabling your public profile.\",\"zfliFq\":[\"You need to be logged in as <0>\",[\"email\"],\"0> to view this page.\"],\"1et3k8\":\"You need to be logged in to view this page.\",\"ZR9lKP\":\"You need to setup 2FA to mark this document as viewed.\",\"tKEndc\":\"You will get notified & be able to set up your documenso public profile when we launch the feature.\",\"MBzXsC\":\"You will now be required to enter a code from your authenticator app when signing in.\",\"eWlnaX\":\"You will receive an Email copy of the signed document once everyone has signed.\",\"gmJH7Y\":\"Your account has been deleted successfully.\",\"YL3Iyk\":\"Your avatar has been updated successfully.\",\"c4qhbN\":\"Your banner has been updated successfully.\",\"+Ljs6n\":\"Your current plan is past due. Please update your payment information.\",\"5s2EJQ\":\"Your direct signing templates\",\"pj2JS8\":\"Your document failed to upload.\",\"DIplUX\":\"Your document has been created from the template successfully.\",\"iz6qAJ\":\"Your document has been re-sent successfully.\",\"0KIVTr\":\"Your document has been sent successfully.\",\"vbvBKY\":\"Your document has been successfully duplicated.\",\"TqcK/s\":\"Your document has been uploaded successfully.\",\"xEM9BR\":\"Your document has been uploaded successfully. You will be redirected to the template page.\",\"F2NQI1\":\"Your documents\",\"JQbHxK\":\"Your email has been successfully confirmed! You can now use all features of Documenso.\",\"pSDzas\":[\"Your email is currently being used by team <0>\",[\"0\"],\"0> (\",[\"1\"],\").\"],\"K6mQ0w\":\"Your existing tokens\",\"Ecp9Z/\":\"Your password has been updated successfully.\",\"/tDdSk\":\"Your payment for teams is overdue. Please settle the payment to avoid any service disruptions.\",\"R+Yx9f\":\"Your profile has been updated successfully.\",\"skqRDH\":\"Your profile has been updated.\",\"kF7YFF\":\"Your public profile has been updated.\",\"XnIGua\":\"Your recovery code has been copied to your clipboard.\",\"/N3QQp\":\"Your recovery codes are listed below. Please store them in a safe place.\",\"o9X4Qf\":\"Your subscription is currently active.\",\"+fTW4I\":\"Your team has been created.\",\"DCGKPd\":\"Your team has been successfully deleted.\",\"7rm0si\":\"Your team has been successfully updated.\",\"icNCVp\":\"Your template has been duplicated successfully.\",\"juxjhy\":\"Your template has been successfully deleted.\",\"BHaG+M\":\"Your template will be duplicated.\",\"WQkZGA\":\"Your templates has been saved successfully.\",\"4OcZNw\":\"Your token has expired!\",\"stera3\":\"Your token was created successfully! Make sure to copy it because you won't be able to see it again!\",\"R5j6t5\":\"Your tokens will be shown here once you create them.\",\"73XXzw\":[[\"0\"],\" von \",[\"1\"],\" Zeile(n) ausgewählt.\"],\"lZ4w45\":[[\"visibleRows\",\"plural\",{\"one\":[\"Eine \",\"#\",\" Ergebnis wird angezeigt.\"],\"other\":[\"#\",\" Ergebnisse werden angezeigt.\"]}]],\"AhYxw5\":\"<0>Authentifizierungsmethode erben0> - Verwenden Sie die in den \\\"Allgemeinen Einstellungen\\\" konfigurierte globale Aktionssignatur-Authentifizierungsmethode\",\"OepImG\":\"<0>Keine Einschränkungen0> - Keine Authentifizierung erforderlich\",\"07+JZ2\":\"<0>Keine Einschränkungen0> - Das Dokument kann direkt über die dem Empfänger gesendete URL abgerufen werden\",\"jx/lwn\":\"<0>Keine0> - Keine Authentifizierung erforderlich\",\"CUT3u1\":\"<0>2FA erforderlich0> - Der Empfänger muss ein Konto haben und die 2FA über seine Einstellungen aktiviert haben\",\"2PbD3D\":\"<0>Konto erforderlich0> - Der Empfänger muss angemeldet sein, um das Dokument anzeigen zu können\",\"QHSbey\":\"<0>Passkey erforderlich0> - Der Empfänger muss ein Konto haben und den Passkey über seine Einstellungen konfiguriert haben\",\"Oy5nEc\":\"Dokument hinzufügen\",\"7Pz5x5\":\"Fügen Sie eine URL hinzu, um den Benutzer nach der Unterzeichnung des Dokuments weiterzuleiten\",\"aILOUH\":\"Fügen Sie dem Dokument eine externe ID hinzu. Diese kann verwendet werden, um das Dokument in externen Systemen zu identifizieren.\",\"bK1dPK\":\"Fügen Sie der Vorlage eine externe ID hinzu. Diese kann zur Identifizierung in externen Systemen verwendet werden.\",\"nnZ1Sa\":\"Weitere Option hinzufügen\",\"0/UVRw\":\"Weiteren Wert hinzufügen\",\"VaCh6w\":\"Mich selbst hinzufügen\",\"jAa/lz\":\"Mich hinzufügen\",\"29QK6H\":\"Platzhalterempfänger hinzufügen\",\"vcxlzZ\":\"Unterzeichner hinzufügen\",\"7F2ltK\":\"Text zum Feld hinzufügen\",\"U3pytU\":\"Admin\",\"NFIOKv\":\"Erweiterte Optionen\",\"VNgKZz\":\"Erweiterte Einstellungen\",\"bNUpvl\":\"Nach der Übermittlung wird ein Dokument automatisch generiert und zu Ihrer Dokumentenseite hinzugefügt. Sie erhalten außerdem eine Benachrichtigung per E-Mail.\",\"ca9AbO\":\"Genehmiger\",\"j2Uisd\":\"Genehmigung\",\"brJrDl\":\"Unterzeichner kann nicht entfernt werden\",\"RpYfjZ\":\"Cc\",\"XdZeJk\":\"CC\",\"nrL/ZD\":\"CC'd\",\"EEk+d0\":\"Zeichenbeschränkung\",\"G1XxbZ\":\"Checkbox\",\"wbixMe\":\"Checkbox-Werte\",\"u8JHrO\":\"Filter löschen\",\"IqxkER\":\"Unterschrift löschen\",\"OrcxNk\":\"Direkten Empfänger konfigurieren\",\"92KLYs\":[\"Konfigurieren Sie das Feld \",[\"0\"]],\"GB2F11\":\"Benutzerdefinierter Text\",\"4BHv90\":\"Datumsformat\",\"NLXhq7\":\"Empfänger des direkten Links\",\"YScG1E\":\"Dokumentenzugriff\",\"rAqi0g\":\"Dokumenterstellung\",\"6GyScL\":\"Ziehen Sie Ihr PDF hierher.\",\"iKQcPM\":\"Dropdown\",\"XXvhMd\":\"Dropdown-Optionen\",\"XLpxoj\":\"E-Mail-Optionen\",\"f7sXvi\":\"Passwort eingeben\",\"5KfWxA\":\"Externe ID\",\"4CP+OV\":\"Einstellungen konnten nicht gespeichert werden.\",\"LK3SFK\":\"Zeichenbeschränkung des Feldes\",\"NYkIsf\":\"Feldformat\",\"X6Tb6Q\":\"Feldbeschriftung\",\"NaVkSD\":\"Feldplatzhalter\",\"N1UTWT\":\"Globale Empfängerauthentifizierung\",\"uCroPU\":\"Ich bin ein Unterzeichner dieses Dokuments\",\"K6KTX2\":\"Ich bin ein Betrachter dieses Dokuments\",\"ngj5km\":\"Ich bin ein Genehmiger dieses Dokuments\",\"JUZIGu\":\"Ich bin verpflichtet, eine Kopie dieses Dokuments zu erhalten\",\"ZjDoG7\":\"I am required to recieve a copy of this document\",\"fnbcC0\":\"Authentifizierungsmethode erben\",\"87a/t/\":\"Beschriftung\",\"dtOoGl\":\"Manager\",\"CK1KXz\":\"Max\",\"OvoEq7\":\"Mitglied\",\"ziXm9u\":\"Nachricht <0>(Optional)0>\",\"eTUF28\":\"Min\",\"4nqUV0\":\"Muss genehmigen\",\"lNQBPg\":\"Muss unterzeichnen\",\"eUAUyG\":\"Muss sehen\",\"GBIRGD\":\"Kein passender Empfänger mit dieser Beschreibung gefunden.\",\"f34Qxi\":\"Keine Empfänger mit dieser Rolle\",\"qQ7oqE\":\"Keine Einschränkungen\",\"AxPAXW\":\"Keine Ergebnisse gefunden\",\"pt86ev\":\"Kein Unterschriftsfeld gefunden\",\"HptUxX\":\"Nummer\",\"bR2sEm\":\"Zahlenformat\",\"eY6ns+\":\"Sobald aktiviert, können Sie einen aktiven Empfänger für die Direktlink-Signierung auswählen oder einen neuen erstellen. Dieser Empfängertyp kann nicht bearbeitet oder gelöscht werden.\",\"JE2qy+\":\"Sobald Ihre Vorlage eingerichtet ist, teilen Sie den Link überall, wo Sie möchten. Die Person, die den Link öffnet, kann ihre Informationen im Feld für direkte Empfänger eingeben und alle anderen ihr zugewiesenen Felder ausfüllen.\",\"fpzyLj\":[\"Seite \",[\"0\"],\" von \",[\"1\"]],\"8ltyoa\":\"Passwort erforderlich\",\"ayaTI6\":\"Wählen Sie eine Zahl\",\"hx1ePY\":\"Platzhalter\",\"MtkqZc\":\"Radio\",\"5cEi0C\":\"Radio-Werte\",\"uNQ6eB\":\"Nur lesen\",\"UTnF5X\":\"Erhält Kopie\",\"ZIuo5V\":\"Empfängeraktion Authentifizierung\",\"VTB2Rz\":\"Weiterleitungs-URL\",\"8dg+Yo\":\"Pflichtfeld\",\"xxCtZv\":\"Zeilen pro Seite\",\"9Y3hAT\":\"Vorlage speichern\",\"hVPa4O\":\"Option auswählen\",\"IM+vrQ\":\"Wählen Sie mindestens\",\"Gve6FG\":\"Standardoption auswählen\",\"JlFcis\":\"Senden\",\"AEV4wo\":\"Dokument senden\",\"iE3nGO\":\"Unterschriftenkarte teilen\",\"y+hKWu\":\"Link teilen\",\"ydZ6yi\":\"Erweiterte Einstellungen anzeigen\",\"jTCAGu\":\"Unterzeichner\",\"6G8s+q\":\"Unterzeichnung\",\"kW2h2Z\":\"Einige Unterzeichner haben noch kein Unterschriftsfeld zugewiesen bekommen. Bitte weisen Sie jedem Unterzeichner mindestens ein Unterschriftsfeld zu, bevor Sie fortfahren.\",\"kf83Ld\":\"Etwas ist schief gelaufen.\",\"WlBiWh\":[\"Schritt <0>\",[\"step\"],\" von \",[\"maxStep\"],\"0>\"],\"ki77Td\":\"Betreff <0>(Optional)0>\",\"hQRttt\":\"Einreichen\",\"URdrTr\":\"Vorlagentitel\",\"xeiujy\":\"Text\",\"imClgr\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger Felder signieren\",\"yyD2dE\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger das Signaturfeld signieren können.\",\"GtDmLf\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger das Dokument anzeigen können.\",\"zAoaPB\":\"Der Name des Dokuments\",\"Ev3GOS\":\"Das eingegebene Passwort ist falsch. Bitte versuchen Sie es erneut.\",\"OPnnb6\":\"Der Empfänger muss keine Aktion ausführen und erhält nach Abschluss eine Kopie des Dokuments.\",\"v8p6Mb\":\"Der Empfänger muss das Dokument genehmigen, damit es abgeschlossen werden kann.\",\"CPv0TB\":\"Der Empfänger muss das Dokument unterschreiben, damit es abgeschlossen werden kann.\",\"oIvIfH\":\"Der Empfänger muss das Dokument anzeigen, damit es abgeschlossen werden kann.\",\"Br2bvS\":\"Der Freigabelink konnte in diesem Moment nicht erstellt werden. Bitte versuchen Sie es erneut.\",\"XJIzqY\":\"Der Freigabelink wurde in Ihre Zwischenablage kopiert.\",\"UyM8/E\":\"Die E-Mail des Unterzeichners\",\"zHJ+vk\":\"Der Name des Unterzeichners\",\"kaEF2i\":\"Dies kann überschrieben werden, indem die Authentifizierungsanforderungen im nächsten Schritt direkt für jeden Empfänger festgelegt werden.\",\"QUZVfd\":\"Dieses Dokument wurde bereits an diesen Empfänger gesendet. Sie können diesen Empfänger nicht mehr bearbeiten.\",\"riNGUC\":\"Dieses Dokument ist durch ein Passwort geschützt. Bitte geben Sie das Passwort ein, um das Dokument anzusehen.\",\"Qkeh+t\":\"Dieses Feld kann nicht geändert oder gelöscht werden. Wenn Sie den direkten Link dieser Vorlage teilen oder zu Ihrem öffentlichen Profil hinzufügen, kann jeder, der darauf zugreift, seinen Namen und seine E-Mail-Adresse eingeben und die ihm zugewiesenen Felder ausfüllen.\",\"l2Xt6u\":\"Dieser Unterzeichner hat das Dokument bereits erhalten.\",\"6iFh5a\":\"Dies überschreibt alle globalen Einstellungen.\",\"RxsRD6\":\"Zeitzone\",\"UWmOq4\":[\"Um fortzufahren, legen Sie bitte mindestens einen Wert für das Feld \",[\"0\"],\" fest.\"],\"GT+2nz\":\"Aktualisieren Sie die Rolle und fügen Sie Felder nach Bedarf für den direkten Empfänger hinzu. Die Person, die den direkten Link verwendet, wird das Dokument als direkter Empfänger unterzeichnen.\",\"kwkhPe\":\"Upgrade\",\"06fEqf\":\"Vorlagendokument hochladen\",\"lGWE4b\":\"Validierung\",\"M/TIv1\":\"Viewer\",\"RVWz5F\":\"Viewing\",\"4/hUq0\":\"Sie sind dabei, dieses Dokument an die Empfänger zu senden. Sind Sie sicher, dass Sie fortfahren möchten?\",\"rb/T41\":\"Sie können die folgenden Variablen in Ihrer Nachricht verwenden:\",\"9+Ph0R\":\"Sie können derzeit keine Dokumente hochladen.\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"4CkA8m\":[\"\\\"\",[\"0\"],\"\\\" wird im Dokument erscheinen, da es eine Zeitzone von \\\"\",[\"timezone\"],\"\\\" hat.\"],\"PGXGNV\":[\"\\\"\",[\"documentTitle\"],\"\\\" wurde erfolgreich gelöscht\"],\"ibh+jM\":[\"(\",[\"0\"],\") hat dich eingeladen, dieses Dokument zu genehmigen\"],\"Hdo1JO\":[\"(\",[\"0\"],\") hat dich eingeladen, dieses Dokument zu unterzeichnen\"],\"wPU8t5\":[\"(\",[\"0\"],\") hat dich eingeladen, dieses Dokument zu betrachten\"],\"1mCQTM\":[[\"0\",\"plural\",{\"one\":\"(1 Zeichen über dem Limit)\",\"other\":[\"(\",\"#\",\" Zeichen über dem Limit)\"]}]],\"8laXJX\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Zeichen über dem Limit\"],\"other\":[\"#\",\" Zeichen über dem Limit\"]}]],\"/7wuBM\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Empfänger\"],\"other\":[\"#\",\" Empfänger\"]}]],\"WVvaAa\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Sitz\"],\"other\":[\"#\",\" Sitze\"]}]],\"mBW/Nj\":[[\"0\",\"plural\",{\"one\":\"<0>Du hast <1>11> ausstehende Team-Einladung0>\",\"other\":[\"<2>Du hast <3>\",\"#\",\"3> ausstehende Team-Einladungen2>\"]}]],\"+Futv0\":[[\"0\",\"plural\",{\"one\":\"1 Empfänger\",\"other\":[\"#\",\" Empfänger\"]}]],\"/9xV/+\":[[\"0\",\"plural\",{\"one\":\"Warte auf 1 Empfänger\",\"other\":[\"Warte auf \",\"#\",\" Empfänger\"]}]],\"NKVaV/\":[[\"0\",\"plural\",{\"zero\":\"Werte auswählen\",\"other\":[\"#\",\" ausgewählt...\"]}]],\"XZlK7r\":[[\"0\"],\" direkte Signaturvorlagen\"],\"FDQtbR\":[[\"0\"],\" Dokument\"],\"NnFCoc\":[[\"0\"],\" von \",[\"1\"],\" Dokumenten verbleibend in diesem Monat.\"],\"5YOFTl\":[[\"0\"],\" Empfänger(in) / -n\"],\"7VC/RF\":[[\"0\"],\" das Dokument, um den Prozess abzuschließen.\"],\"fjZZE0\":[[\"charactersRemaining\",\"plural\",{\"one\":\"1 Zeichen verbleibend\",\"other\":[[\"charactersRemaining\"],\" Zeichen verbleibend\"]}]],\"AQAq/V\":[[\"formattedTeamMemberQuanity\"],\" • Monatlich • Erneuert: \",[\"formattedDate\"]],\"QBOMc/\":[[\"numberOfSeats\",\"plural\",{\"one\":[\"#\",\" Mitglied\"],\"other\":[\"#\",\" Mitglieder\"]}]],\"B/VHou\":[[\"remaningLength\",\"plural\",{\"one\":[\"#\",\" Zeichen verbleibend\"],\"other\":[\"#\",\" Zeichen verbleibend\"]}]],\"Z5MlD3\":[\"<0>\\\"\",[\"0\"],\"\\\"0> steht nicht mehr zur Unterschrift zur Verfügung\"],\"xvzJ86\":\"<0>Absender:0> Alle\",\"mVRii8\":\"404 Seite nicht gefunden\",\"WZHDfC\":\"404 Profil nicht gefunden\",\"4lyY0m\":\"404 Team nicht gefunden\",\"In0QZI\":\"404 Vorlage nicht gefunden\",\"1a1ztU\":\"Eine Bestätigungs-E-Mail wurde gesendet, und sie sollte in Kürze in deinem Posteingang ankommen.\",\"0JoPTv\":\"Ein Entwurf wird erstellt\",\"pYI9yv\":\"Ein neuer Token wurde erfolgreich erstellt.\",\"FnK1CG\":\"Eine E-Mail zum Zurücksetzen des Passworts wurde gesendet, wenn du ein Konto hast, solltest du sie in Kürze in deinem Posteingang sehen.\",\"GtLRrc\":[\"Eine Anfrage zur Übertragung des Eigentums dieses Teams wurde an <0>\",[\"0\"],\" (\",[\"1\"],\")0> gesendet\"],\"EUAIAh\":\"Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde\",\"FUzxsL\":\"Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde.\",\"h39O4b\":\"Eine eindeutige URL, um auf dein Profil zuzugreifen\",\"B26oYX\":\"Eine eindeutige URL, um dein Team zu identifizieren\",\"YKB66I\":\"Eine Bestätigungs-E-Mail wird an die angegebene E-Mail-Adresse gesendet.\",\"g3UF2V\":\"Akzeptieren\",\"f8bc61\":\"Team-Einladung akzeptiert\",\"TKFUnX\":\"Konto gelöscht\",\"bwRvnp\":\"Aktion\",\"7L01XJ\":\"Aktionen\",\"F6pfE9\":\"Aktiv\",\"i1lpSD\":\"Aktive Abonnements\",\"m16xKo\":\"Hinzufügen\",\"qkB+9Q\":\"Fügen Sie alle relevanten Felder für jeden Empfänger hinzu.\",\"bpOeyo\":\"Fügen Sie alle relevanten Platzhalter für jeden Empfänger hinzu.\",\"GQ/q/T\":\"Fügen Sie einen Authenticator hinzu, um als sekundäre Authentifizierungsmethode für die Unterzeichnung von Dokumenten zu dienen.\",\"o7gocE\":\"Fügen Sie einen Authenticator hinzu, um als sekundäre Authentifizierungsmethode beim Einloggen oder bei der Unterzeichnung von Dokumenten zu dienen.\",\"bJUlXv\":\"E-Mail hinzufügen\",\"S/w/ui\":\"Felder hinzufügen\",\"iOiHwJ\":\"Mehr hinzufügen\",\"rSRyAh\":\"Nummer hinzufügen\",\"w3zmQl\":\"Passkey hinzufügen\",\"zkvWcK\":\"Platzhalter hinzufügen\",\"2Rqi1z\":\"Unterzeichner hinzufügen\",\"eZyoIc\":\"Betreff hinzufügen\",\"bD3qQ7\":\"Team-E-Mail hinzufügen\",\"MwcOtB\":\"Text hinzufügen\",\"mXXoi9\":\"Text hinzufügen\",\"vn6wzk\":\"Fügen Sie die Personen hinzu, die das Dokument unterschreiben werden.\",\"8XAJNZ\":\"Fügen Sie die Empfänger hinzu, um das Dokument zu erstellen\",\"F9ayeh\":\"Fügen Sie den Betreff und die Nachricht hinzu, die Sie den Unterzeichnern senden möchten.\",\"pjVxbn\":\"Das Hinzufügen und Entfernen von Sitzplätzen wird Ihre Rechnung entsprechend anpassen.\",\"VfkDmn\":\"Admin-Aktionen\",\"SsHJsm\":\"Admin-Panel\",\"N40H+G\":\"Alle\",\"/LYSFR\":\"Alle Dokumente\",\"myVKpO\":\"Alle Dokumente wurden verarbeitet. Alle neuen Dokumente, die gesendet oder empfangen werden, werden hier angezeigt.\",\"8dC9dh\":\"Alle eingefügten Unterschriften werden annulliert\",\"a809wO\":\"Alle Empfänger werden benachrichtigt\",\"DA2Nma\":\"Alle Vorlagen\",\"5b4J4v\":\"Alle Zeiten\",\"8URWfv\":\"Erlaubt die Authentifizierung mit biometrischen Daten, Passwort-Managern, Hardware-Schlüsseln usw.\",\"QN+LeY\":\"Hast du bereits ein Konto? <0>Stattdessen anmelden0>\",\"hehnjM\":\"Betrag\",\"VeMlGP\":\"Eine E-Mail mit einer Einladung wird an jedes Mitglied gesendet.\",\"Cs4Mqi\":\"Eine E-Mail, in der die Übertragung dieses Teams angefordert wird, wurde gesendet.\",\"Vw8l6h\":\"Ein Fehler ist aufgetreten\",\"aAZxd7\":\"Ein Fehler ist aufgetreten, während Unterzeichner hinzugefügt wurden.\",\"qFEx41\":\"Ein Fehler ist aufgetreten, während die Felder hinzugefügt wurden.\",\"ycUtHd\":\"Ein Fehler ist aufgetreten, während das Dokument aus der Vorlage erstellt wurde.\",\"8jjOHI\":\"Ein Fehler ist aufgetreten, während der Webhook erstellt wurde. Bitte versuchen Sie es erneut.\",\"D6tvkq\":\"Ein Fehler ist aufgetreten, während das direkte Links-Signieren deaktiviert wurde.\",\"HNjVHR\":\"Ein Fehler ist aufgetreten, während dein Dokument heruntergeladen wurde.\",\"z7nHXh\":\"Ein Fehler ist aufgetreten, während die Vorlage dupliziert wurde.\",\"WnEuiF\":\"Ein Fehler ist aufgetreten, während das direkte Links-Signieren aktiviert wurde.\",\"eijDci\":\"Ein Fehler ist aufgetreten, während die Teammitglieder geladen wurden. Bitte versuchen Sie es später erneut.\",\"ZL2b3c\":\"Ein Fehler ist aufgetreten, während das Dokument verschoben wurde.\",\"vECB98\":\"Ein Fehler ist aufgetreten, während die Vorlage verschoben wurde.\",\"677Rs2\":\"Ein Fehler ist aufgetreten, während die Unterschrift entfernt wurde.\",\"niV8ex\":\"Ein Fehler ist aufgetreten, während der Text entfernt wurde.\",\"+UiFs2\":\"Ein Fehler ist aufgetreten, während das Dokument gesendet wurde.\",\"W8sZtD\":\"Beim Senden Ihrer Bestätigungs-E-Mail ist ein Fehler aufgetreten\",\"CKRkxA\":\"Ein Fehler ist aufgetreten, während das Dokument unterzeichnet wurde.\",\"k2HSGs\":\"Ein Fehler ist aufgetreten, während versucht wurde, eine Checkout-Sitzung zu erstellen.\",\"PBvwjZ\":\"Ein Fehler ist aufgetreten, während die Dokumenteinstellungen aktualisiert wurden.\",\"vNZnKS\":\"Ein Fehler ist aufgetreten, während die Unterschrift aktualisiert wurde.\",\"ed1aMc\":\"Ein Fehler ist aufgetreten, während dein Profil aktualisiert wurde.\",\"hGN3eM\":\"Ein Fehler ist aufgetreten, während dein Dokument hochgeladen wurde.\",\"vW+T+d\":\"Es ist ein unbekannter Fehler aufgetreten\",\"Iq1gDI\":\"Alle Zahlungsmethoden, die mit diesem Team verbunden sind, bleiben diesem Team zugeordnet. Bitte kontaktiere uns, wenn du diese Informationen aktualisieren möchtest.\",\"ZiooJI\":\"API-Token\",\"mf2Wzk\":\"App-Version\",\"Z7ZXbT\":\"Genehmigen\",\"7kb4LU\":\"Genehmigt\",\"0EvA/s\":\"Bist du sicher, dass du dieses Token löschen möchtest?\",\"99ZWCN\":[\"Bist du sicher, dass du den <0>\",[\"passkeyName\"],\"0> Passkey entfernen möchtest.\"],\"1D4Rs0\":\"Bist du dir sicher, dass du dieses Team löschen möchtest?\",\"6foA8n\":\"Bist du dir sicher?\",\"rgXDlk\":\"Versuche, das Dokument erneut zu versiegeln, nützlich nach einer Codeänderung, um ein fehlerhaftes Dokument zu beheben.\",\"ilRCh1\":\"Audit-Protokoll\",\"XiaVj+\":\"Authentifizierung erforderlich\",\"kfcRb0\":\"Avatar\",\"uzGcBT\":\"Avatar aktualisiert\",\"q8qrYJ\":\"Warte auf E-Mail-Bestätigung\",\"iH8pgl\":\"Zurück\",\"FL8Lic\":\"Zurück zu Dokumenten\",\"k1bLf+\":\"Hintergrundfarbe\",\"ev7oAJ\":\"Backup-Code\",\"M2cci0\":\"Backup-Codes\",\"eQwW5Q\":\"Banner aktualisiert\",\"3dSIQs\":\"Basisdetails\",\"R+w/Va\":\"Abrechnung\",\"0DGrp8\":\"Browser\",\"r4lECO\":\"Bulk-Import\",\"dMoTGp\":\"Durch das Löschen dieses Dokuments wird Folgendes passieren:\",\"zjt329\":\"Durch die Aktivierung von 2FA müssen Sie jedes Mal, wenn Sie sich anmelden, einen Code aus Ihrer Authenticator-App eingeben.\",\"dEgA5A\":\"Abbrechen\",\"sa1BnH\":\"Vom Benutzer abgebrochen\",\"A4tHrb\":\"Diagramme\",\"znIg+z\":\"Abrechnung\",\"MeyfTD\":\"Wählen Sie einen vorhandenen Empfänger unten aus, um fortzufahren\",\"iWVl0V\":\"Wählen Sie den direkten Link Empfänger\",\"1qI3Gk\":\"Wählen...\",\"1m18m/\":\"Konto beanspruchen\",\"tvmS/k\":\"Benutzername beanspruchen\",\"vRjC9y\":\"Profile später beanspruchen\",\"HiEGc0\":\"Benutzername jetzt beanspruchen\",\"ELiPtq\":\"Klicken Sie hier, um zu beginnen\",\"BvF90q\":\"Klicken Sie hier, um es erneut zu versuchen\",\"cgfP+i\":\"Klicken Sie hier, um hochzuladen\",\"L1127j\":\"Klicken Sie, um den Signatur-Link zu kopieren, um ihn an den Empfänger zu senden\",\"eZ6/Uj\":\"Klicken, um das Feld einzufügen\",\"yz7wBu\":\"Schließen\",\"bD8I7O\":\"Vollständig\",\"jVAqZz\":\"Genehmigung abschließen\",\"0ojNue\":\"Unterzeichnung abschließen\",\"+5y0NQ\":\"Betrachten abschließen\",\"qqWcBV\":\"Abgeschlossen\",\"rGm4yZ\":\"Abgeschlossene Dokumente\",\"p5+XQN\":\"Abgeschlossene Dokumente\",\"UfLuLv\":\"Konfigurieren Sie die allgemeinen Einstellungen für das Dokument.\",\"hIv3aM\":\"Konfigurieren Sie die allgemeinen Einstellungen für die Vorlage.\",\"LVnHGj\":\"Vorlage konfigurieren\",\"7VpPHA\":\"Bestätigen\",\"gMlC/b\":[\"Bestätigen Sie durch Eingabe von <0>\",[\"confirmTransferMessage\"],\"0>\"],\"FQnPC+\":[\"Bestätigen Sie durch Eingabe von <0>\",[\"deleteMessage\"],\"0>\"],\"gv1JXQ\":[\"Bestätigen Sie durch Eingabe: <0>\",[\"deleteMessage\"],\"0>\"],\"w0Qb5v\":\"Bestätigung der Löschung\",\"CMj4hw\":\"E-Mail bestätigen\",\"13PnPF\":\"Bestätigungs-E-Mail gesendet\",\"4b3oEV\":\"Inhalt\",\"xGVfLh\":\"Fortsetzen\",\"/KgpcA\":\"Weiter zum Login\",\"FxVG/l\":\"In die Zwischenablage kopiert\",\"phD28x\":\"Kopieren Sie den teilbaren Link\",\"ZxZS0E\":\"Kopiere den teilbaren Link\",\"BddwrJ\":\"Token kopieren\",\"hYgDIe\":\"Erstellen\",\"mpt9T+\":\"Ein neues Konto erstellen\",\"kxGCtA\":\"Ein Team erstellen, um mit Ihren Teammitgliedern zusammenzuarbeiten.\",\"1hMWR6\":\"Konto erstellen\",\"H7nlli\":\"Erstellen und senden\",\"BYg48B\":\"Als Entwurf erstellen\",\"JqmhmE\":\"Direkten Link erstellen\",\"wtV4WO\":\"Direkten Signatur-Link erstellen\",\"fDTEKZ\":\"Dokument aus der Vorlage erstellen\",\"1svIlj\":\"Jetzt erstellen\",\"JLQooE\":\"Einen automatisch erstellen\",\"YGQVmg\":\"Team erstellen\",\"fWFMgb\":\"Team erstellen\",\"pzXZ8+\":\"Token erstellen\",\"SiPp29\":\"Webhook erstellen\",\"dkAPxi\":\"Webhook erstellen\",\"8T5f7o\":\"Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensignieren.\",\"rr83qK\":\"Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensignieren. Offenes und schönes Signieren liegt in Ihrer Reichweite.\",\"d+F6q9\":\"Erstellt\",\"88kg0+\":\"Erstellt am\",\"NCIYDF\":\"Erstellt von\",\"45O6zJ\":\"Erstellt am\",\"t3sqJR\":[\"Created on \",[\"0\"]],\"SVZbH4\":\"Created on <0/>\",\"czzAa/\":\">>>>>>> 4ca18b99 (fix: refactor dates)\",\"DCKkhU\":\"Aktuelles Passwort\",\"74XDHP\":[\"Aktueller Plan: \",[\"0\"]],\"U0sC6H\":\"Täglich\",\"oRVm8M\":\"Dunkelmodus\",\"mYGY3B\":\"Datum\",\"u46WEi\":\"Erstellungsdatum\",\"jbq7j2\":\"Ablehnen\",\"uSS9OX\":\"Team-Einladung abgelehnt\",\"cnGeoo\":\"Löschen\",\"ZDGm40\":\"Konto löschen\",\"vzX5FB\":\"Konto löschen\",\"+vDIXN\":\"Dokument löschen\",\"MUynQL\":\"Dokument löschen\",\"0tFf9L\":\"Passkey löschen\",\"MYiaA4\":\"Team löschen\",\"WZHJBH\":\"Teammitglied löschen\",\"M5Nsil\":\"Löschen Sie das Dokument. Diese Aktion ist irreversibel, daher seien Sie vorsichtig.\",\"ETB4Yh\":\"Löschen Sie das Benutzerkonto und seinen gesamten Inhalt. Diese Aktion ist irreversibel und wird das Abonnement kündigen, seien Sie also vorsichtig.\",\"zdyslo\":\"Webhook löschen\",\"IJMZKG\":\"Löschen Sie Ihr Konto und alle Inhalte, einschließlich abgeschlossener Dokumente. Diese Aktion ist irreversibel und führt zur Kündigung Ihres Abonnements, seien Sie also vorsichtig.\",\"vGjmyl\":\"Gelöscht\",\"cmDFUK\":\"Konto wird gelöscht...\",\"PkSiFP\":\"Deleting document\",\"PEHQTf\":\"Gerät\",\"YseRvk\":\"Direkter Link\",\"cfARFZ\":\"Direkter Link\",\"VdX+I4\":\"Direkter Link deaktiviert\",\"nNHqgX\":\"Direkt-Link-Signatur\",\"k2FNdx\":\"Die direkte Links-Signatur wurde deaktiviert\",\"gsc+pZ\":\"Die direkte Links-Signatur wurde aktiviert\",\"CRdqqs\":\"Direkte Linkvorlagen enthalten einen dynamischen Empfänger-Platzhalter. Jeder, der Zugriff auf diesen Link hat, kann das Dokument unterzeichnen, und es wird dann auf Ihrer Dokumenten-Seite angezeigt.\",\"WCGIfx\":\"Direkter Vorlagenlink gelöscht\",\"2HKj5L\":[\"Die Verwendung des direkten Vorlagenlinks wurde überschritten (\",[\"0\"],\"/\",[\"1\"],\")\"],\"cO9+2L\":\"Deaktivieren\",\"qERl58\":\"2FA deaktivieren\",\"pf7wfS\":\"Deaktivieren Sie die Zwei-Faktor-Authentifizierung, bevor Sie Ihr Konto löschen.\",\"E/QGRL\":\"Deaktiviert\",\"H11Db4\":\"Das Deaktivieren der direkten Link-Signatur verhindert, dass jemand auf den Link zugreifen kann.\",\"Oq0b7I\":\"Zeigen Sie Ihren Namen und Ihre E-Mail in Dokumenten an\",\"pR1j0x\":\"Möchten Sie diese Vorlage löschen?\",\"MqL7Ex\":\"Möchten Sie diese Vorlage duplizieren?\",\"MUwFBV\":\"Documenso wird <0>alle Ihre Dokumente0> löschen, zusammen mit allen abgeschlossenen Dokumenten, Unterschriften und allen anderen Ressourcen, die zu Ihrem Konto gehören.\",\"7Zdnlq\":\"Dokument\",\"kz4vX7\":\"Dokument Alle\",\"Pr3c2A\":\"Dokument genehmigt\",\"Kvf7iA\":\"Dokument abgebrochen\",\"GOO+sv\":\"Dokument abgeschlossen\",\"6KFLWX\":\"Dokument abgeschlossen!\",\"frw2OP\":\"Dokument erstellt\",\"ZlIPM3\":\"Dokument gelöscht\",\"IvkBV7\":\"Dokument-Entwurf\",\"nF+jHn\":\"Dokument dupliziert\",\"Zfj12J\":\"Dokumentverlauf\",\"glwlqW\":\"Dokument-ID\",\"WqG6Wi\":\"Dokumenten-Posteingang\",\"WrliRN\":\"Dokumentenlimit überschritten!\",\"AGzFn4\":\"Dokumentmetrik\",\"w+SPlp\":\"Dokument verschoben\",\"G45FNk\":\"Dokument steht nicht mehr zur Unterschrift zur Verfügung\",\"EhII5Z\":\"Dokument ausstehend\",\"XIvQfe\":\"Dokument erneut gesendet\",\"S2Wpx4\":\"Dokument wieder versiegelt\",\"2r5F7N\":\"Dokument gesendet\",\"prbyy5\":\"Dokument signiert\",\"O832hg\":\"Der Dokumentenunterzeichnungsprozess wird abgebrochen\",\"UkHClc\":\"Dokumentenstatus\",\"RDOlfT\":\"Dokumenttitel\",\"R1TUTP\":\"Dokumenten-Upload deaktiviert aufgrund unbezahlter Rechnungen\",\"PGrc79\":\"Dokument hochgeladen\",\"UfJ5fX\":\"Dokument angesehen\",\"bTGVhQ\":\"Dokument wird dauerhaft gelöscht\",\"E/muDO\":\"Dokumente\",\"q89WTJ\":\"Dokumente empfangen\",\"77Aq1u\":\"Dokumente angesehen\",\"352VU2\":\"Haben Sie kein Konto? <0>Registrieren0>\",\"mzI/c+\":\"Herunterladen\",\"lojhUl\":\"Auditprotokolle herunterladen\",\"uKWz9T\":\"Zertifikat herunterladen\",\"eneWvv\":\"Entwurf\",\"gWAuiM\":\"Entwurfdokumente\",\"8OzE2k\":\"Entwurfte Dokumente\",\"QurWnM\":\"Aufgrund einer unbezahlten Rechnung wurde Ihrem Team der Zugriff eingeschränkt. Bitte begleichen Sie die Zahlung, um den vollumfänglichen Zugang zu Ihrem Team wiederherzustellen.\",\"euc6Ns\":\"Duplizieren\",\"ePK91l\":\"Bearbeiten\",\"fW5sSv\":\"Webhook bearbeiten\",\"O3oNi5\":\"E-Mail\",\"ATGYL1\":\"E-Mail-Adresse\",\"hzKQCy\":\"E-Mail-Adresse\",\"HmTucU\":\"E-Mail bestätigt!\",\"JHLcvq\":\"E-Mail gesendet!\",\"bK7p2G\":\"E-Mail-Verifizierung wurde entfernt\",\"xk9d59\":\"E-Mail-Verifizierung wurde erneut gesendet\",\"DCRKbe\":\"2FA aktivieren\",\"Gndbft\":\"Authenticator-App aktivieren\",\"iNXTYT\":\"Direktlinksignierung aktivieren\",\"qChNnS\":\"Direktlink-Signierung aktivieren\",\"RxzN1M\":\"Aktiviert\",\"y6J8wY\":\"Endet am\",\"C3nD/1\":\"Geben Sie Ihre E-Mail-Adresse ein\",\"oM8ocD\":\"Geben Sie Ihre E-Mail-Adresse ein, um das abgeschlossene Dokument zu erhalten.\",\"n9V+ps\":\"Geben Sie Ihren Namen ein\",\"v0GDxO\":\"Geben Sie hier Ihren Text ein\",\"SlfejT\":\"Fehler\",\"ZkROsq\":\"Alle haben unterschrieben\",\"4MNaCF\":\"Alle haben unterschrieben! Sie werden eine E-Mail-Kopie des unterzeichneten Dokuments erhalten.\",\"uWW+rJ\":\"Zeitüberschreitung überschritten\",\"M1RnFv\":\"Abgelaufen\",\"RIcSTA\":\"Expires on\",\"xd2LI3\":\">>>>>>> 4ca18b99 (fix: refactor dates)\",\"LbGReD\":\"Expires on <0/>\",\"FtTj1O\":[\"Expires on\",[\"0\"]],\"ToQ1L5\":\"Dokument konnte nicht erneut versiegelt werden\",\"YXKrQK\":\"Empfänger konnte nicht aktualisiert werden\",\"R41XLH\":\"Webhook konnte nicht aktualisiert werden\",\"vF68cg\":\"Felder\",\"8rKUka\":[\"Die Datei darf nicht größer als \",[\"APP_DOCUMENT_UPLOAD_SIZE_LIMIT\"],\" MB sein\"],\"glx6on\":\"Haben Sie Ihr Passwort vergessen?\",\"/4TFrF\":\"Vollständiger Name\",\"Weq9zb\":\"Allgemein\",\"sr0UJD\":\"Zurück\",\"+vhBuq\":\"Zurück nach Hause\",\"1oocIX\":\"Zurück nach Hause\",\"Q46UEs\":\"Zum Eigentümer gehen\",\"71XAMD\":\"Gehen Sie zu Ihren <0>öffentlichen Profileinstellungen0>, um Dokumente hinzuzufügen.\",\"+pEbZM\":\"Hier können Sie Ihre persönlichen Daten bearbeiten.\",\"gPNXUO\":\"Hier können Sie Ihre Passwort- und Sicherheitseinstellungen verwalten.\",\"rLZFM2\":\"So funktioniert es:\",\"C3U9sx\":\"Hey, ich bin Timur\",\"vLyv1R\":\"Ausblenden\",\"/c6j67\":\"Zusätzliche Informationen ausblenden\",\"2+GP4I\":\"I am the owner of this document\",\"Jw3g7g\":\"Ich bin mir sicher! Löschen\",\"fYt7bZ\":\"Wenn sie diese Anfrage akzeptieren, wird das Team auf ihr Konto übertragen.\",\"P8EnSP\":\"Wenn Sie die angegebene Authentifizierung nicht verwenden möchten, können Sie sie schließen, wodurch die nächste verfügbare Authentifizierung angezeigt wird.\",\"usBC38\":\"Wenn Sie den Bestätigungslink nicht in Ihrem Posteingang finden, können Sie unten einen neuen anfordern.\",\"i1sBhX\":\"Wenn Ihre Authenticator-App keine QR-Codes unterstützt, können Sie stattdessen den folgenden Code verwenden:\",\"Gp4Yi6\":\"Posteingang\",\"mIZt96\":\"Posteingang Dokumente\",\"nSkB8g\":\"Information\",\"2+B7Tm\":\"Eingefügt\",\"kgiQxA\":\"Instanzstatistiken\",\"v7dfDY\":\"Ungültiger Code. Bitte versuchen Sie es erneut.\",\"bajpfj\":\"Ungültige Datei\",\"TN382O\":\"Ungültiger Link\",\"Kx9NEt\":\"Ungültiges Token\",\"lW4qkT\":\"Einladung akzeptiert!\",\"K2fB29\":\"Einladung abgelehnt\",\"zbmftZ\":\"Einladung wurde gelöscht\",\"hDYopg\":\"Einladung wurde erneut gesendet\",\"MFKlMB\":\"Einladen\",\"+djOzj\":\"Mitglied einladen\",\"ZHx/by\":\"Mitglieder einladen\",\"qSfH/A\":\"Teammitglieder einladen\",\"H97wjo\":\"Eingeladen am\",\"IuMGvq\":\"Rechnung\",\"pQgy2V\":[\"Es sieht so aus, als ob \",[\"0\"],\" noch keine Dokumente zu ihrem Profil hinzugefügt hat.\"],\"Ji9zm3\":\"Es scheint, dass das bereitgestellte Token abgelaufen ist. Wir haben Ihnen gerade ein weiteres Token gesendet, bitte überprüfen Sie Ihre E-Mails und versuchen Sie es erneut.\",\"PQ53gh\":\"Es scheint, dass kein Token bereitgestellt wurde. Wenn Sie versuchen, Ihre E-Mail zu verifizieren, folgen Sie bitte dem Link in Ihrer E-Mail.\",\"y51oRm\":\"Es scheint, dass kein Token bereitgestellt wurde. Bitte überprüfen Sie Ihre E-Mail und versuchen Sie es erneut.\",\"vXIe7J\":\"Language\",\"vfe90m\":\"Die letzten 14 Tage\",\"uq2BmQ\":\"Die letzten 30 Tage\",\"ct2SYD\":\"Die letzten 7 Tage\",\"x5DnMs\":\"Zuletzt geändert\",\"C3yOz3\":\"Zuletzt aktualisiert\",\"9aMJpW\":\"Zuletzt aktualisiert am\",\"JGvwnU\":\"Zuletzt verwendet\",\"Mv8CyJ\":\"Verlassen\",\"v/uzBS\":\"Team verlassen\",\"cInPuv\":\"Lichtmodus\",\"0uqjes\":\"Möchten Sie Ihr eigenes öffentliches Profil mit Vereinbarungen haben?\",\"jfN/GZ\":\"Vorlage verlinken\",\"T2q4gy\":[\"Anhören von \",[\"0\"]],\"qzZ/NB\":\"Ältere Aktivitäten laden\",\"Jy3ott\":\"Dokument wird geladen...\",\"KBQH86\":\"Dokument wird geladen...\",\"czE0ko\":\"Teams werden geladen...\",\"Z3FXyt\":\"Wird geladen...\",\"z0t9bb\":\"Anmelden\",\"wckWOP\":\"Verwalten\",\"HQVCTG\":[\"Verwalten Sie das Profil von \",[\"0\"]],\"Lp5ut7\":\"Verwalten Sie alle Teams, mit denen Sie derzeit verbunden sind.\",\"NwY95d\":\"Details für diese öffentliche Vorlage verwalten\",\"OcvAVs\":\"Direktlink verwalten\",\"g6RCtA\":\"Dokumente verwalten\",\"HVAyb8\":\"Passkeys verwalten\",\"3jHA5d\":\"Abonnement verwalten\",\"L9IOec\":\"Abonnement verwalten\",\"KuukYs\":\"Abonnements verwalten\",\"DHyAij\":\"Teamabonnement verwalten.\",\"lLX9Bl\":\"Teams verwalten\",\"aA0Gfq\":\"Die direkte Linkunterzeichnung für diese Vorlage verwalten\",\"Ruhuv1\":\"Die Mitglieder verwalten oder neue Mitglieder einladen.\",\"Xef1xw\":\"Benutzer verwalten\",\"T0vQFD\":\"Verwalten Sie Ihre Passkeys.\",\"4a84Cp\":\"Verwalten Sie hier Ihre Seiteneinstellungen\",\"Rbs16H\":\"Als angesehen markieren\",\"deqwtZ\":\"MAU (erstellt Dokument)\",\"YgNcJU\":\"MAU (hat Dokument abgeschlossen)\",\"Hn6rI0\":\"Mitglied seit\",\"wlQNTg\":\"Mitglieder\",\"FaskIK\":\"Empfänger ändern\",\"+8Nek/\":\"Monatlich\",\"MOyLGl\":\"Monatlich aktive Benutzer: Benutzer, die mindestens ein Dokument erstellt haben\",\"5G7Dom\":\"Monatlich aktive Benutzer: Benutzer, die mindestens eines ihrer Dokumente abgeschlossen haben\",\"QWdKwH\":\"Verschieben\",\"YeRZmm\":\"Dokument in Team verschieben\",\"QlQmgo\":\"Vorlage in Team verschieben\",\"wUBLjS\":\"In Team verschieben\",\"K8Qnlj\":\"Verschieben...\",\"en+4fS\":\"Meine Vorlagen\",\"6YtxFj\":\"Name\",\"8VD2is\":\"Müssen Dokumente signieren?\",\"qqeAJM\":\"Niemals\",\"OEcKyx\":\"Nie ablaufen\",\"QWDm5s\":\"Neuer Teamowner\",\"K6MO8e\":\"Neue Vorlage\",\"hXzOVo\":\"Nächster\",\"ZcbBVB\":\"Nächstes Feld\",\"G5YKES\":\"Keine aktiven Entwürfe\",\"PsHKvx\":\"Keine Zahlung erforderlich\",\"OBWbru\":\"Keine Vorlagen für das öffentliche Profil gefunden\",\"m0I2ba\":\"Keine aktuellen Aktivitäten\",\"IMbagb\":\"Keine Empfänger\",\"MZbQHL\":\"Keine Ergebnisse gefunden.\",\"+5xxir\":\"Kein Token bereitgestellt\",\"s9Rqzv\":\"Keine gültigen direkten Vorlagen gefunden\",\"l08XJv\":\"Keine gültigen Empfänger gefunden\",\"CSOFdu\":\"Kein Wert gefunden.\",\"tRFnIp\":\"Keine Sorge, das passiert! Geben Sie Ihre E-Mail ein, und wir senden Ihnen einen speziellen Link zum Zurücksetzen Ihres Passworts.\",\"7aaD1O\":\"Nicht unterstützt\",\"wkT5xx\":\"Nichts zu tun\",\"Oizhkg\":\"Auf dieser Seite können Sie einen neuen Webhook erstellen.\",\"aaavFi\":\"Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Siehe auch unsere <1>Dokumentation1>.\",\"ZtN+o/\":\"Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Sie können unsere Swagger-Dokumentation <1>hier1> einsehen\",\"SpqtG7\":\"Auf dieser Seite können Sie neue Webhooks erstellen und die vorhandenen verwalten.\",\"FOWyZB\":\"Auf dieser Seite können Sie den Webhook und seine Einstellungen bearbeiten.\",\"dM1W5F\":\"Sobald dies bestätigt ist, wird Folgendes geschehen:\",\"mZ2nNu\":\"Sobald Sie den QR-Code gescannt oder den Code manuell eingegeben haben, geben Sie den von Ihrer Authentifizierungs-App bereitgestellten Code unten ein.\",\"udaO9j\":\"Hoppla! Etwas ist schief gelaufen.\",\"OV5wZZ\":\"Geöffnet\",\"ZAVklK\":\"Oder\",\"zW+FpA\":\"Oder fahren Sie fort mit\",\"XUwKbC\":\"Andernfalls wird das Dokument als Entwurf erstellt.\",\"LtI9AS\":\"Besitzer\",\"v4nCHK\":\"Bezahlt\",\"FGSN4s\":\"Passkey\",\"8mPPB0\":\"Passkey existiert bereits für den bereitgestellten Authentifikator\",\"k/8RhE\":\"Die Erstellung der Passkey wurde aus einem der folgenden Gründe abgebrochen:\",\"knZBf/\":\"Die Passkey wurde entfernt\",\"1MvYF3\":\"Die Passkey wurde aktualisiert\",\"qz7mwn\":\"Passkey-Name\",\"UZKLEA\":\"Passkeys\",\"v3rPhj\":\"Passkeys ermöglichen das Anmelden und die Authentifizierung mit biometrischen Daten, Passwortmanagern usw.\",\"wsLk4g\":\"Passkeys werden von diesem Browser nicht unterstützt\",\"8ZsakT\":\"Passwort\",\"ogtYkT\":\"Passwort aktualisiert\",\"4fL/V7\":\"Bezahle\",\"oyOEbz\":\"Zahlung ist erforderlich, um die Erstellung Ihres Teams abzuschließen.\",\"GptxX/\":\"Zahlung überfällig\",\"UbRKMZ\":\"Ausstehend\",\"Y99ivo\":\"Ausstehende Dokumente\",\"VZJggs\":\"Ausstehende Dokumente\",\"dSe12f\":\"Ausstehende Einladungen\",\"pobYPH\":\"Ausstehendes Team gelöscht.\",\"7MuXko\":\"Persönlich\",\"moWIBX\":\"Persönliches Konto\",\"bhE66T\":\"Wählen Sie ein Passwort\",\"nSCWvF\":\"Wählen Sie eine der folgenden Vereinbarungen aus und beginnen Sie das Signieren, um loszulegen\",\"LFWYFV\":\"Bitte prüfen Sie die CSV-Datei und stellen Sie sicher, dass sie unserem Format entspricht\",\"GUOCNi\":\"Bitte wählen Sie Ihr neues Passwort\",\"JcgKEA\":\"Bitte kontaktieren Sie den Support, wenn Sie diese Aktion rückgängig machen möchten.\",\"pzDdmv\":\"Bitte geben Sie einen aussagekräftigen Namen für Ihr Token ein. Dies wird Ihnen helfen, es später zu identifizieren.\",\"GqaSjy\":\"Bitte als angesehen markieren, um abzuschließen\",\"jG5btV\":\"Bitte beachten Sie, dass das Fortfahren den direkten Linkempfänger entfernt und ihn in einen Platzhalter umwandelt.\",\"Op5XjA\":\"Bitte beachten Sie, dass diese Aktion <0>irreversibel0> ist.\",\"pIF/uD\":\"Bitte beachten Sie, dass diese Aktion <0>irreversibel0> ist. Nachdem dies bestätigt wurde, wird dieses Dokument dauerhaft gelöscht.\",\"aYytci\":\"Bitte beachten Sie, dass diese Aktion irreversibel ist. Sobald sie bestätigt wird, wird Ihre Vorlage dauerhaft gelöscht.\",\"LIf5dA\":\"Bitte beachten Sie, dass diese Aktion irreversibel ist. Sobald sie bestätigt wird, wird Ihr Token dauerhaft gelöscht.\",\"bGHA6C\":\"Bitte beachten Sie, dass Sie den Zugriff auf alle Dokumente, die mit diesem Team verbunden sind, verlieren werden und alle Mitglieder entfernt und benachrichtigt werden.\",\"K2Zlri\":\"Bitte beachten Sie, dass Sie den Zugriff auf alle mit diesem Team verbundenen Dokumente verlieren werden und alle Mitglieder entfernt und benachrichtigt werden.\",\"VJEW4M\":\"Bitte geben Sie ein Token von der Authentifizierungs-App oder einen Backup-Code an. Wenn Sie keinen Backup-Code haben, kontaktieren Sie bitte den Support.\",\"Lwg9X/\":\"Bitte geben Sie ein Token von Ihrem Authentifizierer oder einen Backup-Code an.\",\"tVQlia\":\"Bitte versuchen Sie es erneut und stellen Sie sicher, dass Sie die korrekte E-Mail-Adresse eingeben.\",\"fWCcRl\":\"Bitte versuchen Sie es später erneut oder melden Sie sich mit Ihren normalen Daten an\",\"PZCqeW\":\"Bitte versuchen Sie es später noch einmal.\",\"2oj8HJ\":[\"Bitte geben Sie <0>\",[\"0\"],\"0> ein, um zu bestätigen.\"],\"Q6hhn8\":\"Einstellungen\",\"ghVdS5\":\"Vorschau und Vorlagen konfigurieren.\",\"zwBp5t\":\"Privat\",\"aWLa3z\":\"Private Vorlagen können nur von Ihnen bearbeitet und angezeigt werden.\",\"vERlcd\":\"Profil\",\"H8Zk+q\":\"Profil ist derzeit <0>versteckt0>.\",\"6zFVy3\":\"Profil ist derzeit <0>sichtbar0>.\",\"srPuxS\":\"Profil aktualisiert\",\"7d1a0d\":\"Öffentlich\",\"PsWyzr\":\"Öffentliches Profil\",\"GCm4vn\":\"Öffentlicher Profil-URL\",\"9imnUr\":\"Öffentlicher Profil-Benutzername\",\"2/o+9Z\":\"Öffentliche Vorlagen sind mit Ihrem öffentlichen Profil verbunden. Änderungen an öffentlichen Vorlagen erscheinen auch in Ihrem öffentlichen Profil.\",\"Zs+87t\":\"Nur-Lese-Feld\",\"ckH3fT\":\"Bereit\",\"2DmUfb\":\"Eine erneute Authentifizierung ist erforderlich, um dieses Feld zu unterschreiben\",\"M1HGuR\":\"Aktuelle Aktivitäten\",\"I3QpvQ\":\"Empfänger\",\"evCX7h\":\"Empfänger aktualisiert\",\"yPrbsy\":\"Empfänger\",\"FDT13r\":\"Empfängermetriken\",\"cEfPAe\":\"Empfänger behalten weiterhin ihre Kopie des Dokuments\",\"p8zadb\":\"Wiederherstellungscode kopiert\",\"x5rgeJ\":\"Wiederherstellungscodes\",\"ZCl9NH\":\"Registrierung erfolgreich\",\"cD+FhI\":\"Haben Sie Ihr Passwort vergessen? <0>Einloggen0>\",\"t/YqKh\":\"Entfernen\",\"41G745\":\"Team-E-Mail entfernen\",\"8xN0jg\":\"Teammitglied entfernen\",\"JjG/b1\":\"Passwort wiederholen\",\"Ibjxfr\":\"Übertragung anfordern\",\"sDXefy\":\"Dokument wieder versiegeln\",\"MyjAbr\":\"Erneut senden\",\"bxoWpz\":\"Bestätigungs-E-Mail erneut senden\",\"HT2UjS\":\"Bestätigung erneut senden\",\"OfhWJH\":\"Zurücksetzen\",\"wJZvNq\":\"Zurücksetzungs-E-Mail gesendet\",\"KbS2K9\":\"Passwort zurücksetzen\",\"NI0xtv\":\"Passwort wird zurückgesetzt...\",\"2FoHU3\":\"Zahlung klären\",\"bH0aV9\":\"Zahlung klären\",\"6gRgw8\":\"Wiederholen\",\"vUOn9d\":\"Zurück\",\"dRDE6t\":\"Zurück zum Dashboard\",\"OYOJop\":\"Zurück zur Startseite\",\"Wkb64i\":\"Zurück zur Anmeldung\",\"GXsAby\":\"Zugriff widerrufen\",\"cg+Poy\":\"Zugriff widerrufen\",\"GDvlUT\":\"Rolle\",\"5dJK4M\":\"Rollen\",\"tfDRzk\":\"Speichern\",\"A1taO8\":\"Suchen\",\"pUjzwQ\":\"Nach Dokumenttitel suchen\",\"Bw5X+M\":\"Nach Name oder E-Mail suchen\",\"8VEDbV\":\"Geheim\",\"a3LDKx\":\"Sicherheit\",\"HUVI3V\":\"Sicherheitsaktivität\",\"rG3WVm\":\"Auswählen\",\"9GwDu7\":\"Wählen Sie ein Team aus\",\"vWi2vu\":\"Wählen Sie ein Team aus, um dieses Dokument dorthin zu verschieben. Diese Aktion kann nicht rückgängig gemacht werden.\",\"JxCKQ1\":\"Wählen Sie ein Team aus, um diese Vorlage dorthin zu verschieben. Diese Aktion kann nicht rückgängig gemacht werden.\",\"hyn0QC\":\"Wählen Sie eine Vorlage aus, die Sie in Ihrem öffentlichen Profil anzeigen möchten\",\"9VGtlg\":\"Wählen Sie eine Vorlage aus, die Sie im öffentlichen Profil Ihres Teams anzeigen möchten\",\"gBqxYg\":\"Passkey auswählen\",\"471O/e\":\"Bestätigungs-E-Mail senden\",\"HbN1UH\":\"Dokument senden\",\"qaDvSa\":\"Erinnerung senden\",\"HW5fQk\":\"Absender\",\"DgPgBb\":\"Zurücksetzungs-E-Mail wird gesendet...\",\"IoAuJG\":\"Senden...\",\"h69WC6\":\"Gesendet\",\"bWhxXv\":\"Ein Passwort festlegen\",\"Tz0i8g\":\"Einstellungen\",\"RDjuBN\":\"Einrichten\",\"Z8lGw6\":\"Teilen\",\"lCEhm/\":\"Signaturkarte teilen\",\"8vETh9\":\"Anzeigen\",\"FSjwRy\":\"Zusätzliche Informationen anzeigen\",\"7Ifo0h\":\"Vorlagen in Ihrem öffentlichen Profil anzeigen, damit Ihre Zielgruppe unterschreiben und schnell loslegen kann\",\"lDZq9u\":\"Vorlagen in Ihrem Team-Öffentliches Profil anzeigen, damit Ihre Zielgruppe unterschreiben und schnell loslegen kann\",\"c+Fnce\":\"Unterschreiben\",\"oKBjbc\":[\"Unterzeichnen als \",[\"0\"],\" <0>(\",[\"1\"],\")0>\"],\"M7Y6vg\":[\"Sign as <0>\",[\"0\"],\" <1>(\",[\"1\"],\")1>0>\"],\"D0JgR3\":[\"Unterzeichnen als<0>\",[\"0\"],\" <1>(\",[\"1\"],\")1>0>\"],\"/8S7J+\":\"Dokument unterschreiben\",\"ceklqr\":\"Unterzeichnen-Feld\",\"vRw782\":\"Hier unterzeichnen\",\"n1ekoW\":\"Einloggen\",\"NxCJcc\":\"Melden Sie sich bei Ihrem Konto an\",\"bHYIks\":\"Ausloggen\",\"Mqwtkp\":\"Unterschreiben Sie das Dokument, um den Vorgang abzuschließen.\",\"e+RpCP\":\"Registrieren\",\"mErq7F\":\"Registrieren\",\"8fC9B9\":\"Registrieren mit Google\",\"l/tATK\":\"Registrieren mit OIDC\",\"n+8yVN\":\"Unterschrift\",\"6AjNkO\":\"Gesammelte Unterschriften\",\"cquXHe\":\"Unterschriften erscheinen, sobald das Dokument abgeschlossen ist\",\"PoH7eg\":\"Unterzeichnet\",\"XOxZT4\":\"Anmeldung...\",\"P1wwqN\":\"Registrierung...\",\"ltYQCa\":[\"Seit \",[\"0\"]],\"67H0kT\":\"Website Banner\",\"aaU5Fl\":\"Website Einstellungen\",\"nwtY4N\":\"Etwas ist schief gelaufen\",\"xYdwPA\":[\"Etwas ist schiefgelaufen beim Versuch, das Eigentum des Teams <0>\",[\"0\"],\"0> auf Ihre zu übertragen. Bitte versuchen Sie es später erneut oder kontaktieren Sie den Support.\"],\"/OggdM\":[\"Etwas ist schiefgelaufen beim Versuch, Ihre E-Mail-Adresse für <0>\",[\"0\"],\"0> zu bestätigen. Bitte versuchen Sie es später erneut.\"],\"oZO7Po\":\"Etwas ist schiefgelaufen beim Laden Ihrer Passkeys.\",\"qDc2pC\":\"Etwas ist schiefgelaufen beim Senden der Bestätigungs-E-Mail.\",\"2U+48H\":\"Etwas ist schiefgelaufen beim Aktualisieren des Abonnements für die Team-Zahlung. Bitte kontaktieren Sie den Support.\",\"db0Ycb\":\"Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support.\",\"q16m4+\":\"Entschuldigung, wir konnten die Prüfprotokolle nicht herunterladen. Bitte versuchen Sie es später erneut.\",\"EUyscw\":\"Entschuldigung, wir konnten das Zertifikat nicht herunterladen. Bitte versuchen Sie es später erneut.\",\"29Hx9U\":\"Statistiken\",\"uAQUqI\":\"Status\",\"EDl9kS\":\"Abonnieren\",\"WVzGc2\":\"Abonnement\",\"P6F38F\":\"Abonnements\",\"zzDlyQ\":\"Erfolg\",\"f8RSgi\":\"Passkey erfolgreich erstellt\",\"3WgMId\":\"Systemthema\",\"KM6m8p\":\"Team\",\"ZTKtIH\":\"Teameinkaufs-Prüfung\",\"WUM2yD\":\"Team E-Mail\",\"rkqgH1\":\"Team-E-Mail\",\"2FRR+Z\":\"Team-E-Mail bereits verifiziert!\",\"5GbQa1\":\"Team-E-Mail wurde entfernt\",\"rW28ga\":\"Team-E-Mail-Verifizierung\",\"/9ZeEl\":\"Team-E-Mail verifiziert!\",\"Ww6njg\":\"Team-E-Mail wurde aktualisiert.\",\"h3p3UT\":\"Teameinladung\",\"am190B\":\"Teameinladungen wurden gesendet.\",\"IJFhQ+\":\"Teammitglied\",\"EEjL2F\":\"Teamname\",\"alTHVO\":\"Nur Team\",\"cvMRdF\":\"Nur Teamvorlagen sind nirgendwo verlinkt und nur für Ihr Team sichtbar.\",\"sSUQSW\":\"Team-Eigentumsübertragung\",\"NnCr+1\":\"Team-Eigentumsübertragung bereits abgeschlossen!\",\"GzR8VI\":\"Team-Eigentum übertragen!\",\"qzHZC+\":\"Öffentliches Profil des Teams\",\"wkzD+0\":\"Teameinstellungen\",\"oMfDc9\":\"Team-Einstellungen\",\"NONu1b\":\"Teamvorlagen\",\"Feqf5k\":\"Teamübertragung im Gange\",\"oXkHk2\":\"Der Antrag auf Teamübertragung ist abgelaufen\",\"IwrHI3\":\"Team-URL\",\"CAL6E9\":\"Teams\",\"qKgabb\":\"Teams restricted\",\"/K2CvV\":\"Template\",\"ZTgE3k\":\"Template deleted\",\"7ZORe4\":\"Template document uploaded\",\"Vmoj8n\":\"Template duplicated\",\"3MMlXX\":\"Template has been removed from your public profile.\",\"eupjqf\":\"Template has been updated.\",\"I1vdWI\":\"Template moved\",\"GamjcN\":\"Template saved\",\"iTylMl\":\"Templates\",\"mKknmt\":\"Templates allow you to quickly generate documents with pre-filled recipients and fields.\",\"HmA4Lf\":\"Text Color\",\"jB6Wb0\":\"The account has been deleted successfully.\",\"YPAOfJ\":\"The content to show in the banner, HTML is allowed\",\"+lDHlp\":\"The direct link has been copied to your clipboard\",\"HdogiK\":\"The document has been successfully moved to the selected team.\",\"8TDHmX\":\"Das Dokument ist jetzt abgeschlossen. Bitte folgen Sie allen Anweisungen, die in der übergeordneten Anwendung bereitgestellt werden.\",\"JaqmMD\":\"The document was created but could not be sent to recipients.\",\"D6V5NE\":\"The document will be hidden from your account\",\"kn3D/u\":\"The document will be immediately sent to recipients if this is checked.\",\"S20Dp9\":\"The events that will trigger a webhook to be sent to your URL.\",\"3BvEti\":[\"The ownership of team <0>\",[\"0\"],\"0> has been successfully transferred to you.\"],\"jiv3IP\":\"The page you are looking for was moved, removed, renamed or might never have existed.\",\"v7aFZT\":\"The profile link has been copied to your clipboard\",\"L9/hN3\":\"The profile you are looking for could not be found.\",\"M2Tl+5\":\"The public description that will be displayed with this template\",\"Bar5Ss\":\"The public name for your template\",\"RL/wwM\":\"The recipient has been updated successfully\",\"aHhSPO\":\"The selected team member will receive an email which they must accept before the team is transferred\",\"so3oXj\":\"The signing link has been copied to your clipboard.\",\"kXciaM\":\"The site banner is a message that is shown at the top of the site. It can be used to display important information to your users.\",\"XaNqYt\":\"The team transfer invitation has been successfully deleted.\",\"DyE711\":[\"The team transfer request to <0>\",[\"0\"],\"0> has expired.\"],\"RLyuG2\":\"The team you are looking for may have been removed, renamed or may have never existed.\",\"wIrx7T\":\"The template has been successfully moved to the selected team.\",\"J+X6HZ\":\"The template will be removed from your profile\",\"9VV//K\":\"The template you are looking for may have been disabled, deleted or may have never existed.\",\"tkv54w\":\"The token was copied to your clipboard.\",\"5cysp1\":\"The token was deleted successfully.\",\"oddVEW\":\"The token you have used to reset your password is either expired or it never existed. If you have still forgotten your password, please request a new reset link.\",\"Orj1pl\":\"The URL for Documenso to send webhook events to.\",\"V92DHZ\":\"The webhook has been successfully deleted.\",\"mlHeCX\":\"The webhook has been updated successfully.\",\"V+5KQa\":\"The webhook was successfully created.\",\"k/INkj\":\"There are no active drafts at the current moment. You can upload a document to start drafting.\",\"ySoKla\":\"There are no completed documents yet. Documents that you have created or received will appear here once completed.\",\"9aYXQv\":\"They have permission on your behalf to:\",\"3ap2Vv\":\"This action is not reversible. Please be certain.\",\"6S2SIc\":\"This document could not be deleted at this time. Please try again.\",\"9q30Lx\":\"This document could not be duplicated at this time. Please try again.\",\"u/cYe5\":\"This document could not be re-sent at this time. Please try again.\",\"240BLI\":\"This document has been cancelled by the owner and is no longer available for others to sign.\",\"UdLWn3\":\"This document has been cancelled by the owner.\",\"K8RH4n\":\"This document has been signed by all recipients\",\"1M0Ssi\":\"This document is currently a draft and has not been sent\",\"LLfa/G\":\"This email is already being used by another team.\",\"YrKIxa\":\"This link is invalid or has expired. Please contact your team to resend a transfer request.\",\"iN8uoK\":\"This link is invalid or has expired. Please contact your team to resend a verification.\",\"b7CscR\":\"This passkey has already been registered.\",\"JMu+vE\":\"This passkey is not configured for this application. Please login and add one in the user settings.\",\"0ES9GX\":\"This price includes minimum 5 seats.\",\"0rusOU\":\"This session has expired. Please try again.\",\"ApCva8\":\"This team, and any associated data excluding billing invoices will be permanently deleted.\",\"1ABR2W\":\"This template could not be deleted at this time. Please try again.\",\"PJUOEm\":\"This token is invalid or has expired. No action is needed.\",\"4WY92K\":\"This token is invalid or has expired. Please contact your team for a new invitation.\",\"6HNLKb\":\"This URL is already in use.\",\"/yOKAT\":\"This username has already been taken\",\"ea/Ia+\":\"This username is already taken\",\"LhMjLm\":\"Time\",\"Mz2JN2\":\"Time zone\",\"MHrjPM\":\"Titel\",\"TF1e2Y\":\"To accept this invitation you must create an account.\",\"9e4NKS\":\"To change the email you must remove and add a new email address.\",\"E3QGBV\":[\"To confirm, please enter the accounts email address <0/>(\",[\"0\"],\").\"],\"/ngXqQ\":\"To confirm, please enter the reason\",\"Z/LRzj\":\"To decline this invitation you must create an account.\",\"QyrRrh\":\"To enable two-factor authentication, scan the following QR code using your authenticator app.\",\"mX0XNr\":\"To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox.\",\"THQgMC\":[\"To mark this document as viewed, you need to be logged in as <0>\",[\"0\"],\"0>\"],\"jlBOs+\":\"Um dieses Dokument anzuzeigen, müssen Sie in Ihr Konto eingeloggt sein. Bitte melden Sie sich an, um fortzufahren.\",\"Tkvndv\":\"Toggle the switch to hide your profile from the public.\",\"X3Df6T\":\"Toggle the switch to show your profile to the public.\",\"TP9/K5\":\"Token\",\"SWyfbd\":\"Token copied to clipboard\",\"OBjhQ4\":\"Token created\",\"B5MBOV\":\"Token deleted\",\"nwwDj8\":\"Token doesn't have an expiration date\",\"v/TQsS\":\"Token expiration date\",\"SKZhW9\":\"Token name\",\"/mWwgA\":\"Total Documents\",\"dKGGPw\":\"Total Recipients\",\"WLfBMX\":\"Total Signers that Signed Up\",\"vb0Q0/\":\"Total Users\",\"PsdN6O\":\"Transfer ownership of this team to a selected team member.\",\"OOrbmP\":\"Transfer team\",\"TAB7/M\":\"Transfer the ownership of the team to another team member.\",\"34nxyb\":\"Triggers\",\"0s6zAM\":\"Two factor authentication\",\"rkM+2p\":\"Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app.\",\"C4pKXW\":\"Two-Factor Authentication\",\"NwChk2\":\"Two-factor authentication disabled\",\"qwpE/S\":\"Two-factor authentication enabled\",\"Rirbh5\":\"Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in.\",\"+zy2Nq\":\"Type\",\"fn5guJ\":\"Type 'delete' to confirm\",\"aLB9e4\":\"Type a command or search...\",\"NKs0zG\":\"Uh oh! Looks like you're missing a token\",\"yn1Wi2\":\"Unable to change the language at this time. Please try again later.\",\"syy3Gt\":\"Unable to copy recovery code\",\"CRCTCg\":\"Unable to copy token\",\"IFfB53\":\"Unable to create direct template access. Please try again later.\",\"gVlUC8\":\"Unable to decline this team invitation at this time.\",\"Y+wsI7\":\"Unable to delete invitation. Please try again.\",\"UCeveL\":\"Unable to delete team\",\"wp9XuY\":\"Unable to disable two-factor authentication\",\"kIV9PR\":\"Unable to join this team at this time.\",\"KFBm7R\":\"Unable to load document history\",\"NodEs1\":\"Unable to load your public profile templates at this time\",\"vklymD\":\"Unable to remove email verification at this time. Please try again.\",\"w8n1+z\":\"Unable to remove team email at this time. Please try again.\",\"akFhsV\":\"Unable to resend invitation. Please try again.\",\"JQLFI3\":\"Unable to resend verification at this time. Please try again.\",\"jLtRR6\":\"Unable to reset password\",\"QtkcKO\":\"Unable to setup two-factor authentication\",\"N1m2oU\":\"Unable to sign in\",\"dA/8If\":\"Unauthorized\",\"9zMI6W\":\"Uncompleted\",\"29VNqC\":\"Unknown error\",\"7yiFvZ\":\"Unpaid\",\"EkH9pt\":\"Aktualisieren\",\"CVGIOg\":\"Update Banner\",\"MSfA8z\":\"Update passkey\",\"Q3MPWA\":\"Update password\",\"vXPSuB\":\"Update profile\",\"ih1ndv\":\"Update Recipient\",\"5bRMKt\":\"Update role\",\"qg6EfE\":\"Update team\",\"V8JgFA\":\"Team-E-Mail aktualisieren\",\"DDP/NH\":\"Teammitglied aktualisieren\",\"KAyssy\":\"Benutzer aktualisieren\",\"iFdgvQ\":\"Webhook aktualisieren\",\"2uDkRs\":\"Passwort wird aktualisiert...\",\"6JH8iK\":\"Profil wird aktualisiert...\",\"jUV7CU\":\"Avatar hochladen\",\"2npSeV\":\"Hochgeladen von\",\"bM+XCB\":\"Die hochgeladene Datei ist zu groß\",\"fXh9EJ\":\"Die hochgeladene Datei ist zu klein\",\"mnNw0z\":\"Die hochgeladene Datei ist kein zulässiger Dateityp\",\"5UWfU/\":\"Authenticator verwenden\",\"VLViRK\":\"Backup-Code verwenden\",\"NUXH2v\":\"Vorlage verwenden\",\"7PzzBU\":\"Benutzer\",\"GjhOGB\":\"Benutzer-ID\",\"DgDMhU\":\"Benutzerprofile sind hier!\",\"lcDO4m\":\"Benutzereinstellungen\",\"Sxm8rQ\":\"Benutzer\",\"wMHvYH\":\"Wert\",\"BGWaEQ\":\"Bestätigungs-E-Mail gesendet\",\"XZQ6rx\":\"Bestätigungs-E-Mail erfolgreich gesendet.\",\"ZqWgxB\":\"Jetzt überprüfen\",\"kuvvht\":\"Überprüfen Sie Ihre E-Mail-Adresse\",\"c9ZsJU\":\"Überprüfen Sie Ihre E-Mail-Adresse, um alle Funktionen freizuschalten.\",\"OUPY2G\":\"Überprüfen Sie Ihre E-Mail, um Dokumente hochzuladen.\",\"jpctdh\":\"View\",\"c3aao/\":\"Aktivität ansehen\",\"pTCu0c\":\"Alle Dokumente anzeigen, die an Ihr Konto gesendet wurden\",\"F8qz8t\":\"Sehen Sie sich alle aktuellen Sicherheitsaktivitäten in Ihrem Konto an.\",\"t3iQF8\":\"Sehen Sie sich alle Sicherheitsaktivitäten in Ihrem Konto an.\",\"t5bHu+\":\"Codes ansehen\",\"Opb2rO\":\"Dokumente ansehen, die mit dieser E-Mail verknüpft sind\",\"FbRyw+\":\"Einladungen ansehen\",\"kGkM7n\":\"Originaldokument ansehen\",\"z0hW8A\":\"Wiederherstellungscodes ansehen\",\"+SRqZk\":\"Teams ansehen\",\"vXtpAZ\":\"Viewed\",\"uUehLT\":\"Warten\",\"p5sNpe\":\"Warten auf andere, um zu unterschreiben\",\"CLj7L4\":\"Möchten Sie auffällige Signatur-Links wie diesen senden? <0>Überprüfen Sie Documenso.0>\",\"AVOxgl\":\"Möchten Sie Ihr eigenes öffentliches Profil haben?\",\"bJajhk\":\"Wir können zurzeit nicht auf das Abrechnungsportal zugreifen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\",\"mrAou1\":\"Wir können diesen Schlüssel im Moment nicht entfernen. Bitte versuchen Sie es später erneut.\",\"PVmZRU\":\"Wir können diesen Schlüssel im Moment nicht aktualisieren. Bitte versuchen Sie es später erneut.\",\"4CEdkv\":\"Wir sind auf einen Fehler gestoßen, während wir den direkten Vorlagenlink entfernt haben. Bitte versuchen Sie es später erneut.\",\"9dCMy6\":\"Wir sind auf einen Fehler gestoßen, während wir den Webhook aktualisieren wollten. Bitte versuchen Sie es später erneut.\",\"/666TS\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, das neue Token zu erstellen. Bitte versuchen Sie es später erneut.\",\"ghtOmL\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diese E-Mail hinzuzufügen. Bitte versuchen Sie es später erneut.\",\"Z3g6da\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, ein Team zu erstellen. Bitte versuchen Sie es später erneut.\",\"5jf+Ky\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, es zu löschen. Bitte versuchen Sie es später erneut.\",\"BYsCZ0\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, das ausstehende Team zu löschen. Bitte versuchen Sie es später erneut.\",\"X1sSV9\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Team zu löschen. Bitte versuchen Sie es später erneut.\",\"kQiucd\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Token zu löschen. Bitte versuchen Sie es später erneut.\",\"QbeZrm\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Konto zu löschen. Bitte versuchen Sie es später erneut.\",\"RFJXMf\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Teammitglieder einzuladen. Bitte versuchen Sie es später erneut.\",\"NOJmg5\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Team zu verlassen. Bitte versuchen Sie es später erneut.\",\"p1cQqG\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diese Vorlage aus Ihrem Profil zu entfernen. Bitte versuchen Sie es später erneut.\",\"dWt6qq\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diese Übertragung zu entfernen. Bitte versuchen Sie es später oder kontaktieren Sie den Support.\",\"Bf8/oy\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diesen Benutzer zu entfernen. Bitte versuchen Sie es später erneut.\",\"+dHRXe\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, eine Übertragung dieses Teams anzufordern. Bitte versuchen Sie es später erneut.\",\"zKkKFY\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Passwort zurückzusetzen. Bitte versuchen Sie es später erneut.\",\"jMJahr\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, den Zugriff zu widerrufen. Bitte versuchen Sie es später oder kontaktieren Sie den Support.\",\"v7NHq3\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihre Daten zu speichern. Bitte versuchen Sie es später erneut.\",\"H2R2SX\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Sie anzumelden. Bitte versuchen Sie es später erneut.\",\"lFQvqg\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Sie anzumelden. Bitte versuchen Sie es später erneut.\",\"tIdO3I\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Sie anzumelden. Bitte versuchen Sie es später erneut.\",\"s7WVvm\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, das Avatar zu aktualisieren. Bitte versuchen Sie es später erneut.\",\"t2qome\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, das Banner zu aktualisieren. Bitte versuchen Sie es später erneut.\",\"KRW9aV\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, die Vorlage zu aktualisieren. Bitte versuchen Sie es später erneut.\",\"jSzwNQ\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Teammitglied zu aktualisieren. Bitte versuchen Sie es später erneut.\",\"ZAGznT\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Passwort zu aktualisieren. Bitte versuchen Sie es später erneut.\",\"/YgkWz\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr öffentliches Profil zu aktualisieren. Bitte versuchen Sie es später erneut.\",\"PgR2KT\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Team zu aktualisieren. Bitte versuchen Sie es später erneut.\",\"Fkk/tM\":\"Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, die Team-E-Mail zu aktualisieren. Bitte versuchen Sie es später erneut.\",\"XdaMt1\":\"Wir haben eine Bestätigungs-E-Mail zur Überprüfung gesendet.\",\"Z/3o7q\":\"Wir konnten das Token nicht in Ihre Zwischenablage kopieren. Bitte versuchen Sie es erneut.\",\"/f76sW\":\"Wir konnten Ihren Wiederherstellungscode nicht in Ihre Zwischenablage kopieren. Bitte versuchen Sie es erneut.\",\"5Elc4g\":\"Wir konnten keine Checkout-Sitzung erstellen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support\",\"bw0W5A\":\"Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht deaktivieren. Bitte stellen Sie sicher, dass Sie Ihr Passwort und den Backup-Code korrekt eingegeben haben und versuchen Sie es erneut.\",\"Ckd2da\":\"Wir konnten Sie zurzeit nicht abmelden.\",\"PGrghQ\":\"Wir konnten Ihr öffentliches Profil nicht auf öffentlich setzen. Bitte versuchen Sie es erneut.\",\"I8Rr9j\":\"Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht einrichten. Bitte stellen Sie sicher, dass Sie den Code korrekt eingegeben haben und versuchen Sie es erneut.\",\"/Ez2eA\":\"Wir konnten dieses Dokument zurzeit nicht einreichen. Bitte versuchen Sie es später erneut.\",\"zfClNd\":\"Wir konnten Ihre Angaben nicht verifizieren. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support\",\"791g1I\":\"Wir konnten Ihre E-Mail nicht bestätigen. Wenn Ihre E-Mail noch nicht bestätigt wurde, versuchen Sie es bitte erneut.\",\"xxInDV\":\"Wir sind alle leer\",\"lgW1qG\":[\"Wir haben eine Bestätigungs-E-Mail an <0>\",[\"email\"],\"0> gesendet. Bitte überprüfen Sie Ihren Posteingang und klicken Sie auf den Link in der E-Mail, um Ihr Konto zu bestätigen.\"],\"an6ayw\":\"Webhook erstellt\",\"LnaC5y\":\"Webhook gelöscht\",\"kxZ7LS\":\"Webhook aktualisiert\",\"nuh/Wq\":\"Webhook-URL\",\"v1kQyJ\":\"Webhooks\",\"4XSc4l\":\"Wöchentlich\",\"nx8adn\":\"Willkommen zurück, wir freuen uns, Sie zu haben.\",\"v+iPzY\":\"Wenn Sie auf Fortfahren klicken, werden Sie aufgefordert, den ersten verfügbaren Authenticator auf Ihrem System hinzuzufügen.\",\"ks103z\":\"Während Sie darauf warten, können Sie Ihr eigenes Documenso-Konto erstellen und sofort mit der Dokumentenunterzeichnung beginnen.\",\"gW6iyU\":\"Wen möchten Sie erinnern?\",\"WCtNlH\":\"Schreiben Sie über das Team\",\"RB+i+e\":\"Schreiben Sie über sich selbst\",\"zkWmBh\":\"Jährlich\",\"kWJmRL\":\"Sie\",\"H0+WHg\":[\"Sie stehen kurz davor, die Genehmigung für \\\"\",[\"truncatedTitle\"],\"\\\" abzuschließen.<0/> Sind Sie sicher?\"],\"kzE21T\":[\"Sie stehen kurz davor, \\\"\",[\"truncatedTitle\"],\"\\\" zu unterzeichnen.<0/> Sind Sie sicher?\"],\"9AVWSg\":[\"Sie stehen kurz davor, \\\"\",[\"truncatedTitle\"],\"\\\" anzusehen.<0/> Sind Sie sicher?\"],\"wPAx3W\":[\"Sie sind dabei, <0>\\\"\",[\"documentTitle\"],\"\\\"0> zu löschen\"],\"bnSqz9\":[\"Sie stehen kurz davor, die folgende Team-E-Mail von <0>\",[\"teamName\"],\"0> zu löschen.\"],\"5K1f43\":[\"Sie sind dabei, <0>\\\"\",[\"documentTitle\"],\"\\\"0> zu verstecken\"],\"Z7Zba7\":\"Sie stehen kurz davor, das folgende Team zu verlassen.\",\"w4DsUu\":[\"Sie stehen kurz davor, den folgenden Benutzer aus <0>\",[\"teamName\"],\"0> zu entfernen.\"],\"3TbP+M\":[\"Sie stehen kurz davor, den Zugriff für das Team <0>\",[\"0\"],\"0> (\",[\"1\"],\") zu widerrufen.\"],\"km5WYz\":\"Sie befinden sich derzeit im <0>kostenlosen Plan0>.\",\"lS8/qb\":[\"You are currently subscribed to <0>\",[\"0\"],\"0>\"],\"vELAGq\":[\"Sie aktualisieren derzeit <0>\",[\"teamMemberName\"],\".0>\"],\"9Vb1lk\":[\"Sie aktualisieren derzeit den <0>\",[\"passkeyName\"],\"0> Passkey.\"],\"fE9efX\":\"Sie sind nicht berechtigt, diese Seite anzuzeigen.\",\"xGF8ow\":\"Sie können wählen, ob Sie Ihr Profil für die öffentliche Ansicht aktivieren oder deaktivieren möchten.\",\"knayUe\":\"Sie können wählen, ob Sie Ihr Teamprofil für die öffentliche Ansicht aktivieren oder deaktivieren möchten.\",\"6RWhw7\":\"Sie können Ihr Profil später über die Profileinstellungen beanspruchen!\",\"wvsTRr\":\"Sie können die Profil-URL aktualisieren, indem Sie die Team-URL auf der Seite mit den allgemeinen Einstellungen aktualisieren.\",\"MfJtjp\":\"Sie können Dokumente ansehen, die mit dieser E-Mail verknüpft sind, und diese Identität beim Senden von Dokumenten verwenden.\",\"q1+l2h\":[\"Sie dürfen nicht mehr als \",[\"MAXIMUM_PASSKEYS\"],\" Passkeys haben.\"],\"Nv8I50\":\"Sie können ein Teammitglied, das eine höhere Rolle als Sie hat, nicht ändern.\",\"tBM5rt\":\"Sie können keine verschlüsselten PDFs hochladen\",\"uPZVOC\":\"You currently have an active plan\",\"vGmUyC\":\"Sie haben derzeit keinen Kundenrecord, das sollte nicht passieren. Bitte kontaktieren Sie den Support um Hilfe.\",\"COkiAI\":[\"Sie haben eine Einladung von <0>\",[\"0\"],\"0> angenommen, um ihrem Team beizutreten.\"],\"XJ/LXV\":[\"Sie haben die Eigentumsübertragung für <0>\",[\"0\"],\"0> bereits abgeschlossen.\"],\"udOfln\":[\"Sie haben Ihre E-Mail-Adresse für <0>\",[\"0\"],\"0> bereits bestätigt.\"],\"rawUsl\":[\"Sie wurden von <0>\",[\"0\"],\"0> eingeladen, ihrem Team beizutreten.\"],\"C5iBwQ\":[\"Sie haben die Einladung von <0>\",[\"0\"],\"0> abgelehnt, ihrem Team beizutreten.\"],\"9vc55I\":\"Sie haben noch keine Webhooks. Ihre Webhooks werden hier angezeigt, sobald Sie sie erstellt haben.\",\"MWXNow\":\"Sie haben noch keine Vorlagen erstellt. Bitte laden Sie eine Datei hoch, um eine Vorlage zu erstellen.\",\"qJTcfP\":\"Sie haben noch keine Dokumente erstellt oder erhalten. Bitte laden Sie ein Dokument hoch, um eines zu erstellen.\",\"yvV4GX\":[\"Sie haben das maximale Limit von \",[\"0\"],\" direkten Vorlagen erreicht. <0>Upgrade your account to continue!0>\"],\"m5RA9C\":\"Sie haben Ihr Dokumentenlimit erreicht.\",\"K/3HUN\":\"Sie haben Ihr Dokumentenlimit erreicht. <0>Upgrade your account to continue!0>\",\"dURxlX\":\"Sie haben dieses Team erfolgreich verlassen.\",\"vi6pfe\":\"Sie haben sich erfolgreich registriert. Bitte bestätigen Sie Ihr Konto, indem Sie auf den Link klicken, den Sie per E-Mail erhalten haben.\",\"B5Ovxs\":\"Sie haben diesen Benutzer erfolgreich aus dem Team entfernt.\",\"PIl3Hg\":\"Sie haben den Zugriff erfolgreich widerrufen.\",\"Z1UZXO\":[\"Sie haben \",[\"teamMemberName\"],\" aktualisiert.\"],\"tD6Cj2\":[\"Sie haben Ihre E-Mail-Adresse für <0>\",[\"0\"],\"0> bestätigt.\"],\"pNlz0U\":\"Sie müssen Administrator dieses Teams sein, um die Abrechnung zu verwalten.\",\"xIaz3h\":\"You must enter {confirmTransferMessage} to proceed\",\"OGT1bh\":\"Sie müssen {deleteMessage} eingeben, um fortzufahren\",\"jifgCp\":\"Sie müssen mindestens einen anderen Teamkollegen haben, um die Eigentumsübertragung durchzuführen.\",\"ID3LkG\":\"Sie müssen eine Profil-URL festlegen, bevor Sie Ihr öffentliches Profil aktivieren.\",\"zfliFq\":[\"Sie müssen als <0>\",[\"email\"],\"0> angemeldet sein, um diese Seite anzuzeigen.\"],\"1et3k8\":\"Sie müssen angemeldet sein, um diese Seite anzuzeigen.\",\"ZR9lKP\":\"Sie müssen 2FA einrichten, um dieses Dokument als angesehen zu markieren.\",\"tKEndc\":\"Sie werden benachrichtigt und können Ihr Documenso öffentliches Profil einrichten, wenn wir die Funktion starten.\",\"MBzXsC\":\"Sie müssen bei der Anmeldung jetzt einen Code von Ihrer Authenticator-App eingeben.\",\"eWlnaX\":\"Sie erhalten eine E-Mail-Kopie des unterzeichneten Dokuments, sobald alle unterschrieben haben.\",\"gmJH7Y\":\"Ihr Konto wurde erfolgreich gelöscht.\",\"YL3Iyk\":\"Ihr Avatar wurde erfolgreich aktualisiert.\",\"c4qhbN\":\"Ihr Banner wurde erfolgreich aktualisiert.\",\"+Ljs6n\":\"Ihr aktueller Plan ist überfällig. Bitte aktualisieren Sie Ihre Zahlungsinformationen.\",\"5s2EJQ\":\"Ihre direkten Unterzeichnungsvorlagen\",\"pj2JS8\":\"Ihr Dokument konnte nicht hochgeladen werden.\",\"DIplUX\":\"Ihr Dokument wurde erfolgreich aus der Vorlage erstellt.\",\"iz6qAJ\":\"Ihr Dokument wurde erfolgreich erneut gesendet.\",\"0KIVTr\":\"Ihr Dokument wurde erfolgreich gesendet.\",\"vbvBKY\":\"Ihr Dokument wurde erfolgreich dupliziert.\",\"TqcK/s\":\"Ihr Dokument wurde erfolgreich hochgeladen.\",\"xEM9BR\":\"Ihr Dokument wurde erfolgreich hochgeladen. Sie werden zur Vorlagenseite weitergeleitet.\",\"F2NQI1\":\"Ihre Dokumente\",\"JQbHxK\":\"Ihre E-Mail wurde erfolgreich bestätigt! Sie können jetzt alle Funktionen von Documenso nutzen.\",\"pSDzas\":[\"Ihre E-Mail wird derzeit von Team <0>\",[\"0\"],\"0> (\",[\"1\"],\") verwendet.\"],\"K6mQ0w\":\"Ihre vorhandenen Tokens\",\"Ecp9Z/\":\"Ihr Passwort wurde erfolgreich aktualisiert.\",\"/tDdSk\":\"Ihre Zahlung für Teams ist überfällig. Bitte begleichen Sie die Zahlung, um Unterbrechungen des Dienstes zu vermeiden.\",\"R+Yx9f\":\"Ihr Profil wurde erfolgreich aktualisiert.\",\"skqRDH\":\"Ihr Profil wurde aktualisiert.\",\"kF7YFF\":\"Ihr öffentliches Profil wurde aktualisiert.\",\"XnIGua\":\"Ihr Wiederherstellungscode wurde in die Zwischenablage kopiert.\",\"/N3QQp\":\"Ihre Wiederherstellungscodes sind unten aufgeführt. Bitte bewahren Sie sie an einem sicheren Ort auf.\",\"o9X4Qf\":\"Ihr Abonnement ist derzeit aktiv.\",\"+fTW4I\":\"Ihr Team wurde erstellt.\",\"DCGKPd\":\"Ihr Team wurde erfolgreich gelöscht.\",\"7rm0si\":\"Ihr Team wurde erfolgreich aktualisiert.\",\"icNCVp\":\"Ihre Vorlage wurde erfolgreich dupliziert.\",\"juxjhy\":\"Ihre Vorlage wurde erfolgreich gelöscht.\",\"BHaG+M\":\"Ihre Vorlage wird dupliziert.\",\"WQkZGA\":\"Ihre Vorlagen wurden erfolgreich gespeichert.\",\"4OcZNw\":\"Ihr Token ist abgelaufen!\",\"stera3\":\"Ihr Token wurde erfolgreich erstellt! Stellen Sie sicher, dass Sie es kopieren, da Sie es später nicht mehr sehen können!\",\"R5j6t5\":\"Ihre Tokens werden hier angezeigt, sobald Sie sie erstellt haben.\",\"73XXzw\":[[\"0\"],\" von \",[\"1\"],\" Zeile(n) ausgewählt.\"],\"lZ4w45\":[[\"visibleRows\",\"plural\",{\"one\":[\"Eine \",\"#\",\" Ergebnis wird angezeigt.\"],\"other\":[\"#\",\" Ergebnisse werden angezeigt.\"]}]],\"AhYxw5\":\"<0>Authentifizierungsmethode erben0> - Verwenden Sie die in den \\\"Allgemeinen Einstellungen\\\" konfigurierte globale Aktionssignatur-Authentifizierungsmethode\",\"OepImG\":\"<0>Keine Einschränkungen0> - Keine Authentifizierung erforderlich\",\"07+JZ2\":\"<0>Keine Einschränkungen0> - Das Dokument kann direkt über die dem Empfänger gesendete URL abgerufen werden\",\"jx/lwn\":\"<0>Keine0> - Keine Authentifizierung erforderlich\",\"CUT3u1\":\"<0>2FA erforderlich0> - Der Empfänger muss ein Konto haben und die 2FA über seine Einstellungen aktiviert haben\",\"2PbD3D\":\"<0>Konto erforderlich0> - Der Empfänger muss angemeldet sein, um das Dokument anzeigen zu können\",\"QHSbey\":\"<0>Passkey erforderlich0> - Der Empfänger muss ein Konto haben und den Passkey über seine Einstellungen konfiguriert haben\",\"Oy5nEc\":\"Dokument hinzufügen\",\"7Pz5x5\":\"Fügen Sie eine URL hinzu, um den Benutzer nach der Unterzeichnung des Dokuments weiterzuleiten\",\"aILOUH\":\"Fügen Sie dem Dokument eine externe ID hinzu. Diese kann verwendet werden, um das Dokument in externen Systemen zu identifizieren.\",\"bK1dPK\":\"Fügen Sie der Vorlage eine externe ID hinzu. Diese kann zur Identifizierung in externen Systemen verwendet werden.\",\"nnZ1Sa\":\"Weitere Option hinzufügen\",\"0/UVRw\":\"Weiteren Wert hinzufügen\",\"VaCh6w\":\"Mich selbst hinzufügen\",\"jAa/lz\":\"Mich hinzufügen\",\"29QK6H\":\"Platzhalterempfänger hinzufügen\",\"vcxlzZ\":\"Unterzeichner hinzufügen\",\"7F2ltK\":\"Text zum Feld hinzufügen\",\"U3pytU\":\"Admin\",\"NFIOKv\":\"Erweiterte Optionen\",\"VNgKZz\":\"Erweiterte Einstellungen\",\"bNUpvl\":\"Nach der Übermittlung wird ein Dokument automatisch generiert und zu Ihrer Dokumentenseite hinzugefügt. Sie erhalten außerdem eine Benachrichtigung per E-Mail.\",\"ca9AbO\":\"Genehmiger\",\"j2Uisd\":\"Genehmigung\",\"THokF3\":\"Black\",\"Zn5crm\":\"Blue\",\"brJrDl\":\"Unterzeichner kann nicht entfernt werden\",\"RpYfjZ\":\"Cc\",\"XdZeJk\":\"CC\",\"nrL/ZD\":\"CC'd\",\"EEk+d0\":\"Zeichenbeschränkung\",\"G1XxbZ\":\"Checkbox\",\"wbixMe\":\"Checkbox-Werte\",\"u8JHrO\":\"Filter löschen\",\"IqxkER\":\"Unterschrift löschen\",\"OrcxNk\":\"Direkten Empfänger konfigurieren\",\"92KLYs\":[\"Konfigurieren Sie das Feld \",[\"0\"]],\"GB2F11\":\"Benutzerdefinierter Text\",\"4BHv90\":\"Datumsformat\",\"NLXhq7\":\"Empfänger des direkten Links\",\"YScG1E\":\"Dokumentenzugriff\",\"rAqi0g\":\"Dokumenterstellung\",\"6GyScL\":\"Ziehen Sie Ihr PDF hierher.\",\"iKQcPM\":\"Dropdown\",\"XXvhMd\":\"Dropdown-Optionen\",\"XLpxoj\":\"E-Mail-Optionen\",\"f7sXvi\":\"Passwort eingeben\",\"5KfWxA\":\"Externe ID\",\"4CP+OV\":\"Einstellungen konnten nicht gespeichert werden.\",\"LK3SFK\":\"Zeichenbeschränkung des Feldes\",\"NYkIsf\":\"Feldformat\",\"X6Tb6Q\":\"Feldbeschriftung\",\"NaVkSD\":\"Feldplatzhalter\",\"N1UTWT\":\"Globale Empfängerauthentifizierung\",\"VmkjGB\":\"Green\",\"uCroPU\":\"Ich bin ein Unterzeichner dieses Dokuments\",\"K6KTX2\":\"Ich bin ein Betrachter dieses Dokuments\",\"ngj5km\":\"Ich bin ein Genehmiger dieses Dokuments\",\"JUZIGu\":\"Ich bin verpflichtet, eine Kopie dieses Dokuments zu erhalten\",\"ZjDoG7\":\"I am required to recieve a copy of this document\",\"fnbcC0\":\"Authentifizierungsmethode erben\",\"87a/t/\":\"Beschriftung\",\"dtOoGl\":\"Manager\",\"CK1KXz\":\"Max\",\"OvoEq7\":\"Mitglied\",\"ziXm9u\":\"Nachricht <0>(Optional)0>\",\"eTUF28\":\"Min\",\"4nqUV0\":\"Muss genehmigen\",\"lNQBPg\":\"Muss unterzeichnen\",\"eUAUyG\":\"Muss sehen\",\"GBIRGD\":\"Kein passender Empfänger mit dieser Beschreibung gefunden.\",\"f34Qxi\":\"Keine Empfänger mit dieser Rolle\",\"qQ7oqE\":\"Keine Einschränkungen\",\"AxPAXW\":\"Keine Ergebnisse gefunden\",\"pt86ev\":\"Kein Unterschriftsfeld gefunden\",\"HptUxX\":\"Nummer\",\"bR2sEm\":\"Zahlenformat\",\"eY6ns+\":\"Sobald aktiviert, können Sie einen aktiven Empfänger für die Direktlink-Signierung auswählen oder einen neuen erstellen. Dieser Empfängertyp kann nicht bearbeitet oder gelöscht werden.\",\"JE2qy+\":\"Sobald Ihre Vorlage eingerichtet ist, teilen Sie den Link überall, wo Sie möchten. Die Person, die den Link öffnet, kann ihre Informationen im Feld für direkte Empfänger eingeben und alle anderen ihr zugewiesenen Felder ausfüllen.\",\"fpzyLj\":[\"Seite \",[\"0\"],\" von \",[\"1\"]],\"8ltyoa\":\"Passwort erforderlich\",\"ayaTI6\":\"Wählen Sie eine Zahl\",\"hx1ePY\":\"Platzhalter\",\"MtkqZc\":\"Radio\",\"5cEi0C\":\"Radio-Werte\",\"uNQ6eB\":\"Nur lesen\",\"UTnF5X\":\"Erhält Kopie\",\"ZIuo5V\":\"Empfängeraktion Authentifizierung\",\"wRTiSD\":\"Red\",\"VTB2Rz\":\"Weiterleitungs-URL\",\"8dg+Yo\":\"Pflichtfeld\",\"xxCtZv\":\"Zeilen pro Seite\",\"9Y3hAT\":\"Vorlage speichern\",\"StoBff\":\"Sprachen suchen...\",\"hVPa4O\":\"Option auswählen\",\"IM+vrQ\":\"Wählen Sie mindestens\",\"Gve6FG\":\"Standardoption auswählen\",\"JlFcis\":\"Senden\",\"AEV4wo\":\"Dokument senden\",\"iE3nGO\":\"Unterschriftenkarte teilen\",\"y+hKWu\":\"Link teilen\",\"ydZ6yi\":\"Erweiterte Einstellungen anzeigen\",\"jTCAGu\":\"Unterzeichner\",\"6G8s+q\":\"Unterzeichnung\",\"kW2h2Z\":\"Einige Unterzeichner haben noch kein Unterschriftsfeld zugewiesen bekommen. Bitte weisen Sie jedem Unterzeichner mindestens ein Unterschriftsfeld zu, bevor Sie fortfahren.\",\"kf83Ld\":\"Etwas ist schief gelaufen.\",\"WlBiWh\":[\"Schritt <0>\",[\"step\"],\" von \",[\"maxStep\"],\"0>\"],\"ki77Td\":\"Betreff <0>(Optional)0>\",\"hQRttt\":\"Einreichen\",\"URdrTr\":\"Vorlagentitel\",\"xeiujy\":\"Text\",\"imClgr\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger Felder signieren\",\"yyD2dE\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger das Signaturfeld signieren können.\",\"GtDmLf\":\"Die Authentifizierung, die erforderlich ist, damit Empfänger das Dokument anzeigen können.\",\"zAoaPB\":\"Der Name des Dokuments\",\"Ev3GOS\":\"Das eingegebene Passwort ist falsch. Bitte versuchen Sie es erneut.\",\"OPnnb6\":\"Der Empfänger muss keine Aktion ausführen und erhält nach Abschluss eine Kopie des Dokuments.\",\"v8p6Mb\":\"Der Empfänger muss das Dokument genehmigen, damit es abgeschlossen werden kann.\",\"CPv0TB\":\"Der Empfänger muss das Dokument unterschreiben, damit es abgeschlossen werden kann.\",\"oIvIfH\":\"Der Empfänger muss das Dokument anzeigen, damit es abgeschlossen werden kann.\",\"Br2bvS\":\"Der Freigabelink konnte in diesem Moment nicht erstellt werden. Bitte versuchen Sie es erneut.\",\"XJIzqY\":\"Der Freigabelink wurde in Ihre Zwischenablage kopiert.\",\"UyM8/E\":\"Die E-Mail des Unterzeichners\",\"zHJ+vk\":\"Der Name des Unterzeichners\",\"kaEF2i\":\"Dies kann überschrieben werden, indem die Authentifizierungsanforderungen im nächsten Schritt direkt für jeden Empfänger festgelegt werden.\",\"QUZVfd\":\"Dieses Dokument wurde bereits an diesen Empfänger gesendet. Sie können diesen Empfänger nicht mehr bearbeiten.\",\"riNGUC\":\"Dieses Dokument ist durch ein Passwort geschützt. Bitte geben Sie das Passwort ein, um das Dokument anzusehen.\",\"Qkeh+t\":\"Dieses Feld kann nicht geändert oder gelöscht werden. Wenn Sie den direkten Link dieser Vorlage teilen oder zu Ihrem öffentlichen Profil hinzufügen, kann jeder, der darauf zugreift, seinen Namen und seine E-Mail-Adresse eingeben und die ihm zugewiesenen Felder ausfüllen.\",\"l2Xt6u\":\"Dieser Unterzeichner hat das Dokument bereits erhalten.\",\"6iFh5a\":\"Dies überschreibt alle globalen Einstellungen.\",\"RxsRD6\":\"Zeitzone\",\"UWmOq4\":[\"Um fortzufahren, legen Sie bitte mindestens einen Wert für das Feld \",[\"0\"],\" fest.\"],\"GT+2nz\":\"Aktualisieren Sie die Rolle und fügen Sie Felder nach Bedarf für den direkten Empfänger hinzu. Die Person, die den direkten Link verwendet, wird das Dokument als direkter Empfänger unterzeichnen.\",\"kwkhPe\":\"Upgrade\",\"06fEqf\":\"Vorlagendokument hochladen\",\"lGWE4b\":\"Validierung\",\"M/TIv1\":\"Viewer\",\"RVWz5F\":\"Viewing\",\"5Ex+AP\":\"White\",\"4/hUq0\":\"Sie sind dabei, dieses Dokument an die Empfänger zu senden. Sind Sie sicher, dass Sie fortfahren möchten?\",\"rb/T41\":\"Sie können die folgenden Variablen in Ihrer Nachricht verwenden:\",\"9+Ph0R\":\"Sie können derzeit keine Dokumente hochladen.\"}")};
\ No newline at end of file
diff --git a/packages/lib/translations/de/web.po b/packages/lib/translations/de/web.po
index 4a2fe10f5..608b28e80 100644
--- a/packages/lib/translations/de/web.po
+++ b/packages/lib/translations/de/web.po
@@ -8,7 +8,7 @@ msgstr ""
"Language: de\n"
"Project-Id-Version: documenso-app\n"
"Report-Msgid-Bugs-To: \n"
-"PO-Revision-Date: 2024-08-27 16:03\n"
+"PO-Revision-Date: 2024-09-05 06:04\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -20,340 +20,340 @@ msgstr ""
#: apps/web/src/app/(signing)/sign/[token]/date-field.tsx:69
msgid "\"{0}\" will appear on the document as it has a timezone of \"{timezone}\"."
-msgstr ""
+msgstr "\"{0}\" wird im Dokument erscheinen, da es eine Zeitzone von \"{timezone}\" hat."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:60
msgid "\"{documentTitle}\" has been successfully deleted"
-msgstr ""
+msgstr "\"{documentTitle}\" wurde erfolgreich gelöscht"
#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:76
msgid "({0}) has invited you to approve this document"
-msgstr ""
+msgstr "({0}) hat dich eingeladen, dieses Dokument zu genehmigen"
#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:73
msgid "({0}) has invited you to sign this document"
-msgstr ""
+msgstr "({0}) hat dich eingeladen, dieses Dokument zu unterzeichnen"
#: apps/web/src/app/(signing)/sign/[token]/signing-page-view.tsx:70
msgid "({0}) has invited you to view this document"
-msgstr ""
+msgstr "({0}) hat dich eingeladen, dieses Dokument zu betrachten"
#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:311
msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
-msgstr ""
+msgstr "{0, plural, one {(1 Zeichen über dem Limit)} other {(# Zeichen über dem Limit)}}"
#: apps/web/src/components/forms/public-profile-form.tsx:237
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:397
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:395
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
-msgstr ""
+msgstr "{0, plural, one {# Zeichen über dem Limit} other {# Zeichen über dem Limit}}"
#: apps/web/src/app/(recipient)/d/[token]/page.tsx:82
msgid "{0, plural, one {# recipient} other {# recipients}}"
-msgstr ""
+msgstr "{0, plural, one {# Empfänger} other {# Empfänger}}"
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:66
msgid "{0, plural, one {# Seat} other {# Seats}}"
-msgstr ""
+msgstr "{0, plural, one {# Sitz} other {# Sitze}}"
#: apps/web/src/app/(dashboard)/settings/teams/team-invitations.tsx:37
#: apps/web/src/app/(dashboard)/settings/teams/team-invitations.tsx:66
msgid "{0, plural, one {<0>You have <1>11> pending team invitation0>} other {<2>You have <3>#3> pending team invitations2>}}"
-msgstr ""
+msgstr "{0, plural, one {<0>Du hast <1>11> ausstehende Team-Einladung0>} other {<2>Du hast <3>#3> ausstehende Team-Einladungen2>}}"
#: apps/web/src/app/(dashboard)/documents/[id]/edit/document-edit-page-view.tsx:102
msgid "{0, plural, one {1 Recipient} other {# Recipients}}"
-msgstr ""
+msgstr "{0, plural, one {1 Empfänger} other {# Empfänger}}"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:204
msgid "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}}"
-msgstr ""
+msgstr "{0, plural, one {Warte auf 1 Empfänger} other {Warte auf # Empfänger}}"
#: apps/web/src/components/(dashboard)/settings/webhooks/trigger-multiselect-combobox.tsx:64
msgid "{0, plural, zero {Select values} other {# selected...}}"
-msgstr ""
+msgstr "{0, plural, zero {Werte auswählen} other {# ausgewählt...}}"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:251
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:249
msgid "{0} direct signing templates"
-msgstr ""
+msgstr "{0} direkte Signaturvorlagen"
#: apps/web/src/app/(recipient)/d/[token]/direct-template.tsx:66
msgid "{0} document"
-msgstr ""
+msgstr "{0} Dokument"
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:146
msgid "{0} of {1} documents remaining this month."
-msgstr ""
+msgstr "{0} von {1} Dokumenten verbleibend in diesem Monat."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:139
msgid "{0} Recipient(s)"
-msgstr ""
+msgstr "{0} Empfänger(in) / -n"
#: apps/web/src/app/(recipient)/d/[token]/direct-template.tsx:67
msgid "{0} the document to complete the process."
-msgstr ""
+msgstr "{0} das Dokument, um den Prozess abzuschließen."
#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:292
msgid "{charactersRemaining, plural, one {1 character remaining} other {{charactersRemaining} characters remaining}}"
-msgstr ""
+msgstr "{charactersRemaining, plural, one {1 Zeichen verbleibend} other {{charactersRemaining} Zeichen verbleibend}}"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:55
msgid "{formattedTeamMemberQuanity} • Monthly • Renews: {formattedDate}"
-msgstr ""
+msgstr "{formattedTeamMemberQuanity} • Monatlich • Erneuert: {formattedDate}"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:48
msgid "{numberOfSeats, plural, one {# member} other {# members}}"
-msgstr ""
+msgstr "{numberOfSeats, plural, one {# Mitglied} other {# Mitglieder}}"
#: apps/web/src/components/forms/public-profile-form.tsx:231
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:391
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:389
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
-msgstr ""
+msgstr "{remaningLength, plural, one {# Zeichen verbleibend} other {# Zeichen verbleibend}}"
#: apps/web/src/app/(signing)/sign/[token]/no-longer-available.tsx:45
msgid "<0>\"{0}\"0>is no longer available to sign"
-msgstr ""
+msgstr "<0>\"{0}\"0> steht nicht mehr zur Unterschrift zur Verfügung"
#: apps/web/src/app/(dashboard)/documents/data-table-sender-filter.tsx:57
msgid "<0>Sender:0> All"
-msgstr ""
+msgstr "<0>Absender:0> Alle"
#: apps/web/src/components/partials/not-found.tsx:45
msgid "404 Page not found"
-msgstr ""
+msgstr "404 Seite nicht gefunden"
#: apps/web/src/app/(profile)/p/[url]/not-found.tsx:15
msgid "404 Profile not found"
-msgstr ""
+msgstr "404 Profil nicht gefunden"
#: apps/web/src/app/(teams)/t/[teamUrl]/not-found.tsx:15
msgid "404 Team not found"
-msgstr ""
+msgstr "404 Team nicht gefunden"
#: apps/web/src/app/(recipient)/d/[token]/not-found.tsx:15
msgid "404 Template not found"
-msgstr ""
+msgstr "404 Vorlage nicht gefunden"
#: apps/web/src/components/forms/send-confirmation-email.tsx:55
msgid "A confirmation email has been sent, and it should arrive in your inbox shortly."
-msgstr ""
+msgstr "Eine Bestätigungs-E-Mail wurde gesendet, und sie sollte in Kürze in deinem Posteingang ankommen."
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:193
msgid "A draft document will be created"
-msgstr ""
+msgstr "Ein Entwurf wird erstellt"
#: apps/web/src/components/forms/token.tsx:127
msgid "A new token was created successfully."
-msgstr ""
+msgstr "Ein neuer Token wurde erfolgreich erstellt."
#: apps/web/src/app/(unauthenticated)/check-email/page.tsx:24
#: apps/web/src/components/forms/forgot-password.tsx:58
msgid "A password reset email has been sent, if you have an account you should see it in your inbox shortly."
-msgstr ""
+msgstr "Eine E-Mail zum Zurücksetzen des Passworts wurde gesendet, wenn du ein Konto hast, solltest du sie in Kürze in deinem Posteingang sehen."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:94
msgid "A request to transfer the ownership of this team has been sent to <0>{0} ({1})0>"
-msgstr ""
+msgstr "Eine Anfrage zur Übertragung des Eigentums dieses Teams wurde an <0>{0} ({1})0> gesendet"
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:228
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso"
-msgstr ""
+msgstr "Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:196
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:198
msgid "A secret that will be sent to your URL so you can verify that the request has been sent by Documenso."
-msgstr ""
+msgstr "Ein Geheimnis, das an deine URL gesendet wird, damit du überprüfen kannst, dass die Anfrage von Documenso gesendet wurde."
#: apps/web/src/components/forms/public-profile-form.tsx:198
msgid "A unique URL to access your profile"
-msgstr ""
+msgstr "Eine eindeutige URL, um auf dein Profil zuzugreifen"
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:206
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:139
msgid "A unique URL to identify your team"
-msgstr ""
+msgstr "Eine eindeutige URL, um dein Team zu identifizieren"
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:137
msgid "A verification email will be sent to the provided email."
-msgstr ""
+msgstr "Eine Bestätigungs-E-Mail wird an die angegebene E-Mail-Adresse gesendet."
#: apps/web/src/app/(dashboard)/settings/teams/accept-team-invitation-button.tsx:46
msgid "Accept"
-msgstr ""
+msgstr "Akzeptieren"
#: apps/web/src/app/(dashboard)/settings/teams/accept-team-invitation-button.tsx:26
msgid "Accepted team invitation"
-msgstr ""
+msgstr "Team-Einladung akzeptiert"
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:51
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:48
msgid "Account deleted"
-msgstr ""
+msgstr "Konto gelöscht"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:105
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:106
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:104
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:121
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:164
-#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:120
+#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:118
msgid "Action"
-msgstr ""
+msgstr "Aktion"
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:89
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:141
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:135
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:144
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:120
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:129
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:85
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:140
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:133
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:142
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:118
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:127
msgid "Actions"
-msgstr ""
+msgstr "Aktionen"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:101
#: apps/web/src/components/(teams)/tables/teams-member-page-data-table.tsx:76
#: apps/web/src/components/(teams)/tables/user-settings-teams-page-data-table.tsx:71
msgid "Active"
-msgstr ""
+msgstr "Aktiv"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:68
msgid "Active Subscriptions"
-msgstr ""
+msgstr "Aktive Abonnements"
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:189
msgid "Add"
-msgstr ""
+msgstr "Hinzufügen"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:143
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:87
msgid "Add all relevant fields for each recipient."
-msgstr ""
+msgstr "Fügen Sie alle relevanten Felder für jeden Empfänger hinzu."
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:82
msgid "Add all relevant placeholders for each recipient."
-msgstr ""
+msgstr "Fügen Sie alle relevanten Platzhalter für jeden Empfänger hinzu."
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:62
msgid "Add an authenticator to serve as a secondary authentication method for signing documents."
-msgstr ""
+msgstr "Fügen Sie einen Authenticator hinzu, um als sekundäre Authentifizierungsmethode für die Unterzeichnung von Dokumenten zu dienen."
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:57
msgid "Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents."
-msgstr ""
+msgstr "Fügen Sie einen Authenticator hinzu, um als sekundäre Authentifizierungsmethode beim Einloggen oder bei der Unterzeichnung von Dokumenten zu dienen."
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:125
msgid "Add email"
-msgstr ""
+msgstr "E-Mail hinzufügen"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:142
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:86
msgid "Add Fields"
-msgstr ""
+msgstr "Felder hinzufügen"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:364
msgid "Add more"
-msgstr ""
+msgstr "Mehr hinzufügen"
#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:270
msgid "Add number"
-msgstr ""
+msgstr "Nummer hinzufügen"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:146
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:154
msgid "Add passkey"
-msgstr ""
+msgstr "Passkey hinzufügen"
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:81
msgid "Add Placeholders"
-msgstr ""
+msgstr "Platzhalter hinzufügen"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:137
msgid "Add Signers"
-msgstr ""
+msgstr "Unterzeichner hinzufügen"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:147
msgid "Add Subject"
-msgstr ""
+msgstr "Betreff hinzufügen"
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:133
msgid "Add team email"
-msgstr ""
+msgstr "Team-E-Mail hinzufügen"
#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:256
msgid "Add text"
-msgstr ""
+msgstr "Text hinzufügen"
#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:272
msgid "Add Text"
-msgstr ""
+msgstr "Text hinzufügen"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:138
msgid "Add the people who will sign the document."
-msgstr ""
+msgstr "Fügen Sie die Personen hinzu, die das Dokument unterschreiben werden."
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:195
msgid "Add the recipients to create the document with"
-msgstr ""
+msgstr "Fügen Sie die Empfänger hinzu, um das Dokument zu erstellen"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:148
msgid "Add the subject and message you wish to send to signers."
-msgstr ""
+msgstr "Fügen Sie den Betreff und die Nachricht hinzu, die Sie den Unterzeichnern senden möchten."
#: apps/web/src/components/(teams)/dialogs/create-team-checkout-dialog.tsx:152
msgid "Adding and removing seats will adjust your invoice accordingly."
-msgstr ""
+msgstr "Das Hinzufügen und Entfernen von Sitzplätzen wird Ihre Rechnung entsprechend anpassen."
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:61
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:59
msgid "Admin Actions"
-msgstr ""
+msgstr "Admin-Aktionen"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:257
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:262
msgid "Admin panel"
-msgstr ""
+msgstr "Admin-Panel"
#: apps/web/src/components/formatter/document-status.tsx:46
msgid "All"
-msgstr ""
+msgstr "Alle"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:37
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:42
msgid "All documents"
-msgstr ""
+msgstr "Alle Dokumente"
#: apps/web/src/app/(dashboard)/documents/empty-state.tsx:35
msgid "All documents have been processed. Any new documents that are sent or received will show here."
-msgstr ""
+msgstr "Alle Dokumente wurden verarbeitet. Alle neuen Dokumente, die gesendet oder empfangen werden, werden hier angezeigt."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:145
msgid "All inserted signatures will be voided"
-msgstr ""
+msgstr "Alle eingefügten Unterschriften werden annulliert"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:148
msgid "All recipients will be notified"
-msgstr ""
+msgstr "Alle Empfänger werden benachrichtigt"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:52
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:57
msgid "All templates"
-msgstr ""
+msgstr "Alle Vorlagen"
#: apps/web/src/components/(dashboard)/period-selector/period-selector.tsx:55
msgid "All Time"
-msgstr ""
+msgstr "Alle Zeiten"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:110
msgid "Allows authenticating using biometrics, password managers, hardware keys, etc."
-msgstr ""
+msgstr "Erlaubt die Authentifizierung mit biometrischen Daten, Passwort-Managern, Hardware-Schlüsseln usw."
#: apps/web/src/components/forms/v2/signup.tsx:411
msgid "Already have an account? <0>Sign in instead0>"
-msgstr ""
+msgstr "Hast du bereits ein Konto? <0>Stattdessen anmelden0>"
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:86
msgid "Amount"
-msgstr ""
+msgstr "Betrag"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:262
msgid "An email containing an invitation will be sent to each member."
-msgstr ""
+msgstr "Eine E-Mail mit einer Einladung wird an jedes Mitglied gesendet."
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:109
msgid "An email requesting the transfer of this team has been sent."
-msgstr ""
+msgstr "Eine E-Mail, in der die Übertragung dieses Teams angefordert wird, wurde gesendet."
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:60
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:83
@@ -368,56 +368,56 @@ msgstr ""
#: apps/web/src/components/forms/token.tsx:137
#: apps/web/src/components/forms/v2/signup.tsx:154
msgid "An error occurred"
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:226
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:176
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:210
msgid "An error occurred while adding signers."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während Unterzeichner hinzugefügt wurden."
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:256
msgid "An error occurred while adding the fields."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während die Felder hinzugefügt wurden."
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:153
msgid "An error occurred while creating document from template."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während das Dokument aus der Vorlage erstellt wurde."
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:102
msgid "An error occurred while creating the webhook. Please try again."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während der Webhook erstellt wurde. Bitte versuchen Sie es erneut."
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:124
msgid "An error occurred while disabling direct link signing."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während das direkte Links-Signieren deaktiviert wurde."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:64
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:89
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:76
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:105
msgid "An error occurred while downloading your document."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während dein Dokument heruntergeladen wurde."
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:52
msgid "An error occurred while duplicating template."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während die Vorlage dupliziert wurde."
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:123
msgid "An error occurred while enabling direct link signing."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während das direkte Links-Signieren aktiviert wurde."
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:299
msgid "An error occurred while loading team members. Please try again later."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während die Teammitglieder geladen wurden. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(dashboard)/documents/move-document-dialog.tsx:58
msgid "An error occurred while moving the document."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während das Dokument verschoben wurde."
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:57
msgid "An error occurred while moving the template."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während die Vorlage verschoben wurde."
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:152
#: apps/web/src/app/(signing)/sign/[token]/date-field.tsx:126
@@ -428,19 +428,19 @@ msgstr ""
#: apps/web/src/app/(signing)/sign/[token]/radio-field.tsx:129
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:175
msgid "An error occurred while removing the signature."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während die Unterschrift entfernt wurde."
#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:196
msgid "An error occurred while removing the text."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während der Text entfernt wurde."
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:287
msgid "An error occurred while sending the document."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während das Dokument gesendet wurde."
#: apps/web/src/components/forms/send-confirmation-email.tsx:63
msgid "An error occurred while sending your confirmation email"
-msgstr ""
+msgstr "Beim Senden Ihrer Bestätigungs-E-Mail ist ein Fehler aufgetreten"
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:123
#: apps/web/src/app/(signing)/sign/[token]/date-field.tsx:100
@@ -452,28 +452,28 @@ msgstr ""
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:149
#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:168
msgid "An error occurred while signing the document."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während das Dokument unterzeichnet wurde."
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:63
msgid "An error occurred while trying to create a checkout session."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während versucht wurde, eine Checkout-Sitzung zu erstellen."
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:199
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:153
msgid "An error occurred while updating the document settings."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während die Dokumenteinstellungen aktualisiert wurden."
#: apps/web/src/app/(signing)/sign/[token]/checkbox-field.tsx:213
msgid "An error occurred while updating the signature."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während die Unterschrift aktualisiert wurde."
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:79
msgid "An error occurred while updating your profile."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während dein Profil aktualisiert wurde."
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:113
msgid "An error occurred while uploading your document."
-msgstr ""
+msgstr "Ein Fehler ist aufgetreten, während dein Dokument hochgeladen wurde."
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:66
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:89
@@ -481,6 +481,7 @@ msgstr ""
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:63
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:98
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:54
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:301
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:97
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:88
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:100
@@ -512,51 +513,51 @@ msgstr ""
#: apps/web/src/components/forms/v2/signup.tsx:160
#: apps/web/src/components/forms/v2/signup.tsx:183
#: apps/web/src/components/forms/v2/signup.tsx:197
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:143
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:180
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:141
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:178
msgid "An unknown error occurred"
-msgstr ""
+msgstr "Es ist ein unbekannter Fehler aufgetreten"
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:260
msgid "Any payment methods attached to this team will remain attached to this team. Please contact us if you need to update this information."
-msgstr ""
+msgstr "Alle Zahlungsmethoden, die mit diesem Team verbunden sind, bleiben diesem Team zugeordnet. Bitte kontaktiere uns, wenn du diese Informationen aktualisieren möchtest."
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:23
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:43
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:57
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:22
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:42
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:56
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:90
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:93
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:81
#: apps/web/src/components/(teams)/settings/layout/mobile-nav.tsx:89
msgid "API Tokens"
-msgstr ""
+msgstr "API-Token"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:74
msgid "App Version"
-msgstr ""
+msgstr "App-Version"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:89
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:120
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:144
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:122
msgid "Approve"
-msgstr ""
+msgstr "Genehmigen"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:78
msgid "Approved"
-msgstr ""
+msgstr "Genehmigt"
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:129
msgid "Are you sure you want to delete this token?"
-msgstr ""
+msgstr "Bist du sicher, dass du dieses Token löschen möchtest?"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:188
msgid "Are you sure you want to remove the <0>{passkeyName}0> passkey."
-msgstr ""
+msgstr "Bist du sicher, dass du den <0>{passkeyName}0> Passkey entfernen möchtest."
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:126
msgid "Are you sure you wish to delete this team?"
-msgstr ""
+msgstr "Bist du dir sicher, dass du dieses Team löschen möchtest?"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:98
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:94
@@ -564,90 +565,90 @@ msgstr ""
#: apps/web/src/components/(teams)/dialogs/delete-team-member-dialog.tsx:81
#: apps/web/src/components/(teams)/dialogs/leave-team-dialog.tsx:81
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:116
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:441
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:439
msgid "Are you sure?"
-msgstr ""
+msgstr "Bist du dir sicher?"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:66
msgid "Attempts sealing the document again, useful for after a code change has occurred to resolve an erroneous document."
-msgstr ""
+msgstr "Versuche, das Dokument erneut zu versiegeln, nützlich nach einer Codeänderung, um ein fehlerhaftes Dokument zu beheben."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:127
msgid "Audit Log"
-msgstr ""
+msgstr "Audit-Protokoll"
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:41
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:57
msgid "Authentication required"
-msgstr ""
+msgstr "Authentifizierung erforderlich"
#: apps/web/src/components/forms/avatar-image.tsx:145
msgid "Avatar"
-msgstr ""
+msgstr "Avatar"
#: apps/web/src/components/forms/avatar-image.tsx:107
msgid "Avatar Updated"
-msgstr ""
+msgstr "Avatar aktualisiert"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:121
msgid "Awaiting email confirmation"
-msgstr ""
+msgstr "Warte auf E-Mail-Bestätigung"
#: apps/web/src/app/(recipient)/d/[token]/sign-direct-template.tsx:369
#: apps/web/src/components/(dashboard)/settings/layout/activity-back.tsx:20
#: apps/web/src/components/forms/v2/signup.tsx:497
msgid "Back"
-msgstr ""
+msgstr "Zurück"
#: apps/web/src/app/(unauthenticated)/articles/signature-disclosure/page.tsx:109
msgid "Back to Documents"
-msgstr ""
+msgstr "Zurück zu Dokumenten"
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:146
msgid "Background Color"
-msgstr ""
+msgstr "Hintergrundfarbe"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:167
#: apps/web/src/components/forms/signin.tsx:473
msgid "Backup Code"
-msgstr ""
+msgstr "Backup-Code"
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:164
msgid "Backup codes"
-msgstr ""
+msgstr "Backup-Codes"
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:74
msgid "Banner Updated"
-msgstr ""
+msgstr "Banner aktualisiert"
#: apps/web/src/components/forms/v2/signup.tsx:460
msgid "Basic details"
-msgstr ""
+msgstr "Basisdetails"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:74
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:72
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:61
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:117
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:120
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:108
#: apps/web/src/components/(teams)/settings/layout/mobile-nav.tsx:116
msgid "Billing"
-msgstr ""
+msgstr "Abrechnung"
-#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:101
+#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:99
msgid "Browser"
-msgstr ""
+msgstr "Browser"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:279
msgid "Bulk Import"
-msgstr ""
+msgstr "Bulk-Import"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:156
msgid "By deleting this document, the following will occur:"
-msgstr ""
+msgstr "Durch das Löschen dieses Dokuments wird Folgendes passieren:"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:114
msgid "By enabling 2FA, you will be required to enter a code from your authenticator app every time you sign in."
-msgstr ""
+msgstr "Durch die Aktivierung von 2FA müssen Sie jedes Mal, wenn Sie sich anmelden, einen Code aus Ihrer Authenticator-App eingeben."
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:186
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:190
@@ -687,75 +688,75 @@ msgstr ""
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:187
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:257
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:163
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:452
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:450
msgid "Cancel"
-msgstr ""
+msgstr "Abbrechen"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:226
msgid "Cancelled by user"
-msgstr ""
+msgstr "Vom Benutzer abgebrochen"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:132
msgid "Charts"
-msgstr ""
+msgstr "Diagramme"
#: apps/web/src/components/(teams)/dialogs/create-team-checkout-dialog.tsx:179
msgid "Checkout"
-msgstr ""
+msgstr "Abrechnung"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:271
msgid "Choose an existing recipient from below to continue"
-msgstr ""
+msgstr "Wählen Sie einen vorhandenen Empfänger unten aus, um fortzufahren"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:267
msgid "Choose Direct Link Recipient"
-msgstr ""
+msgstr "Wählen Sie den direkten Link Empfänger"
#: apps/web/src/components/forms/token.tsx:200
msgid "Choose..."
-msgstr ""
+msgstr "Wählen..."
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:160
msgid "Claim account"
-msgstr ""
+msgstr "Konto beanspruchen"
#: apps/web/src/components/forms/v2/signup.tsx:469
msgid "Claim username"
-msgstr ""
+msgstr "Benutzername beanspruchen"
#: apps/web/src/app/(dashboard)/documents/upcoming-profile-claim-teaser.tsx:28
msgid "Claim your profile later"
-msgstr ""
+msgstr "Profile später beanspruchen"
#: apps/web/src/components/forms/v2/signup.tsx:267
msgid "Claim your username now"
-msgstr ""
+msgstr "Benutzername jetzt beanspruchen"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:130
msgid "Click here to get started"
-msgstr ""
+msgstr "Klicken Sie hier, um zu beginnen"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx:78
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:118
-#: apps/web/src/components/document/document-history-sheet.tsx:131
+#: apps/web/src/components/document/document-history-sheet.tsx:133
msgid "Click here to retry"
-msgstr ""
+msgstr "Klicken Sie hier, um es erneut zu versuchen"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:392
msgid "Click here to upload"
-msgstr ""
+msgstr "Klicken Sie hier, um hochzuladen"
#: apps/web/src/components/(dashboard)/avatar/avatar-with-recipient.tsx:52
#: apps/web/src/components/(dashboard)/avatar/avatar-with-recipient.tsx:65
msgid "Click to copy signing link for sending to recipient"
-msgstr ""
+msgstr "Klicken Sie, um den Signatur-Link zu kopieren, um ihn an den Empfänger zu senden"
#: apps/web/src/app/(recipient)/d/[token]/sign-direct-template.tsx:175
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:107
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:435
#: apps/web/src/app/embed/sign/[[...url]]/client.tsx:312
msgid "Click to insert field"
-msgstr ""
+msgstr "Klicken Sie, um das Feld einzufügen"
#: apps/web/src/app/(dashboard)/templates/new-template-dialog.tsx:126
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:304
@@ -764,88 +765,88 @@ msgstr ""
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:121
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:180
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:102
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:321
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:425
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:319
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:423
msgid "Close"
-msgstr ""
+msgstr "Schließen"
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:58
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:425
#: apps/web/src/app/embed/sign/[[...url]]/client.tsx:302
#: apps/web/src/components/forms/v2/signup.tsx:522
msgid "Complete"
-msgstr ""
+msgstr "Vollständig"
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:67
msgid "Complete Approval"
-msgstr ""
+msgstr "Genehmigung abschließen"
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:66
msgid "Complete Signing"
-msgstr ""
+msgstr "Unterzeichnung abschließen"
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:65
msgid "Complete Viewing"
-msgstr ""
+msgstr "Betrachten abschließen"
#: apps/web/src/components/(dashboard)/avatar/stack-avatars-with-tooltip.tsx:58
#: apps/web/src/components/formatter/document-status.tsx:28
msgid "Completed"
-msgstr ""
+msgstr "Abgeschlossen"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:43
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:48
msgid "Completed documents"
-msgstr ""
+msgstr "Abgeschlossene Dokumente"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:94
msgid "Completed Documents"
-msgstr ""
+msgstr "Abgeschlossene Dokumente"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:133
msgid "Configure general settings for the document."
-msgstr ""
+msgstr "Konfigurieren Sie die allgemeinen Einstellungen für das Dokument."
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:77
msgid "Configure general settings for the template."
-msgstr ""
+msgstr "Konfigurieren Sie die allgemeinen Einstellungen für die Vorlage."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:339
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:337
msgid "Configure template"
-msgstr ""
+msgstr "Vorlage konfigurieren"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:479
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:462
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:460
msgid "Confirm"
-msgstr ""
+msgstr "Bestätigen"
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:207
msgid "Confirm by typing <0>{confirmTransferMessage}0>"
-msgstr ""
+msgstr "Bestätigen Sie durch Eingabe von <0>{confirmTransferMessage}0>"
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:149
msgid "Confirm by typing <0>{deleteMessage}0>"
-msgstr ""
+msgstr "Bestätigen Sie durch Eingabe von <0>{deleteMessage}0>"
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:152
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:140
msgid "Confirm by typing: <0>{deleteMessage}0>"
-msgstr ""
+msgstr "Bestätigen Sie durch Eingabe: <0>{deleteMessage}0>"
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:157
msgid "Confirm Deletion"
-msgstr ""
+msgstr "Bestätigung der Löschung"
#: apps/web/src/app/(unauthenticated)/unverified-account/page.tsx:19
msgid "Confirm email"
-msgstr ""
+msgstr "E-Mail bestätigen"
#: apps/web/src/components/forms/send-confirmation-email.tsx:53
msgid "Confirmation email sent"
-msgstr ""
+msgstr "Bestätigungs-E-Mail gesendet"
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:189
msgid "Content"
-msgstr ""
+msgstr "Inhalt"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:252
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:135
@@ -853,13 +854,13 @@ msgstr ""
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:143
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:72
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:122
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:330
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:328
msgid "Continue"
-msgstr ""
+msgstr "Fortfahren"
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:141
msgid "Continue to login"
-msgstr ""
+msgstr "Weiter zum Login"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:77
#: apps/web/src/app/(dashboard)/templates/template-direct-link-badge.tsx:31
@@ -867,181 +868,187 @@ msgstr ""
#: apps/web/src/components/(dashboard)/avatar/avatar-with-recipient.tsx:40
#: apps/web/src/components/forms/public-profile-form.tsx:117
msgid "Copied to clipboard"
-msgstr ""
+msgstr "In die Zwischenablage kopiert"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:169
msgid "Copy sharable link"
-msgstr ""
+msgstr "Kopieren Sie den teilbaren Link"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:397
msgid "Copy Shareable Link"
-msgstr ""
+msgstr "Kopiere den teilbaren Link"
#: apps/web/src/components/forms/token.tsx:288
msgid "Copy token"
-msgstr ""
+msgstr "Token kopieren"
#: apps/web/src/app/(profile)/profile-header.tsx:83
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:245
msgid "Create"
-msgstr ""
+msgstr "Erstellen"
#: apps/web/src/components/forms/v2/signup.tsx:252
msgid "Create a new account"
-msgstr ""
+msgstr "Ein neues Konto erstellen"
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:150
msgid "Create a team to collaborate with your team members."
-msgstr ""
+msgstr "Ein Team erstellen, um mit Ihren Teammitgliedern zusammenzuarbeiten."
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:106
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:111
msgid "Create account"
-msgstr ""
+msgstr "Konto erstellen"
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:310
msgid "Create and send"
-msgstr ""
+msgstr "Erstellen und senden"
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:312
msgid "Create as draft"
-msgstr ""
+msgstr "Als Entwurf erstellen"
#: apps/web/src/app/(dashboard)/templates/[id]/template-direct-link-dialog-wrapper.tsx:35
msgid "Create Direct Link"
-msgstr ""
+msgstr "Direkten Link erstellen"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:202
msgid "Create Direct Signing Link"
-msgstr ""
+msgstr "Direkten Signatur-Link erstellen"
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:189
msgid "Create document from template"
-msgstr ""
+msgstr "Dokument aus der Vorlage erstellen"
#: apps/web/src/app/(profile)/profile-header.tsx:79
msgid "Create now"
-msgstr ""
+msgstr "Jetzt erstellen"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:352
msgid "Create one automatically"
-msgstr ""
+msgstr "Einen automatisch erstellen"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:176
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:246
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:181
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:251
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:138
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:146
msgid "Create team"
-msgstr ""
+msgstr "Team erstellen"
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:226
msgid "Create Team"
-msgstr ""
+msgstr "Team erstellen"
#: apps/web/src/components/forms/token.tsx:250
#: apps/web/src/components/forms/token.tsx:259
msgid "Create token"
-msgstr ""
+msgstr "Token erstellen"
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:125
msgid "Create webhook"
-msgstr ""
+msgstr "Webhook erstellen"
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:117
msgid "Create Webhook"
-msgstr ""
+msgstr "Webhook erstellen"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:214
msgid "Create your account and start using state-of-the-art document signing."
-msgstr ""
+msgstr "Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensignieren."
#: apps/web/src/components/forms/v2/signup.tsx:256
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
-msgstr ""
+msgstr "Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensignieren. Offenes und schönes Signieren liegt in Ihrer Reichweite."
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:63
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:48
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:62
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:35
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:54
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table.tsx:65
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:57
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:276
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:56
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:274
msgid "Created"
-msgstr ""
+msgstr "Erstellt"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:35
msgid "Created At"
-msgstr ""
+msgstr "Erstellt am"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:82
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:79
msgid "Created by"
-msgstr ""
+msgstr "Erstellt von"
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:49
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:68
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:101
-#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:80
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:48
+#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:78
msgid "Created on"
+msgstr "Erstellt am"
+
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:67
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:88
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:93
+msgid "Created on {0}"
msgstr ""
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:89
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:94
-msgid "Created on <0/>"
-msgstr ""
+#~ msgid "Created on <0/>"
+#~ msgstr ""
+
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:100
+msgid "Created on{0}"
+msgstr ">>>>>>> 4ca18b99 (fix: refactor dates)"
#: apps/web/src/components/forms/password.tsx:107
msgid "Current Password"
-msgstr ""
+msgstr "Aktuelles Passwort"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:69
msgid "Current plan: {0}"
-msgstr ""
+msgstr "Aktueller Plan: {0}"
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:28
msgid "Daily"
-msgstr ""
+msgstr "Täglich"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:255
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:265
msgid "Dark Mode"
-msgstr ""
+msgstr "Dunkelmodus"
-#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:72
+#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:70
#: apps/web/src/app/(signing)/sign/[token]/date-field.tsx:148
msgid "Date"
-msgstr ""
+msgstr "Datum"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:88
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:85
msgid "Date created"
-msgstr ""
+msgstr "Erstellungsdatum"
#: apps/web/src/app/(dashboard)/settings/teams/decline-team-invitation-button.tsx:47
msgid "Decline"
-msgstr ""
+msgstr "Ablehnen"
#: apps/web/src/app/(dashboard)/settings/teams/decline-team-invitation-button.tsx:26
msgid "Declined team invitation"
-msgstr ""
+msgstr "Team-Einladung abgelehnt"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:141
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:187
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:200
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:177
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:211
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:86
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:104
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:83
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:100
#: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:91
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:90
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:119
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:109
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:122
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:105
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:121
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:109
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:167
#: apps/web/src/components/(teams)/dialogs/delete-team-member-dialog.tsx:113
msgid "Delete"
-msgstr ""
+msgstr "Löschen"
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:137
msgid "Delete account"
-msgstr ""
+msgstr "Konto löschen"
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:98
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:105
@@ -1049,257 +1056,257 @@ msgstr ""
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:97
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:104
msgid "Delete Account"
-msgstr ""
+msgstr "Konto löschen"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:135
msgid "Delete document"
-msgstr ""
+msgstr "Dokument löschen"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:85
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:98
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:105
msgid "Delete Document"
-msgstr ""
+msgstr "Dokument löschen"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:184
msgid "Delete passkey"
-msgstr ""
+msgstr "Passkey löschen"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:191
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:118
msgid "Delete team"
-msgstr ""
+msgstr "Team löschen"
#: apps/web/src/components/(teams)/dialogs/delete-team-member-dialog.tsx:73
msgid "Delete team member"
-msgstr ""
+msgstr "Teammitglied löschen"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:88
msgid "Delete the document. This action is irreversible so proceed with caution."
-msgstr ""
+msgstr "Löschen Sie das Dokument. Diese Aktion ist irreversibel, daher seien Sie vorsichtig."
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:87
msgid "Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution."
-msgstr ""
+msgstr "Löschen Sie das Benutzerkonto und seinen gesamten Inhalt. Diese Aktion ist irreversibel und wird das Abonnement kündigen, seien Sie also vorsichtig."
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:117
msgid "Delete Webhook"
-msgstr ""
+msgstr "Webhook löschen"
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:86
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
-msgstr ""
+msgstr "Löschen Sie Ihr Konto und alle Inhalte, einschließlich abgeschlossener Dokumente. Diese Aktion ist irreversibel und führt zur Kündigung Ihres Abonnements, seien Sie also vorsichtig."
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:42
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:41
msgid "Deleted"
-msgstr ""
+msgstr "Gelöscht"
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:157
msgid "Deleting account..."
-msgstr ""
+msgstr "Konto wird gelöscht..."
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:135
#~ msgid "Deleting document"
#~ msgstr "Deleting document"
-#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:77
+#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:75
msgid "Device"
-msgstr ""
+msgstr "Gerät"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:92
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:91
#: apps/web/src/app/(dashboard)/templates/template-direct-link-badge.tsx:46
msgid "direct link"
-msgstr ""
+msgstr "Direkter Link"
#: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:76
msgid "Direct link"
-msgstr ""
+msgstr "Direkter Link"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-badge.tsx:46
msgid "direct link disabled"
-msgstr ""
+msgstr "Direkter Link deaktiviert"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:363
msgid "Direct Link Signing"
-msgstr ""
+msgstr "Direkt-Link-Signatur"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:115
msgid "Direct link signing has been disabled"
-msgstr ""
+msgstr "Die direkte Links-Signatur wurde deaktiviert"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:114
msgid "Direct link signing has been enabled"
-msgstr ""
+msgstr "Die direkte Links-Signatur wurde aktiviert"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:96
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:95
msgid "Direct link templates contain one dynamic recipient placeholder. Anyone with access to this link can sign the document, and it will then appear on your documents page."
-msgstr ""
+msgstr "Direkte Linkvorlagen enthalten einen dynamischen Empfänger-Platzhalter. Jeder, der Zugriff auf diesen Link hat, kann das Dokument unterzeichnen, und es wird dann auf Ihrer Dokumenten-Seite angezeigt."
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:142
msgid "Direct template link deleted"
-msgstr ""
+msgstr "Direkter Vorlagenlink gelöscht"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:228
msgid "Direct template link usage exceeded ({0}/{1})"
-msgstr ""
+msgstr "Die Verwendung des direkten Vorlagenlinks wurde überschritten ({0}/{1})"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:419
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:417
msgid "Disable"
-msgstr ""
+msgstr "Deaktivieren"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:116
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:123
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:192
msgid "Disable 2FA"
-msgstr ""
+msgstr "2FA deaktivieren"
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:116
msgid "Disable Two Factor Authentication before deleting your account."
-msgstr ""
+msgstr "Deaktivieren Sie die Zwei-Faktor-Authentifizierung, bevor Sie Ihr Konto löschen."
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:75
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:80
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:74
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:79
msgid "Disabled"
-msgstr ""
+msgstr "Deaktiviert"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:380
msgid "Disabling direct link signing will prevent anyone from accessing the link."
-msgstr ""
+msgstr "Das Deaktivieren der direkten Link-Signatur verhindert, dass jemand auf den Link zugreifen kann."
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:75
msgid "Display your name and email in documents"
-msgstr ""
+msgstr "Zeigen Sie Ihren Namen und Ihre E-Mail in Dokumenten an"
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:63
msgid "Do you want to delete this template?"
-msgstr ""
+msgstr "Möchten Sie diese Vorlage löschen?"
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:63
msgid "Do you want to duplicate this template?"
-msgstr ""
+msgstr "Möchten Sie diese Vorlage duplizieren?"
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:122
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
-msgstr ""
+msgstr "Documenso wird <0>alle Ihre Dokumente0> löschen, zusammen mit allen abgeschlossenen Dokumenten, Unterschriften und allen anderen Ressourcen, die zu Ihrem Konto gehören."
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:122
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:119
msgid "Document"
-msgstr ""
+msgstr "Dokument"
#: apps/web/src/components/formatter/document-status.tsx:47
msgid "Document All"
-msgstr ""
+msgstr "Dokument Alle"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:134
msgid "Document Approved"
-msgstr ""
+msgstr "Dokument genehmigt"
#: apps/web/src/app/(signing)/sign/[token]/no-longer-available.tsx:40
msgid "Document Cancelled"
-msgstr ""
+msgstr "Dokument abgebrochen"
#: apps/web/src/components/formatter/document-status.tsx:29
msgid "Document completed"
-msgstr ""
+msgstr "Dokument abgeschlossen"
#: apps/web/src/app/embed/completed.tsx:16
msgid "Document Completed!"
-msgstr ""
+msgstr "Dokument abgeschlossen!"
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:142
msgid "Document created"
-msgstr ""
+msgstr "Dokument erstellt"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:51
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:147
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:59
msgid "Document deleted"
-msgstr ""
+msgstr "Dokument gelöscht"
#: apps/web/src/components/formatter/document-status.tsx:35
msgid "Document draft"
-msgstr ""
+msgstr "Dokument-Entwurf"
#: apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx:58
msgid "Document Duplicated"
-msgstr ""
+msgstr "Dokument dupliziert"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:158
-#: apps/web/src/components/document/document-history-sheet.tsx:102
+#: apps/web/src/components/document/document-history-sheet.tsx:104
msgid "Document history"
-msgstr ""
+msgstr "Dokumentverlauf"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:74
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:71
msgid "Document ID"
-msgstr ""
+msgstr "Dokument-ID"
#: apps/web/src/components/formatter/document-status.tsx:41
msgid "Document inbox"
-msgstr ""
+msgstr "Dokumenten-Posteingang"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:179
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:178
msgid "Document Limit Exceeded!"
-msgstr ""
+msgstr "Dokumentenlimit überschritten!"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:82
msgid "Document metrics"
-msgstr ""
+msgstr "Dokumentmetrik"
#: apps/web/src/app/(dashboard)/documents/move-document-dialog.tsx:49
msgid "Document moved"
-msgstr ""
+msgstr "Dokument verschoben"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:158
msgid "Document no longer available to sign"
-msgstr ""
+msgstr "Dokument steht nicht mehr zur Unterschrift zur Verfügung"
#: apps/web/src/components/formatter/document-status.tsx:23
msgid "Document pending"
-msgstr ""
+msgstr "Dokument ausstehend"
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:97
msgid "Document re-sent"
-msgstr ""
+msgstr "Dokument erneut gesendet"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:36
msgid "Document resealed"
-msgstr ""
+msgstr "Dokument wieder versiegelt"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:276
msgid "Document sent"
-msgstr ""
+msgstr "Dokument gesendet"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:132
msgid "Document Signed"
-msgstr ""
+msgstr "Dokument signiert"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:142
msgid "Document signing process will be cancelled"
-msgstr ""
+msgstr "Der Dokumentenunterzeichnungsprozess wird abgebrochen"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:78
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:75
msgid "Document status"
-msgstr ""
+msgstr "Dokumentenstatus"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:70
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:67
msgid "Document title"
-msgstr ""
+msgstr "Dokumenttitel"
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:51
msgid "Document upload disabled due to unpaid invoices"
-msgstr ""
+msgstr "Dokumenten-Upload deaktiviert aufgrund unbezahlter Rechnungen"
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:81
msgid "Document uploaded"
-msgstr ""
+msgstr "Dokument hochgeladen"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:133
msgid "Document Viewed"
-msgstr ""
+msgstr "Dokument angesehen"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:139
msgid "Document will be permanently deleted"
-msgstr ""
+msgstr "Dokument wird dauerhaft gelöscht"
#: apps/web/src/app/(dashboard)/admin/nav.tsx:65
#: apps/web/src/app/(dashboard)/admin/users/data-table-users.tsx:92
@@ -1310,25 +1317,25 @@ msgstr ""
#: apps/web/src/app/(dashboard)/documents/documents-page-view.tsx:110
#: apps/web/src/app/(profile)/p/[url]/page.tsx:166
#: apps/web/src/app/not-found.tsx:21
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:200
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:205
#: apps/web/src/components/(dashboard)/layout/desktop-nav.tsx:18
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:35
#: apps/web/src/components/ui/user-profile-timur.tsx:60
msgid "Documents"
-msgstr ""
+msgstr "Dokumente"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:113
msgid "Documents Received"
-msgstr ""
+msgstr "Dokumente empfangen"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:118
msgid "Documents Viewed"
-msgstr ""
+msgstr "Dokumente angesehen"
#: apps/web/src/app/(unauthenticated)/reset-password/[token]/page.tsx:40
#: apps/web/src/app/(unauthenticated)/signin/page.tsx:61
msgid "Don't have an account? <0>Sign up0>"
-msgstr ""
+msgstr "Haben Sie kein Konto? <0>Registrieren0>"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:111
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:120
@@ -1338,31 +1345,31 @@ msgstr ""
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:185
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:107
msgid "Download"
-msgstr ""
+msgstr "Herunterladen"
#: apps/web/src/app/(dashboard)/documents/[id]/logs/download-audit-log-button.tsx:81
msgid "Download Audit Logs"
-msgstr ""
+msgstr "Auditprotokolle herunterladen"
#: apps/web/src/app/(dashboard)/documents/[id]/logs/download-certificate-button.tsx:84
msgid "Download Certificate"
-msgstr ""
+msgstr "Zertifikat herunterladen"
#: apps/web/src/components/formatter/document-status.tsx:34
msgid "Draft"
-msgstr ""
+msgstr "Entwurf"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:41
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:46
msgid "Draft documents"
-msgstr ""
+msgstr "Entwurfdokumente"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:86
msgid "Drafted Documents"
-msgstr ""
+msgstr "Entwurfte Dokumente"
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:121
msgid "Due to an unpaid invoice, your team has been restricted. Please settle the payment to restore full access to your team."
-msgstr ""
+msgstr "Aufgrund einer unbezahlten Rechnung wurde Ihrem Team der Zugriff eingeschränkt. Bitte begleichen Sie die Zahlung, um den vollumfänglichen Zugang zu Ihrem Team wiederherzustellen."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:133
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:165
@@ -1371,24 +1378,24 @@ msgstr ""
#: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:71
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:91
msgid "Duplicate"
-msgstr ""
+msgstr "Duplizieren"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:104
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:112
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:102
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:154
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:111
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:99
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:95
#: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:62
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-email-dropdown.tsx:77
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:104
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:100
msgid "Edit"
-msgstr ""
+msgstr "Bearbeiten"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:94
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:100
msgid "Edit webhook"
-msgstr ""
+msgstr "Webhook bearbeiten"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:166
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:114
@@ -1406,79 +1413,79 @@ msgstr ""
#: apps/web/src/components/forms/signin.tsx:326
#: apps/web/src/components/forms/signup.tsx:180
msgid "Email"
-msgstr ""
+msgstr "E-Mail"
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:134
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:300
#: apps/web/src/components/forms/send-confirmation-email.tsx:82
msgid "Email address"
-msgstr ""
+msgstr "E-Mail-Adresse"
#: apps/web/src/components/forms/v2/signup.tsx:316
msgid "Email Address"
-msgstr ""
+msgstr "E-Mail-Adresse"
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/client.tsx:36
msgid "Email Confirmed!"
-msgstr ""
+msgstr "E-Mail bestätigt!"
#: apps/web/src/app/(unauthenticated)/check-email/page.tsx:20
msgid "Email sent!"
-msgstr ""
+msgstr "E-Mail gesendet!"
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:77
msgid "Email verification has been removed"
-msgstr ""
+msgstr "E-Mail-Verifizierung wurde entfernt"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-email-dropdown.tsx:33
msgid "Email verification has been resent"
-msgstr ""
+msgstr "E-Mail-Verifizierung wurde erneut gesendet"
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:153
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:262
msgid "Enable 2FA"
-msgstr ""
+msgstr "2FA aktivieren"
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:194
msgid "Enable Authenticator App"
-msgstr ""
+msgstr "Authenticator-App aktivieren"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:251
msgid "Enable direct link signing"
-msgstr ""
+msgstr "Direktlinksignierung aktivieren"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:374
msgid "Enable Direct Link Signing"
-msgstr ""
+msgstr "Direktlinksignierung aktivieren"
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:123
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:138
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:75
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:74
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:142
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:80
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:79
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:166
msgid "Enabled"
-msgstr ""
+msgstr "Aktiviert"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:38
msgid "Ends On"
-msgstr ""
+msgstr "Endet am"
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:137
msgid "Enter your email"
-msgstr ""
+msgstr "Geben Sie Ihre E-Mail-Adresse ein"
#: apps/web/src/app/(recipient)/d/[token]/configure-direct-template.tsx:135
msgid "Enter your email address to receive the completed document."
-msgstr ""
+msgstr "Geben Sie Ihre E-Mail-Adresse ein, um das abgeschlossene Dokument zu erhalten."
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:122
msgid "Enter your name"
-msgstr ""
+msgstr "Geben Sie Ihren Namen ein"
#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:278
msgid "Enter your text here"
-msgstr ""
+msgstr "Geben Sie hier Ihren Text ein"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:41
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:78
@@ -1517,59 +1524,65 @@ msgstr ""
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:54
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:101
msgid "Error"
-msgstr ""
+msgstr "Fehler"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:142
msgid "Everyone has signed"
-msgstr ""
+msgstr "Alle haben unterschrieben"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:166
msgid "Everyone has signed! You will receive an Email copy of the signed document."
-msgstr ""
+msgstr "Alle haben unterschrieben! Sie werden eine E-Mail-Kopie des unterzeichneten Dokuments erhalten."
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:232
msgid "Exceeded timeout"
-msgstr ""
+msgstr "Zeitüberschreitung überschritten"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:114
msgid "Expired"
-msgstr ""
+msgstr "Abgelaufen"
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:73
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:106
-msgid "Expires on"
-msgstr ""
+#~ msgid "Expires on"
+#~ msgstr ""
+
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:71
+msgid "Expires on {0}"
+msgstr ">>>>>>> 4ca18b99 (fix: refactor dates)"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:75
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:108
#~ msgid "Expires on <0/>"
-#~ msgstr ""
+#~ msgstr "Expires on <0/>"
+
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:107
+msgid "Expires on{0}"
+msgstr ""
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:42
msgid "Failed to reseal document"
-msgstr ""
+msgstr "Dokument konnte nicht erneut versiegelt werden"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:125
msgid "Failed to update recipient"
-msgstr ""
+msgstr "Empfänger konnte nicht aktualisiert werden"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:82
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:88
msgid "Failed to update webhook"
-msgstr ""
+msgstr "Webhook konnte nicht aktualisiert werden"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:190
msgid "Fields"
-msgstr ""
+msgstr "Felder"
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:125
msgid "File cannot be larger than {APP_DOCUMENT_UPLOAD_SIZE_LIMIT}MB"
-msgstr ""
+msgstr "Die Datei darf nicht größer als {APP_DOCUMENT_UPLOAD_SIZE_LIMIT} MB sein"
#: apps/web/src/app/(unauthenticated)/forgot-password/page.tsx:21
#: apps/web/src/components/forms/signin.tsx:358
msgid "Forgot your password?"
-msgstr ""
+msgstr "Haben Sie Ihr Passwort vergessen?"
#: apps/web/src/app/(recipient)/d/[token]/sign-direct-template.tsx:326
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:193
@@ -1578,7 +1591,7 @@ msgstr ""
#: apps/web/src/components/forms/profile.tsx:110
#: apps/web/src/components/forms/v2/signup.tsx:300
msgid "Full Name"
-msgstr ""
+msgstr "Vollständiger Name"
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:132
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:76
@@ -1586,7 +1599,7 @@ msgstr ""
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:43
#: apps/web/src/components/(teams)/settings/layout/mobile-nav.tsx:51
msgid "General"
-msgstr ""
+msgstr "Allgemein"
#: apps/web/src/app/(profile)/p/[url]/not-found.tsx:30
#: apps/web/src/app/(recipient)/d/[token]/not-found.tsx:33
@@ -1594,53 +1607,53 @@ msgstr ""
#: apps/web/src/app/(teams)/t/[teamUrl]/not-found.tsx:32
#: apps/web/src/components/partials/not-found.tsx:67
msgid "Go Back"
-msgstr ""
+msgstr "Zurück"
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/client.tsx:48
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/page.tsx:73
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/page.tsx:101
#: apps/web/src/app/(unauthenticated)/verify-email/page.tsx:38
msgid "Go back home"
-msgstr ""
+msgstr "Zurück nach Hause"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:223
#: apps/web/src/app/(signing)/sign/[token]/no-longer-available.tsx:57
msgid "Go Back Home"
-msgstr ""
+msgstr "Zurück nach Hause"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:76
msgid "Go to owner"
-msgstr ""
+msgstr "Zum Eigentümer gehen"
#: apps/web/src/app/(profile)/p/[url]/page.tsx:147
msgid "Go to your <0>public profile settings0> to add documents."
-msgstr ""
+msgstr "Gehen Sie zu Ihren <0>öffentlichen Profileinstellungen0>, um Dokumente hinzuzufügen."
#: apps/web/src/app/(dashboard)/settings/profile/page.tsx:29
msgid "Here you can edit your personal details."
-msgstr ""
+msgstr "Hier können Sie Ihre persönlichen Daten bearbeiten."
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:35
msgid "Here you can manage your password and security settings."
-msgstr ""
+msgstr "Hier können Sie Ihre Passwort- und Sicherheitseinstellungen verwalten."
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:206
msgid "Here's how it works:"
-msgstr ""
+msgstr "So funktioniert es:"
#: apps/web/src/components/ui/user-profile-timur.tsx:49
msgid "Hey I’m Timur"
-msgstr ""
+msgstr "Hey, ich bin Timur"
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:187
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:200
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:155
msgid "Hide"
-msgstr ""
+msgstr "Ausblenden"
-#: apps/web/src/components/document/document-history-sheet.tsx:109
+#: apps/web/src/components/document/document-history-sheet.tsx:111
msgid "Hide additional information"
-msgstr ""
+msgstr "Zusätzliche Informationen ausblenden"
#: apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx:40
#~ msgid "I am the owner of this document"
@@ -1649,332 +1662,336 @@ msgstr ""
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:186
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:173
msgid "I'm sure! Delete it"
-msgstr ""
+msgstr "Ich bin mir sicher! Löschen"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:103
msgid "If they accept this request, the team will be transferred to their account."
-msgstr ""
+msgstr "Wenn sie diese Anfrage akzeptieren, wird das Team auf ihr Konto übertragen."
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:196
msgid "If you do not want to use the authenticator prompted, you can close it, which will then display the next available authenticator."
-msgstr ""
+msgstr "Wenn Sie die angegebene Authentifizierung nicht verwenden möchten, können Sie sie schließen, wodurch die nächste verfügbare Authentifizierung angezeigt wird."
#: apps/web/src/app/(unauthenticated)/unverified-account/page.tsx:30
msgid "If you don't find the confirmation link in your inbox, you can request a new one below."
-msgstr ""
+msgstr "Wenn Sie den Bestätigungslink nicht in Ihrem Posteingang finden, können Sie unten einen neuen anfordern."
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:213
msgid "If your authenticator app does not support QR codes, you can use the following code instead:"
-msgstr ""
+msgstr "Wenn Ihre Authenticator-App keine QR-Codes unterstützt, können Sie stattdessen den folgenden Code verwenden:"
#: apps/web/src/components/formatter/document-status.tsx:40
msgid "Inbox"
-msgstr ""
+msgstr "Posteingang"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:47
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:52
msgid "Inbox documents"
-msgstr ""
+msgstr "Posteingang Dokumente"
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:62
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:53
msgid "Information"
-msgstr ""
+msgstr "Information"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:78
msgid "Inserted"
-msgstr ""
+msgstr "Eingefügt"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:60
msgid "Instance Stats"
-msgstr ""
+msgstr "Instanzstatistiken"
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:151
msgid "Invalid code. Please try again."
-msgstr ""
+msgstr "Ungültiger Code. Bitte versuchen Sie es erneut."
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:100
msgid "Invalid file"
-msgstr ""
+msgstr "Ungültige Datei"
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:33
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:36
msgid "Invalid link"
-msgstr ""
+msgstr "Ungültiger Link"
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:39
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:39
msgid "Invalid token"
-msgstr ""
+msgstr "Ungültiges Token"
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:123
msgid "Invitation accepted!"
-msgstr ""
+msgstr "Einladung akzeptiert!"
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:118
msgid "Invitation declined"
-msgstr ""
+msgstr "Einladung abgelehnt"
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:82
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:80
msgid "Invitation has been deleted"
-msgstr ""
+msgstr "Einladung wurde gelöscht"
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:65
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:63
msgid "Invitation has been resent"
-msgstr ""
+msgstr "Einladung wurde erneut gesendet"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:374
msgid "Invite"
-msgstr ""
+msgstr "Einladen"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:250
msgid "Invite member"
-msgstr ""
+msgstr "Mitglied einladen"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:275
msgid "Invite Members"
-msgstr ""
+msgstr "Mitglieder einladen"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:258
msgid "Invite team members"
-msgstr ""
+msgstr "Teammitglieder einladen"
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:130
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:128
msgid "Invited At"
-msgstr ""
+msgstr "Eingeladen am"
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:55
msgid "Invoice"
-msgstr ""
+msgstr "Rechnung"
#: apps/web/src/app/(profile)/p/[url]/page.tsx:134
msgid "It looks like {0} hasn't added any documents to their profile yet."
-msgstr ""
+msgstr "Es sieht so aus, als ob {0} noch keine Dokumente zu ihrem Profil hinzugefügt hat."
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/page.tsx:93
msgid "It seems that the provided token has expired. We've just sent you another token, please check your email and try again."
-msgstr ""
+msgstr "Es scheint, dass das bereitgestellte Token abgelaufen ist. Wir haben Ihnen gerade ein weiteres Token gesendet, bitte überprüfen Sie Ihre E-Mails und versuchen Sie es erneut."
#: apps/web/src/app/(unauthenticated)/verify-email/page.tsx:30
msgid "It seems that there is no token provided, if you are trying to verify your email please follow the link in your email."
-msgstr ""
+msgstr "Es scheint, dass kein Token bereitgestellt wurde. Wenn Sie versuchen, Ihre E-Mail zu verifizieren, folgen Sie bitte dem Link in Ihrer E-Mail."
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/page.tsx:40
msgid "It seems that there is no token provided. Please check your email and try again."
+msgstr "Es scheint, dass kein Token bereitgestellt wurde. Bitte überprüfen Sie Ihre E-Mail und versuchen Sie es erneut."
+
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:286
+msgid "Language"
msgstr ""
#: apps/web/src/components/(dashboard)/period-selector/period-selector.tsx:61
msgid "Last 14 days"
-msgstr ""
+msgstr "Die letzten 14 Tage"
#: apps/web/src/components/(dashboard)/period-selector/period-selector.tsx:64
msgid "Last 30 days"
-msgstr ""
+msgstr "Die letzten 30 Tage"
#: apps/web/src/components/(dashboard)/period-selector/period-selector.tsx:58
msgid "Last 7 days"
-msgstr ""
+msgstr "Die letzten 7 Tage"
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:52
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:41
msgid "Last modified"
-msgstr ""
+msgstr "Zuletzt geändert"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:94
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:91
msgid "Last updated"
-msgstr ""
+msgstr "Zuletzt aktualisiert"
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:53
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:52
msgid "Last updated at"
-msgstr ""
+msgstr "Zuletzt aktualisiert am"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table.tsx:71
msgid "Last used"
-msgstr ""
+msgstr "Zuletzt verwendet"
#: apps/web/src/components/(teams)/dialogs/leave-team-dialog.tsx:111
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:119
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:117
msgid "Leave"
-msgstr ""
+msgstr "Verlassen"
#: apps/web/src/components/(teams)/dialogs/leave-team-dialog.tsx:73
msgid "Leave team"
-msgstr ""
+msgstr "Team verlassen"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:254
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:264
msgid "Light Mode"
-msgstr ""
+msgstr "Lichtmodus"
#: apps/web/src/app/(profile)/profile-header.tsx:71
msgid "Like to have your own public profile with agreements?"
-msgstr ""
+msgstr "Möchten Sie Ihr eigenes öffentliches Profil mit Vereinbarungen haben?"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:216
msgid "Link template"
-msgstr ""
+msgstr "Vorlage verlinken"
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:80
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:85
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:79
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:84
msgid "Listening to {0}"
-msgstr ""
+msgstr "Anhören von {0}"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx:100
msgid "Load older activity"
-msgstr ""
+msgstr "Ältere Aktivitäten laden"
#: apps/web/src/app/(dashboard)/documents/[id]/loading.tsx:33
msgid "Loading document..."
-msgstr ""
+msgstr "Dokument wird geladen..."
#: apps/web/src/app/(dashboard)/documents/[id]/loading.tsx:20
#: apps/web/src/app/(dashboard)/documents/[id]/sent/page.tsx:19
#: apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx:91
msgid "Loading Document..."
-msgstr ""
+msgstr "Dokument wird geladen..."
#: apps/web/src/app/(dashboard)/documents/move-document-dialog.tsx:92
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:91
msgid "Loading teams..."
-msgstr ""
+msgstr "Teams werden geladen..."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx:100
msgid "Loading..."
-msgstr ""
+msgstr "Wird geladen..."
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:54
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-account.tsx:78
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:72
msgid "Login"
-msgstr ""
+msgstr "Anmelden"
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:103
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:101
msgid "Manage"
-msgstr ""
+msgstr "Verwalten"
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:88
msgid "Manage {0}'s profile"
-msgstr ""
+msgstr "Verwalten Sie das Profil von {0}"
#: apps/web/src/app/(dashboard)/settings/teams/page.tsx:26
msgid "Manage all teams you are currently associated with."
-msgstr ""
+msgstr "Verwalten Sie alle Teams, mit denen Sie derzeit verbunden sind."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:343
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
-msgstr ""
+msgstr "Details für diese öffentliche Vorlage verwalten"
#: apps/web/src/app/(dashboard)/templates/[id]/template-direct-link-dialog-wrapper.tsx:33
msgid "Manage Direct Link"
-msgstr ""
+msgstr "Direktlink verwalten"
#: apps/web/src/app/(dashboard)/admin/documents/page.tsx:13
msgid "Manage documents"
-msgstr ""
+msgstr "Dokumente verwalten"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:118
msgid "Manage passkeys"
-msgstr ""
+msgstr "Passkeys verwalten"
#: apps/web/src/components/(teams)/team-billing-portal-button.tsx:41
msgid "Manage subscription"
-msgstr ""
+msgstr "Abonnement verwalten"
#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:66
msgid "Manage Subscription"
-msgstr ""
+msgstr "Abonnement verwalten"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:24
msgid "Manage subscriptions"
-msgstr ""
+msgstr "Abonnements verwalten"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:81
msgid "Manage team subscription."
-msgstr ""
+msgstr "Teamabonnement verwalten."
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:163
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:168
msgid "Manage teams"
-msgstr ""
+msgstr "Teams verwalten"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:367
msgid "Manage the direct link signing for this template"
-msgstr ""
+msgstr "Die direkte Linkunterzeichnung für diese Vorlage verwalten"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/members/page.tsx:32
msgid "Manage the members or invite new members."
-msgstr ""
+msgstr "Die Mitglieder verwalten oder neue Mitglieder einladen."
#: apps/web/src/app/(dashboard)/admin/users/page.tsx:35
msgid "Manage users"
-msgstr ""
+msgstr "Benutzer verwalten"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:33
msgid "Manage your passkeys."
-msgstr ""
+msgstr "Verwalten Sie Ihre Passkeys."
#: apps/web/src/app/(dashboard)/admin/site-settings/page.tsx:27
msgid "Manage your site settings here"
-msgstr ""
+msgstr "Verwalten Sie hier Ihre Seiteneinstellungen"
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:120
msgid "Mark as Viewed"
-msgstr ""
+msgstr "Als angesehen markieren"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:137
msgid "MAU (created document)"
-msgstr ""
+msgstr "MAU (erstellt Dokument)"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:143
msgid "MAU (had document completed)"
-msgstr ""
+msgstr "MAU (hat Dokument abgeschlossen)"
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:92
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:115
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:90
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:113
msgid "Member Since"
-msgstr ""
+msgstr "Mitglied seit"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/members/page.tsx:31
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:71
#: apps/web/src/components/(teams)/settings/layout/mobile-nav.tsx:79
msgid "Members"
-msgstr ""
+msgstr "Mitglieder"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:40
msgid "Modify recipients"
-msgstr ""
+msgstr "Empfänger ändern"
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:30
msgid "Monthly"
-msgstr ""
+msgstr "Monatlich"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:138
msgid "Monthly Active Users: Users that created at least one Document"
-msgstr ""
+msgstr "Monatlich aktive Benutzer: Benutzer, die mindestens ein Dokument erstellt haben"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:145
msgid "Monthly Active Users: Users that had at least one of their documents completed"
-msgstr ""
+msgstr "Monatlich aktive Benutzer: Benutzer, die mindestens eines ihrer Dokumente abgeschlossen haben"
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:122
msgid "Move"
-msgstr ""
+msgstr "Verschieben"
#: apps/web/src/app/(dashboard)/documents/move-document-dialog.tsx:78
msgid "Move Document to Team"
-msgstr ""
+msgstr "Dokument in Team verschieben"
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:77
msgid "Move Template to Team"
-msgstr ""
+msgstr "Vorlage in Team verschieben"
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:172
#: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:82
msgid "Move to Team"
-msgstr ""
+msgstr "In Team verschieben"
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:122
msgid "Moving..."
-msgstr ""
+msgstr "Verschieben..."
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:44
msgid "My templates"
-msgstr ""
+msgstr "Meine Vorlagen"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:148
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:99
@@ -1989,122 +2006,122 @@ msgstr ""
#: apps/web/src/components/(teams)/dialogs/update-team-email-dialog.tsx:141
#: apps/web/src/components/forms/signup.tsx:164
msgid "Name"
-msgstr ""
+msgstr "Name"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:210
msgid "Need to sign documents?"
-msgstr ""
+msgstr "Müssen Dokumente signieren?"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table.tsx:76
msgid "Never"
-msgstr ""
+msgstr "Niemals"
#: apps/web/src/components/forms/token.tsx:224
msgid "Never expire"
-msgstr ""
+msgstr "Nie ablaufen"
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:176
msgid "New team owner"
-msgstr ""
+msgstr "Neuer Teamowner"
#: apps/web/src/app/(dashboard)/templates/new-template-dialog.tsx:96
#: apps/web/src/app/(dashboard)/templates/new-template-dialog.tsx:103
msgid "New Template"
-msgstr ""
+msgstr "Neue Vorlage"
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:416
#: apps/web/src/app/embed/sign/[[...url]]/client.tsx:293
#: apps/web/src/components/forms/v2/signup.tsx:509
msgid "Next"
-msgstr ""
+msgstr "Nächster"
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:58
msgid "Next field"
-msgstr ""
+msgstr "Nächstes Feld"
#: apps/web/src/app/(dashboard)/documents/empty-state.tsx:24
msgid "No active drafts"
-msgstr ""
+msgstr "Keine aktiven Entwürfe"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:42
msgid "No payment required"
-msgstr ""
+msgstr "Keine Zahlung erforderlich"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:125
msgid "No public profile templates found"
-msgstr ""
+msgstr "Keine Vorlagen für das öffentliche Profil gefunden"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx:108
msgid "No recent activity"
-msgstr ""
+msgstr "Keine aktuellen Aktivitäten"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:55
msgid "No recipients"
-msgstr ""
+msgstr "Keine Empfänger"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:195
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:200
msgid "No results found."
-msgstr ""
+msgstr "Keine Ergebnisse gefunden."
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/page.tsx:37
msgid "No token provided"
-msgstr ""
+msgstr "Kein Token bereitgestellt"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:286
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:284
msgid "No valid direct templates found"
-msgstr ""
+msgstr "Keine gültigen direkten Vorlagen gefunden"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:293
msgid "No valid recipients found"
-msgstr ""
+msgstr "Keine gültigen Empfänger gefunden"
#: apps/web/src/app/(dashboard)/admin/users/[id]/multiselect-role-combobox.tsx:64
#: apps/web/src/components/(dashboard)/settings/webhooks/trigger-multiselect-combobox.tsx:77
msgid "No value found."
-msgstr ""
+msgstr "Kein Wert gefunden."
#: apps/web/src/app/(unauthenticated)/forgot-password/page.tsx:25
msgid "No worries, it happens! Enter your email and we'll email you a special link to reset your password."
-msgstr ""
+msgstr "Keine Sorge, das passiert! Geben Sie Ihre E-Mail ein, und wir senden Ihnen einen speziellen Link zum Zurücksetzen Ihres Passworts."
#: apps/web/src/components/forms/signin.tsx:160
msgid "Not supported"
-msgstr ""
+msgstr "Nicht unterstützt"
#: apps/web/src/app/(dashboard)/documents/empty-state.tsx:19
#: apps/web/src/app/(dashboard)/documents/empty-state.tsx:34
msgid "Nothing to do"
-msgstr ""
+msgstr "Nichts zu tun"
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:128
msgid "On this page, you can create a new webhook."
-msgstr ""
+msgstr "Auf dieser Seite können Sie einen neuen Webhook erstellen."
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:27
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:26
msgid "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation1>."
-msgstr ""
+msgstr "Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Siehe auch unsere <1>Dokumentation1>."
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:61
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:60
msgid "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here1>"
-msgstr ""
+msgstr "Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Sie können unsere Swagger-Dokumentation <1>hier1> einsehen"
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:30
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:35
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:29
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:34
msgid "On this page, you can create new Webhooks and manage the existing ones."
-msgstr ""
+msgstr "Auf dieser Seite können Sie neue Webhooks erstellen und die vorhandenen verwalten."
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:95
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:101
msgid "On this page, you can edit the webhook and its settings."
-msgstr ""
+msgstr "Auf dieser Seite können Sie den Webhook und seine Einstellungen bearbeiten."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:134
msgid "Once confirmed, the following will occur:"
-msgstr ""
+msgstr "Sobald dies bestätigt ist, wird Folgendes geschehen:"
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:224
msgid "Once you have scanned the QR code or entered the code manually, enter the code provided by your authenticator app below."
-msgstr ""
+msgstr "Sobald Sie den QR-Code gescannt oder den Code manuell eingegeben haben, geben Sie den von Ihrer Authentifizierungs-App bereitgestellten Code unten ein."
#: apps/web/src/app/(profile)/p/[url]/not-found.tsx:19
#: apps/web/src/app/(recipient)/d/[token]/not-found.tsx:19
@@ -2112,252 +2129,252 @@ msgstr ""
#: apps/web/src/app/(teams)/t/[teamUrl]/not-found.tsx:19
#: apps/web/src/components/partials/not-found.tsx:49
msgid "Oops! Something went wrong."
-msgstr ""
+msgstr "Hoppla! Etwas ist schief gelaufen."
#: apps/web/src/components/(dashboard)/avatar/stack-avatars-with-tooltip.tsx:97
msgid "Opened"
-msgstr ""
+msgstr "Geöffnet"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:337
#: apps/web/src/components/forms/signup.tsx:243
#: apps/web/src/components/forms/signup.tsx:267
#: apps/web/src/components/forms/v2/signup.tsx:371
msgid "Or"
-msgstr ""
+msgstr "Oder"
#: apps/web/src/components/forms/signin.tsx:378
msgid "Or continue with"
-msgstr ""
+msgstr "Oder fahren Sie fort mit"
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:289
msgid "Otherwise, the document will be created as a draft."
-msgstr ""
+msgstr "Andernfalls wird das Dokument als Entwurf erstellt."
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:87
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:76
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:86
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:81
msgid "Owner"
-msgstr ""
+msgstr "Besitzer"
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:79
msgid "Paid"
-msgstr ""
+msgstr "Bezahlt"
#: apps/web/src/components/forms/signin.tsx:423
msgid "Passkey"
-msgstr ""
+msgstr "Passkey"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:229
msgid "Passkey already exists for the provided authenticator"
-msgstr ""
+msgstr "Passkey existiert bereits für den bereitgestellten Authentifikator"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:219
msgid "Passkey creation cancelled due to one of the following reasons:"
-msgstr ""
+msgstr "Die Erstellung der Passkey wurde aus einem der folgenden Gründe abgebrochen:"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:88
msgid "Passkey has been removed"
-msgstr ""
+msgstr "Die Passkey wurde entfernt"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:68
msgid "Passkey has been updated"
-msgstr ""
+msgstr "Die Passkey wurde aktualisiert"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:177
msgid "Passkey name"
-msgstr ""
+msgstr "Passkey-Name"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:106
#: apps/web/src/app/(dashboard)/settings/security/passkeys/page.tsx:32
msgid "Passkeys"
-msgstr ""
+msgstr "Passkeys"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:158
msgid "Passkeys allow you to sign in and authenticate using biometrics, password managers, etc."
-msgstr ""
+msgstr "Passkeys ermöglichen das Anmelden und die Authentifizierung mit biometrischen Daten, Passwortmanagern usw."
#: apps/web/src/components/forms/signin.tsx:161
msgid "Passkeys are not supported on this browser"
-msgstr ""
+msgstr "Passkeys werden von diesem Browser nicht unterstützt"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:65
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:70
#: apps/web/src/components/forms/password.tsx:123
#: apps/web/src/components/forms/reset-password.tsx:110
#: apps/web/src/components/forms/signin.tsx:344
#: apps/web/src/components/forms/signup.tsx:196
#: apps/web/src/components/forms/v2/signup.tsx:332
msgid "Password"
-msgstr ""
+msgstr "Passwort"
#: apps/web/src/components/forms/password.tsx:71
#: apps/web/src/components/forms/reset-password.tsx:72
msgid "Password updated"
-msgstr ""
+msgstr "Passwort aktualisiert"
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table-actions.tsx:46
msgid "Pay"
-msgstr ""
+msgstr "Bezahle"
#: apps/web/src/components/(teams)/dialogs/create-team-checkout-dialog.tsx:89
msgid "Payment is required to finalise the creation of your team."
-msgstr ""
+msgstr "Zahlung ist erforderlich, um die Erstellung Ihres Teams abzuschließen."
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:82
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:107
msgid "Payment overdue"
-msgstr ""
+msgstr "Zahlung überfällig"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:115
#: apps/web/src/components/(teams)/tables/teams-member-page-data-table.tsx:82
#: apps/web/src/components/(teams)/tables/user-settings-teams-page-data-table.tsx:77
#: apps/web/src/components/formatter/document-status.tsx:22
msgid "Pending"
-msgstr ""
+msgstr "Ausstehend"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:46
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:51
msgid "Pending documents"
-msgstr ""
+msgstr "Ausstehende Dokumente"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:89
msgid "Pending Documents"
-msgstr ""
+msgstr "Ausstehende Dokumente"
#: apps/web/src/app/(dashboard)/settings/teams/team-invitations.tsx:62
msgid "Pending invitations"
-msgstr ""
+msgstr "Ausstehende Einladungen"
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table-actions.tsx:28
msgid "Pending team deleted."
-msgstr ""
+msgstr "Ausstehendes Team gelöscht."
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:129
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:134
msgid "Personal"
-msgstr ""
+msgstr "Persönlich"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:72
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:77
msgid "Personal Account"
-msgstr ""
+msgstr "Persönliches Konto"
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:152
msgid "Pick a password"
-msgstr ""
+msgstr "Wählen Sie ein Passwort"
#: apps/web/src/components/ui/user-profile-timur.tsx:53
msgid "Pick any of the following agreements below and start signing to get started"
-msgstr ""
+msgstr "Wählen Sie eine der folgenden Vereinbarungen aus und beginnen Sie das Signieren, um loszulegen"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:212
msgid "Please check the CSV file and make sure it is according to our format"
-msgstr ""
+msgstr "Bitte prüfen Sie die CSV-Datei und stellen Sie sicher, dass sie unserem Format entspricht"
#: apps/web/src/app/(unauthenticated)/reset-password/[token]/page.tsx:34
msgid "Please choose your new password"
-msgstr ""
+msgstr "Bitte wählen Sie Ihr neues Passwort"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:174
msgid "Please contact support if you would like to revert this action."
-msgstr ""
+msgstr "Bitte kontaktieren Sie den Support, wenn Sie diese Aktion rückgängig machen möchten."
#: apps/web/src/components/forms/token.tsx:175
msgid "Please enter a meaningful name for your token. This will help you identify it later."
-msgstr ""
+msgstr "Bitte geben Sie einen aussagekräftigen Namen für Ihr Token ein. Dies wird Ihnen helfen, es später zu identifizieren."
#: apps/web/src/app/(signing)/sign/[token]/form.tsx:127
msgid "Please mark as viewed to complete"
-msgstr ""
+msgstr "Bitte als angesehen markieren, um abzuschließen"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:457
msgid "Please note that proceeding will remove direct linking recipient and turn it into a placeholder."
-msgstr ""
+msgstr "Bitte beachten Sie, dass das Fortfahren den direkten Linkempfänger entfernt und ihn in einen Platzhalter umwandelt."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:128
msgid "Please note that this action is <0>irreversible0>."
-msgstr ""
+msgstr "Bitte beachten Sie, dass diese Aktion <0>irreversibel0> ist."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:119
msgid "Please note that this action is <0>irreversible0>. Once confirmed, this document will be permanently deleted."
-msgstr ""
+msgstr "Bitte beachten Sie, dass diese Aktion <0>irreversibel0> ist. Nachdem dies bestätigt wurde, wird dieses Dokument dauerhaft gelöscht."
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:67
msgid "Please note that this action is irreversible. Once confirmed, your template will be permanently deleted."
-msgstr ""
+msgstr "Bitte beachten Sie, dass diese Aktion irreversibel ist. Sobald sie bestätigt wird, wird Ihre Vorlage dauerhaft gelöscht."
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:133
msgid "Please note that this action is irreversible. Once confirmed, your token will be permanently deleted."
-msgstr ""
+msgstr "Bitte beachten Sie, dass diese Aktion irreversibel ist. Sobald sie bestätigt wird, wird Ihr Token dauerhaft gelöscht."
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:121
msgid "Please note that this action is irreversible. Once confirmed, your webhook will be permanently deleted."
-msgstr ""
+msgstr "Bitte beachten Sie, dass Sie den Zugriff auf alle Dokumente, die mit diesem Team verbunden sind, verlieren werden und alle Mitglieder entfernt und benachrichtigt werden."
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:130
msgid "Please note that you will lose access to all documents associated with this team & all the members will be removed and notified"
-msgstr ""
+msgstr "Bitte beachten Sie, dass Sie den Zugriff auf alle mit diesem Team verbundenen Dokumente verlieren werden und alle Mitglieder entfernt und benachrichtigt werden."
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:127
msgid "Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support."
-msgstr ""
+msgstr "Bitte geben Sie ein Token von der Authentifizierungs-App oder einen Backup-Code an. Wenn Sie keinen Backup-Code haben, kontaktieren Sie bitte den Support."
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:120
msgid "Please provide a token from your authenticator, or a backup code."
-msgstr ""
+msgstr "Bitte geben Sie ein Token von Ihrem Authentifizierer oder einen Backup-Code an."
#: apps/web/src/components/forms/send-confirmation-email.tsx:64
msgid "Please try again and make sure you enter the correct email address."
-msgstr ""
+msgstr "Bitte versuchen Sie es erneut und stellen Sie sicher, dass Sie die korrekte E-Mail-Adresse eingeben."
#: apps/web/src/components/forms/signin.tsx:203
msgid "Please try again later or login using your normal details"
-msgstr ""
+msgstr "Bitte versuchen Sie es später erneut oder melden Sie sich mit Ihren normalen Daten an"
#: apps/web/src/app/(dashboard)/templates/new-template-dialog.tsx:80
msgid "Please try again later."
-msgstr ""
+msgstr "Bitte versuchen Sie es später noch einmal."
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:134
msgid "Please type <0>{0}0> to confirm."
-msgstr ""
+msgstr "Bitte geben Sie <0>{0}0> ein, um zu bestätigen."
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:209
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:214
msgid "Preferences"
-msgstr ""
+msgstr "Einstellungen"
#: apps/web/src/app/(recipient)/d/[token]/direct-template.tsx:61
msgid "Preview and configure template."
-msgstr ""
+msgstr "Vorschau und Vorlagen konfigurieren."
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:106
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:105
#: apps/web/src/components/formatter/template-type.tsx:22
msgid "Private"
-msgstr ""
+msgstr "Privat"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:116
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:115
msgid "Private templates can only be modified and viewed by you."
-msgstr ""
+msgstr "Private Vorlagen können nur von Ihnen bearbeitet und angezeigt werden."
#: apps/web/src/app/(dashboard)/settings/profile/page.tsx:28
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:64
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:69
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:36
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:39
msgid "Profile"
-msgstr ""
+msgstr "Profil"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:184
msgid "Profile is currently <0>hidden0>."
-msgstr ""
+msgstr "Profil ist derzeit <0>versteckt0>."
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:172
msgid "Profile is currently <0>visible0>."
-msgstr ""
+msgstr "Profil ist derzeit <0>sichtbar0>."
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:72
#: apps/web/src/components/forms/profile.tsx:72
msgid "Profile updated"
-msgstr ""
+msgstr "Profil aktualisiert"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:79
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:78
#: apps/web/src/components/formatter/template-type.tsx:27
msgid "Public"
-msgstr ""
+msgstr "Öffentlich"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:42
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:50
@@ -2365,76 +2382,76 @@ msgstr ""
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:57
#: apps/web/src/components/(teams)/settings/layout/mobile-nav.tsx:65
msgid "Public Profile"
-msgstr ""
+msgstr "Öffentliches Profil"
#: apps/web/src/components/forms/public-profile-form.tsx:146
msgid "Public profile URL"
-msgstr ""
+msgstr "Öffentlicher Profil-URL"
#: apps/web/src/components/forms/v2/signup.tsx:438
msgid "Public profile username"
-msgstr ""
+msgstr "Öffentlicher Profil-Benutzername"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:83
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:82
msgid "Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile."
-msgstr ""
+msgstr "Öffentliche Vorlagen sind mit Ihrem öffentlichen Profil verbunden. Änderungen an öffentlichen Vorlagen erscheinen auch in Ihrem öffentlichen Profil."
#: apps/web/src/app/(signing)/sign/[token]/signing-field-container.tsx:144
msgid "Read only field"
-msgstr ""
+msgstr "Nur-Lese-Feld"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:90
msgid "Ready"
-msgstr ""
+msgstr "Bereit"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:62
msgid "Reauthentication is required to sign this field"
-msgstr ""
+msgstr "Eine erneute Authentifizierung ist erforderlich, um dieses Feld zu unterschreiben"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx:57
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:130
msgid "Recent activity"
-msgstr ""
+msgstr "Aktuelle Aktivitäten"
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:73
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:69
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:280
msgid "Recipient"
-msgstr ""
+msgstr "Empfänger"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:118
msgid "Recipient updated"
-msgstr ""
+msgstr "Empfänger aktualisiert"
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:68
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:66
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:34
msgid "Recipients"
-msgstr ""
+msgstr "Empfänger"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:102
msgid "Recipients metrics"
-msgstr ""
+msgstr "Empfängermetriken"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:164
msgid "Recipients will still retain their copy of the document"
-msgstr ""
+msgstr "Empfänger behalten weiterhin ihre Kopie des Dokuments"
#: apps/web/src/components/forms/2fa/recovery-code-list.tsx:26
msgid "Recovery code copied"
-msgstr ""
+msgstr "Wiederherstellungscode kopiert"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:84
msgid "Recovery codes"
-msgstr ""
+msgstr "Wiederherstellungscodes"
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:78
#: apps/web/src/components/forms/signup.tsx:93
#: apps/web/src/components/forms/v2/signup.tsx:127
msgid "Registration Successful"
-msgstr ""
+msgstr "Registrierung erfolgreich"
#: apps/web/src/app/(unauthenticated)/forgot-password/page.tsx:34
msgid "Remembered your password? <0>Sign In0>"
-msgstr ""
+msgstr "Haben Sie Ihr Passwort vergessen? <0>Einloggen0>"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:193
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:431
@@ -2443,252 +2460,252 @@ msgstr ""
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-email-dropdown.tsx:89
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:159
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table-actions.tsx:54
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:168
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:169
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:166
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:167
#: apps/web/src/components/forms/avatar-image.tsx:169
msgid "Remove"
-msgstr ""
+msgstr "Entfernen"
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:108
msgid "Remove team email"
-msgstr ""
+msgstr "Team-E-Mail entfernen"
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:166
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:164
msgid "Remove team member"
-msgstr ""
+msgstr "Teammitglied entfernen"
#: apps/web/src/components/forms/password.tsx:139
#: apps/web/src/components/forms/reset-password.tsx:126
msgid "Repeat Password"
-msgstr ""
+msgstr "Passwort wiederholen"
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:282
msgid "Request transfer"
-msgstr ""
+msgstr "Übertragung anfordern"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:61
msgid "Reseal document"
-msgstr ""
+msgstr "Dokument wieder versiegeln"
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:118
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:156
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:154
msgid "Resend"
-msgstr ""
+msgstr "Erneut senden"
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:128
msgid "Resend Confirmation Email"
-msgstr ""
+msgstr "Bestätigungs-E-Mail erneut senden"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-email-dropdown.tsx:67
msgid "Resend verification"
-msgstr ""
+msgstr "Bestätigung erneut senden"
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:164
#: apps/web/src/components/forms/public-profile-form.tsx:267
msgid "Reset"
-msgstr ""
+msgstr "Zurücksetzen"
#: apps/web/src/components/forms/forgot-password.tsx:56
msgid "Reset email sent"
-msgstr ""
+msgstr "Zurücksetzungs-E-Mail gesendet"
#: apps/web/src/app/(unauthenticated)/reset-password/[token]/page.tsx:30
#: apps/web/src/components/forms/forgot-password.tsx:93
#: apps/web/src/components/forms/reset-password.tsx:138
msgid "Reset Password"
-msgstr ""
+msgstr "Passwort zurücksetzen"
#: apps/web/src/components/forms/reset-password.tsx:138
msgid "Resetting Password..."
-msgstr ""
+msgstr "Passwort wird zurückgesetzt..."
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:99
msgid "Resolve"
-msgstr ""
+msgstr "Zahlung klären"
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:132
msgid "Resolve payment"
-msgstr ""
+msgstr "Zahlung klären"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-passkey.tsx:168
msgid "Retry"
-msgstr ""
+msgstr "Wiederholen"
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:48
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:50
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:45
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:48
msgid "Return"
-msgstr ""
+msgstr "Zurück"
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:130
msgid "Return to Dashboard"
-msgstr ""
+msgstr "Zurück zum Dashboard"
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:136
msgid "Return to Home"
-msgstr ""
+msgstr "Zurück zur Startseite"
#: apps/web/src/app/(unauthenticated)/check-email/page.tsx:32
#: apps/web/src/app/(unauthenticated)/reset-password/page.tsx:32
msgid "Return to sign in"
-msgstr ""
+msgstr "Zurück zur Anmeldung"
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:118
msgid "Revoke"
-msgstr ""
+msgstr "Zugriff widerrufen"
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:87
msgid "Revoke access"
-msgstr ""
+msgstr "Zugriff widerrufen"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:283
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:318
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:163
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:84
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:125
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:107
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:82
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:123
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:105
msgid "Role"
-msgstr ""
+msgstr "Rolle"
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:131
#: apps/web/src/app/(dashboard)/admin/users/data-table-users.tsx:76
msgid "Roles"
-msgstr ""
+msgstr "Rollen"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:444
#: apps/web/src/app/(signing)/sign/[token]/number-field.tsx:336
#: apps/web/src/app/(signing)/sign/[token]/text-field.tsx:342
msgid "Save"
-msgstr ""
+msgstr "Speichern"
#: apps/web/src/app/(dashboard)/documents/data-table-sender-filter.tsx:63
#: apps/web/src/components/(dashboard)/layout/desktop-nav.tsx:81
#: apps/web/src/components/(teams)/tables/teams-member-page-data-table.tsx:69
#: apps/web/src/components/(teams)/tables/user-settings-teams-page-data-table.tsx:64
msgid "Search"
-msgstr ""
+msgstr "Suchen"
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:141
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:140
msgid "Search by document title"
-msgstr ""
+msgstr "Nach Dokumenttitel suchen"
#: apps/web/src/app/(dashboard)/admin/users/data-table-users.tsx:144
msgid "Search by name or email"
-msgstr ""
+msgstr "Nach Name oder E-Mail suchen"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:189
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:217
msgid "Secret"
-msgstr ""
+msgstr "Geheim"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:34
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:77
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:80
msgid "Security"
-msgstr ""
+msgstr "Sicherheit"
#: apps/web/src/app/(dashboard)/settings/security/activity/page.tsx:25
msgid "Security activity"
-msgstr ""
+msgstr "Sicherheitsaktivität"
#: apps/web/src/app/(signing)/sign/[token]/dropdown-field.tsx:192
msgid "Select"
-msgstr ""
+msgstr "Auswählen"
#: apps/web/src/app/(dashboard)/documents/move-document-dialog.tsx:87
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:86
msgid "Select a team"
-msgstr ""
+msgstr "Wählen Sie ein Team aus"
#: apps/web/src/app/(dashboard)/documents/move-document-dialog.tsx:81
msgid "Select a team to move this document to. This action cannot be undone."
-msgstr ""
+msgstr "Wählen Sie ein Team aus, um dieses Dokument dorthin zu verschieben. Diese Aktion kann nicht rückgängig gemacht werden."
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:80
msgid "Select a team to move this template to. This action cannot be undone."
-msgstr ""
+msgstr "Wählen Sie ein Team aus, um diese Vorlage dorthin zu verschieben. Diese Aktion kann nicht rückgängig gemacht werden."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:263
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:261
msgid "Select a template you'd like to display on your public profile"
-msgstr ""
+msgstr "Wählen Sie eine Vorlage aus, die Sie in Ihrem öffentlichen Profil anzeigen möchten"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:259
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:257
msgid "Select a template you'd like to display on your team's public profile"
-msgstr ""
+msgstr "Wählen Sie eine Vorlage aus, die Sie im öffentlichen Profil Ihres Teams anzeigen möchten"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-passkey.tsx:222
msgid "Select passkey"
-msgstr ""
+msgstr "Passkey auswählen"
#: apps/web/src/components/forms/send-confirmation-email.tsx:94
msgid "Send confirmation email"
-msgstr ""
+msgstr "Bestätigungs-E-Mail senden"
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:273
msgid "Send document"
-msgstr ""
+msgstr "Dokument senden"
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:191
msgid "Send reminder"
-msgstr ""
+msgstr "Erinnerung senden"
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:69
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:65
msgid "Sender"
-msgstr ""
+msgstr "Absender"
#: apps/web/src/components/forms/forgot-password.tsx:93
msgid "Sending Reset Email..."
-msgstr ""
+msgstr "Zurücksetzungs-E-Mail wird gesendet..."
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:128
msgid "Sending..."
-msgstr ""
+msgstr "Senden..."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:85
msgid "Sent"
-msgstr ""
+msgstr "Gesendet"
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:149
msgid "Set a password"
-msgstr ""
+msgstr "Ein Passwort festlegen"
#: apps/web/src/app/(dashboard)/settings/layout.tsx:20
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:60
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:206
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:65
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:211
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:47
msgid "Settings"
-msgstr ""
+msgstr "Einstellungen"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-passkey.tsx:196
msgid "Setup"
-msgstr ""
+msgstr "Einrichten"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:145
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:191
msgid "Share"
-msgstr ""
+msgstr "Teilen"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:161
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:203
msgid "Share Signing Card"
-msgstr ""
+msgstr "Signaturkarte teilen"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:163
msgid "Show"
-msgstr ""
+msgstr "Anzeigen"
-#: apps/web/src/components/document/document-history-sheet.tsx:111
+#: apps/web/src/components/document/document-history-sheet.tsx:113
msgid "Show additional information"
-msgstr ""
+msgstr "Zusätzliche Informationen anzeigen"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:45
msgid "Show templates in your public profile for your audience to sign and get started quickly"
-msgstr ""
+msgstr "Vorlagen in Ihrem öffentlichen Profil anzeigen, damit Ihre Zielgruppe unterschreiben und schnell loslegen kann"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:52
msgid "Show templates in your team public profile for your audience to sign and get started quickly"
-msgstr ""
+msgstr "Vorlagen in Ihrem Team-Öffentliches Profil anzeigen, damit Ihre Zielgruppe unterschreiben und schnell loslegen kann"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:83
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:114
@@ -2701,11 +2718,11 @@ msgstr ""
#: apps/web/src/components/ui/user-profile-skeleton.tsx:75
#: apps/web/src/components/ui/user-profile-timur.tsx:81
msgid "Sign"
-msgstr ""
+msgstr "Unterzeichnen"
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:219
msgid "Sign as {0} <0>({1})0>"
-msgstr ""
+msgstr "Unterzeichnen als {0} <0>({1})0>"
#: apps/web/src/app/(signing)/sign/[token]/signature-field.tsx:219
#~ msgid "Sign as <0>{0} <1>({1})1>0>"
@@ -2713,59 +2730,59 @@ msgstr ""
#: apps/web/src/app/(signing)/sign/[token]/name-field.tsx:183
msgid "Sign as<0>{0} <1>({1})1>0>"
-msgstr ""
+msgstr "Unterzeichnen als<0>{0} <1>({1})1>0>"
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:329
#: apps/web/src/app/embed/sign/[[...url]]/client.tsx:207
msgid "Sign document"
-msgstr ""
+msgstr "Dokument unterschreiben"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-dialog.tsx:59
msgid "Sign field"
-msgstr ""
+msgstr "Unterzeichnen-Feld"
#: apps/web/src/components/forms/signup.tsx:212
#: apps/web/src/components/forms/v2/signup.tsx:350
msgid "Sign Here"
-msgstr ""
+msgstr "Hier unterzeichnen"
#: apps/web/src/app/not-found.tsx:29
#: apps/web/src/components/forms/signin.tsx:371
#: apps/web/src/components/forms/signin.tsx:498
msgid "Sign In"
-msgstr ""
+msgstr "Einloggen"
#: apps/web/src/app/(unauthenticated)/signin/page.tsx:44
msgid "Sign in to your account"
-msgstr ""
+msgstr "Melden Sie sich bei Ihrem Konto an"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:285
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:297
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:84
msgid "Sign Out"
-msgstr ""
+msgstr "Ausloggen"
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:350
#: apps/web/src/app/embed/sign/[[...url]]/client.tsx:228
msgid "Sign the document to complete the process."
-msgstr ""
+msgstr "Unterschreiben Sie das Dokument, um den Vorgang abzuschließen."
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:72
msgid "Sign up"
-msgstr ""
+msgstr "Registrieren"
#: apps/web/src/components/forms/signup.tsx:235
msgid "Sign Up"
-msgstr ""
+msgstr "Registrieren"
#: apps/web/src/components/forms/signup.tsx:257
#: apps/web/src/components/forms/v2/signup.tsx:389
msgid "Sign Up with Google"
-msgstr ""
+msgstr "Registrieren mit Google"
#: apps/web/src/components/forms/signup.tsx:281
#: apps/web/src/components/forms/v2/signup.tsx:405
msgid "Sign Up with OIDC"
-msgstr ""
+msgstr "Registrieren mit OIDC"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:88
#: apps/web/src/app/(recipient)/d/[token]/sign-direct-template.tsx:338
@@ -2775,41 +2792,41 @@ msgstr ""
#: apps/web/src/app/embed/sign/[[...url]]/client.tsx:268
#: apps/web/src/components/forms/profile.tsx:132
msgid "Signature"
-msgstr ""
+msgstr "Unterschrift"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:123
msgid "Signatures Collected"
-msgstr ""
+msgstr "Gesammelte Unterschriften"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:200
msgid "Signatures will appear once the document has been completed"
-msgstr ""
+msgstr "Unterschriften erscheinen, sobald das Dokument abgeschlossen ist"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:98
msgid "Signed"
-msgstr ""
+msgstr "Unterzeichnet"
#: apps/web/src/components/forms/signin.tsx:371
#: apps/web/src/components/forms/signin.tsx:498
msgid "Signing in..."
-msgstr ""
+msgstr "Anmeldung..."
#: apps/web/src/components/forms/signup.tsx:235
msgid "Signing up..."
-msgstr ""
+msgstr "Registrierung..."
#: apps/web/src/app/(profile)/p/[url]/page.tsx:109
msgid "Since {0}"
-msgstr ""
+msgstr "Seit {0}"
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:102
msgid "Site Banner"
-msgstr ""
+msgstr "Website Banner"
#: apps/web/src/app/(dashboard)/admin/nav.tsx:93
#: apps/web/src/app/(dashboard)/admin/site-settings/page.tsx:26
msgid "Site Settings"
-msgstr ""
+msgstr "Website Einstellungen"
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:105
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:63
@@ -2847,67 +2864,67 @@ msgstr ""
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:64
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:83
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table-actions.tsx:33
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:70
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:87
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:68
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:85
#: apps/web/src/components/(teams)/team-billing-portal-button.tsx:29
msgid "Something went wrong"
-msgstr ""
+msgstr "Etwas ist schiefgelaufen"
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:98
msgid "Something went wrong while attempting to transfer the ownership of team <0>{0}0> to your. Please try again later or contact support."
-msgstr ""
+msgstr "Etwas ist schiefgelaufen beim Versuch, das Eigentum des Teams <0>{0}0> auf Ihre zu übertragen. Bitte versuchen Sie es später erneut oder kontaktieren Sie den Support."
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:120
msgid "Something went wrong while attempting to verify your email address for <0>{0}0>. Please try again later."
-msgstr ""
+msgstr "Etwas ist schiefgelaufen beim Versuch, Ihre E-Mail-Adresse für <0>{0}0> zu bestätigen. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-passkey.tsx:158
msgid "Something went wrong while loading your passkeys."
-msgstr ""
+msgstr "Etwas ist schiefgelaufen beim Laden Ihrer Passkeys."
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:55
msgid "Something went wrong while sending the confirmation email."
-msgstr ""
+msgstr "Etwas ist schiefgelaufen beim Senden der Bestätigungs-E-Mail."
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:96
msgid "Something went wrong while updating the team billing subscription, please contact support."
-msgstr ""
+msgstr "Etwas ist schiefgelaufen beim Aktualisieren des Abonnements für die Team-Zahlung. Bitte kontaktieren Sie den Support."
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:240
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:154
msgid "Something went wrong. Please try again or contact support."
-msgstr ""
+msgstr "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support."
#: apps/web/src/app/(dashboard)/documents/[id]/logs/download-audit-log-button.tsx:67
msgid "Sorry, we were unable to download the audit logs. Please try again later."
-msgstr ""
+msgstr "Entschuldigung, wir konnten die Prüfprotokolle nicht herunterladen. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(dashboard)/documents/[id]/logs/download-certificate-button.tsx:68
msgid "Sorry, we were unable to download the certificate. Please try again later."
-msgstr ""
+msgstr "Entschuldigung, wir konnten das Zertifikat nicht herunterladen. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(dashboard)/admin/nav.tsx:37
msgid "Stats"
-msgstr ""
+msgstr "Statistiken"
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:82
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:81
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:32
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:83
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:79
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:73
msgid "Status"
-msgstr ""
+msgstr "Status"
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:128
msgid "Subscribe"
-msgstr ""
+msgstr "Abonnieren"
#: apps/web/src/app/(dashboard)/admin/users/data-table-users.tsx:81
msgid "Subscription"
-msgstr ""
+msgstr "Abonnement"
#: apps/web/src/app/(dashboard)/admin/nav.tsx:79
msgid "Subscriptions"
-msgstr ""
+msgstr "Abonnements"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:35
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:67
@@ -2933,824 +2950,828 @@ msgstr ""
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:92
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:68
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table-actions.tsx:27
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:64
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:81
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:62
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:79
#: apps/web/src/components/forms/public-profile-form.tsx:80
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:135
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:172
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:133
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:170
msgid "Success"
-msgstr ""
+msgstr "Erfolg"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:87
msgid "Successfully created passkey"
-msgstr ""
+msgstr "Passkey erfolgreich erstellt"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:256
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:266
msgid "System Theme"
-msgstr ""
+msgstr "Systemthema"
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:67
-#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:66
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:65
+#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:64
msgid "Team"
-msgstr ""
+msgstr "Team"
#: apps/web/src/components/(teams)/dialogs/create-team-checkout-dialog.tsx:85
msgid "Team checkout"
-msgstr ""
+msgstr "Teameinkaufs-Prüfung"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:61
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:140
msgid "Team email"
-msgstr ""
+msgstr "Team E-Mail"
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:58
msgid "Team Email"
-msgstr ""
+msgstr "Team-E-Mail"
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:57
msgid "Team email already verified!"
-msgstr ""
+msgstr "Team-E-Mail bereits verifiziert!"
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:58
msgid "Team email has been removed"
-msgstr ""
+msgstr "Team-E-Mail wurde entfernt"
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:116
msgid "Team email verification"
-msgstr ""
+msgstr "Team-E-Mail-Verifizierung"
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:132
msgid "Team email verified!"
-msgstr ""
+msgstr "Team-E-Mail verifiziert!"
#: apps/web/src/components/(teams)/dialogs/update-team-email-dialog.tsx:80
msgid "Team email was updated."
-msgstr ""
+msgstr "Team-E-Mail wurde aktualisiert."
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:91
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:96
msgid "Team invitation"
-msgstr ""
+msgstr "Teameinladung"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:151
msgid "Team invitations have been sent."
-msgstr ""
+msgstr "Teameinladungen wurden gesendet."
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:111
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:88
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:109
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:86
msgid "Team Member"
-msgstr ""
+msgstr "Teammitglied"
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:166
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:113
msgid "Team Name"
-msgstr ""
+msgstr "Teamname"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:106
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:105
msgid "Team Only"
-msgstr ""
+msgstr "Nur Team"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:111
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:110
msgid "Team only templates are not linked anywhere and are visible only to your team."
-msgstr ""
+msgstr "Nur Teamvorlagen sind nirgendwo verlinkt und nur für Ihr Team sichtbar."
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:94
msgid "Team ownership transfer"
-msgstr ""
+msgstr "Team-Eigentumsübertragung"
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:60
msgid "Team ownership transfer already completed!"
-msgstr ""
+msgstr "Team-Eigentumsübertragung bereits abgeschlossen!"
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:110
msgid "Team ownership transferred!"
-msgstr ""
+msgstr "Team-Eigentum übertragen!"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:49
msgid "Team Public Profile"
-msgstr ""
+msgstr "Öffentliches Profil des Teams"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:272
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:277
msgid "Team settings"
-msgstr ""
+msgstr "Teameinstellungen"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/layout.tsx:50
msgid "Team Settings"
-msgstr ""
+msgstr "Team-Einstellungen"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:51
msgid "Team templates"
-msgstr ""
+msgstr "Teamvorlagen"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:79
msgid "Team transfer in progress"
-msgstr ""
+msgstr "Teamübertragung im Gange"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:77
msgid "Team transfer request expired"
-msgstr ""
+msgstr "Der Antrag auf Teamübertragung ist abgelaufen"
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:196
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:129
msgid "Team URL"
-msgstr ""
+msgstr "Team-URL"
#: apps/web/src/app/(dashboard)/settings/teams/page.tsx:25
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:157
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:162
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:43
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:64
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:67
msgid "Teams"
-msgstr ""
+msgstr "Teams"
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:83
msgid "Teams restricted"
-msgstr ""
+msgstr "Teams restricted"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:408
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:273
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:271
msgid "Template"
-msgstr ""
+msgstr "Template"
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:41
msgid "Template deleted"
-msgstr ""
+msgstr "Template deleted"
#: apps/web/src/app/(dashboard)/templates/new-template-dialog.tsx:67
msgid "Template document uploaded"
-msgstr ""
+msgstr "Template document uploaded"
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:42
msgid "Template duplicated"
-msgstr ""
+msgstr "Template duplicated"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:136
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:134
msgid "Template has been removed from your public profile."
-msgstr ""
+msgstr "Template has been removed from your public profile."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:173
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:171
msgid "Template has been updated."
-msgstr ""
+msgstr "Template has been updated."
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:48
msgid "Template moved"
-msgstr ""
+msgstr "Template moved"
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:198
msgid "Template saved"
-msgstr ""
+msgstr "Template saved"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:60
#: apps/web/src/app/(dashboard)/templates/templates-page-view.tsx:55
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:203
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:208
#: apps/web/src/components/(dashboard)/layout/desktop-nav.tsx:22
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:39
msgid "Templates"
-msgstr ""
+msgstr "Templates"
#: apps/web/src/app/(dashboard)/templates/new-template-dialog.tsx:106
msgid "Templates allow you to quickly generate documents with pre-filled recipients and fields."
-msgstr ""
+msgstr "Templates allow you to quickly generate documents with pre-filled recipients and fields."
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:166
msgid "Text Color"
-msgstr ""
+msgstr "Text Color"
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:52
msgid "The account has been deleted successfully."
-msgstr ""
+msgstr "The account has been deleted successfully."
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:197
msgid "The content to show in the banner, HTML is allowed"
-msgstr ""
+msgstr "The content to show in the banner, HTML is allowed"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:78
#: apps/web/src/app/(dashboard)/templates/template-direct-link-badge.tsx:32
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:164
msgid "The direct link has been copied to your clipboard"
-msgstr ""
+msgstr "The direct link has been copied to your clipboard"
#: apps/web/src/app/(dashboard)/documents/move-document-dialog.tsx:50
msgid "The document has been successfully moved to the selected team."
-msgstr ""
+msgstr "The document has been successfully moved to the selected team."
#: apps/web/src/app/embed/completed.tsx:29
msgid "The document is now completed, please follow any instructions provided within the parent application."
-msgstr ""
+msgstr "Das Dokument ist jetzt abgeschlossen. Bitte folgen Sie allen Anweisungen, die in der übergeordneten Anwendung bereitgestellt werden."
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:159
msgid "The document was created but could not be sent to recipients."
-msgstr ""
+msgstr "The document was created but could not be sent to recipients."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:161
msgid "The document will be hidden from your account"
-msgstr ""
+msgstr "The document will be hidden from your account"
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:281
msgid "The document will be immediately sent to recipients if this is checked."
-msgstr ""
+msgstr "The document will be immediately sent to recipients if this is checked."
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:175
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:179
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:203
msgid "The events that will trigger a webhook to be sent to your URL."
-msgstr ""
+msgstr "The events that will trigger a webhook to be sent to your URL."
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:114
msgid "The ownership of team <0>{0}0> has been successfully transferred to you."
-msgstr ""
+msgstr "The ownership of team <0>{0}0> has been successfully transferred to you."
#: apps/web/src/components/partials/not-found.tsx:53
msgid "The page you are looking for was moved, removed, renamed or might never have existed."
-msgstr ""
+msgstr "The page you are looking for was moved, removed, renamed or might never have existed."
#: apps/web/src/components/forms/public-profile-form.tsx:118
msgid "The profile link has been copied to your clipboard"
-msgstr ""
+msgstr "The profile link has been copied to your clipboard"
#: apps/web/src/app/(profile)/p/[url]/not-found.tsx:23
msgid "The profile you are looking for could not be found."
-msgstr ""
+msgstr "The profile you are looking for could not be found."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:382
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:380
msgid "The public description that will be displayed with this template"
-msgstr ""
+msgstr "The public description that will be displayed with this template"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:360
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:358
msgid "The public name for your template"
-msgstr ""
+msgstr "The public name for your template"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:119
msgid "The recipient has been updated successfully"
-msgstr ""
+msgstr "The recipient has been updated successfully"
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:267
msgid "The selected team member will receive an email which they must accept before the team is transferred"
-msgstr ""
+msgstr "The selected team member will receive an email which they must accept before the team is transferred"
#: apps/web/src/components/(dashboard)/avatar/avatar-with-recipient.tsx:41
msgid "The signing link has been copied to your clipboard."
-msgstr ""
+msgstr "The signing link has been copied to your clipboard."
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:105
msgid "The site banner is a message that is shown at the top of the site. It can be used to display important information to your users."
-msgstr ""
+msgstr "The site banner is a message that is shown at the top of the site. It can be used to display important information to your users."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:45
msgid "The team transfer invitation has been successfully deleted."
-msgstr ""
+msgstr "The team transfer invitation has been successfully deleted."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:86
msgid "The team transfer request to <0>{0}0> has expired."
-msgstr ""
+msgstr "The team transfer request to <0>{0}0> has expired."
#: apps/web/src/app/(teams)/t/[teamUrl]/not-found.tsx:23
msgid "The team you are looking for may have been removed, renamed or may have never existed."
-msgstr ""
+msgstr "The team you are looking for may have been removed, renamed or may have never existed."
#: apps/web/src/app/(dashboard)/templates/move-template-dialog.tsx:49
msgid "The template has been successfully moved to the selected team."
-msgstr ""
+msgstr "The template has been successfully moved to the selected team."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:445
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:443
msgid "The template will be removed from your profile"
-msgstr ""
+msgstr "The template will be removed from your profile"
#: apps/web/src/app/(recipient)/d/[token]/not-found.tsx:23
msgid "The template you are looking for may have been disabled, deleted or may have never existed."
-msgstr ""
+msgstr "The template you are looking for may have been disabled, deleted or may have never existed."
#: apps/web/src/components/forms/token.tsx:106
msgid "The token was copied to your clipboard."
-msgstr ""
+msgstr "The token was copied to your clipboard."
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:88
msgid "The token was deleted successfully."
-msgstr ""
+msgstr "The token was deleted successfully."
#: apps/web/src/app/(unauthenticated)/reset-password/page.tsx:24
msgid "The token you have used to reset your password is either expired or it never existed. If you have still forgotten your password, please request a new reset link."
-msgstr ""
+msgstr "The token you have used to reset your password is either expired or it never existed. If you have still forgotten your password, please request a new reset link."
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:124
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:128
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:152
msgid "The URL for Documenso to send webhook events to."
-msgstr ""
+msgstr "The URL for Documenso to send webhook events to."
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:79
msgid "The webhook has been successfully deleted."
-msgstr ""
+msgstr "The webhook has been successfully deleted."
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:75
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:81
msgid "The webhook has been updated successfully."
-msgstr ""
+msgstr "The webhook has been updated successfully."
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:93
msgid "The webhook was successfully created."
-msgstr ""
+msgstr "The webhook was successfully created."
#: apps/web/src/app/(dashboard)/documents/empty-state.tsx:25
msgid "There are no active drafts at the current moment. You can upload a document to start drafting."
-msgstr ""
+msgstr "There are no active drafts at the current moment. You can upload a document to start drafting."
#: apps/web/src/app/(dashboard)/documents/empty-state.tsx:20
msgid "There are no completed documents yet. Documents that you have created or received will appear here once completed."
-msgstr ""
+msgstr "There are no completed documents yet. Documents that you have created or received will appear here once completed."
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:70
msgid "They have permission on your behalf to:"
-msgstr ""
+msgstr "They have permission on your behalf to:"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:110
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:110
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:109
msgid "This action is not reversible. Please be certain."
-msgstr ""
+msgstr "This action is not reversible. Please be certain."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:81
msgid "This document could not be deleted at this time. Please try again."
-msgstr ""
+msgstr "This document could not be deleted at this time. Please try again."
#: apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx:73
msgid "This document could not be duplicated at this time. Please try again."
-msgstr ""
+msgstr "This document could not be duplicated at this time. Please try again."
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:106
msgid "This document could not be re-sent at this time. Please try again."
-msgstr ""
+msgstr "This document could not be re-sent at this time. Please try again."
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:180
msgid "This document has been cancelled by the owner and is no longer available for others to sign."
-msgstr ""
+msgstr "This document has been cancelled by the owner and is no longer available for others to sign."
#: apps/web/src/app/(signing)/sign/[token]/no-longer-available.tsx:52
msgid "This document has been cancelled by the owner."
-msgstr ""
+msgstr "This document has been cancelled by the owner."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:193
msgid "This document has been signed by all recipients"
-msgstr ""
+msgstr "This document has been signed by all recipients"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:196
msgid "This document is currently a draft and has not been sent"
-msgstr ""
+msgstr "This document is currently a draft and has not been sent"
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:93
msgid "This email is already being used by another team."
-msgstr ""
+msgstr "This email is already being used by another team."
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:40
msgid "This link is invalid or has expired. Please contact your team to resend a transfer request."
-msgstr ""
+msgstr "This link is invalid or has expired. Please contact your team to resend a transfer request."
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:37
msgid "This link is invalid or has expired. Please contact your team to resend a verification."
-msgstr ""
+msgstr "This link is invalid or has expired. Please contact your team to resend a verification."
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:208
msgid "This passkey has already been registered."
-msgstr ""
+msgstr "This passkey has already been registered."
#: apps/web/src/components/forms/signin.tsx:200
msgid "This passkey is not configured for this application. Please login and add one in the user settings."
-msgstr ""
+msgstr "This passkey is not configured for this application. Please login and add one in the user settings."
#: apps/web/src/components/(teams)/dialogs/create-team-checkout-dialog.tsx:148
msgid "This price includes minimum 5 seats."
-msgstr ""
+msgstr "This price includes minimum 5 seats."
#: apps/web/src/components/forms/signin.tsx:202
msgid "This session has expired. Please try again."
-msgstr ""
+msgstr "This session has expired. Please try again."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:195
msgid "This team, and any associated data excluding billing invoices will be permanently deleted."
-msgstr ""
+msgstr "This team, and any associated data excluding billing invoices will be permanently deleted."
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:51
msgid "This template could not be deleted at this time. Please try again."
-msgstr ""
+msgstr "This template could not be deleted at this time. Please try again."
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:43
msgid "This token is invalid or has expired. No action is needed."
-msgstr ""
+msgstr "This token is invalid or has expired. No action is needed."
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:43
msgid "This token is invalid or has expired. Please contact your team for a new invitation."
-msgstr ""
+msgstr "This token is invalid or has expired. Please contact your team for a new invitation."
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:98
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:87
msgid "This URL is already in use."
-msgstr ""
+msgstr "This URL is already in use."
#: apps/web/src/components/forms/v2/signup.tsx:145
msgid "This username has already been taken"
-msgstr ""
+msgstr "This username has already been taken"
#: apps/web/src/components/forms/public-profile-claim-dialog.tsx:98
msgid "This username is already taken"
-msgstr ""
+msgstr "This username is already taken"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:79
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:77
msgid "Time"
-msgstr ""
+msgstr "Time"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:100
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:97
msgid "Time zone"
-msgstr ""
+msgstr "Time zone"
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:68
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:64
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:62
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:67
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:60
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:61
msgid "Title"
-msgstr ""
+msgstr "Title"
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:106
msgid "To accept this invitation you must create an account."
-msgstr ""
+msgstr "To accept this invitation you must create an account."
#: apps/web/src/components/(teams)/dialogs/update-team-email-dialog.tsx:125
msgid "To change the email you must remove and add a new email address."
-msgstr ""
+msgstr "To change the email you must remove and add a new email address."
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:117
msgid "To confirm, please enter the accounts email address <0/>({0})."
-msgstr ""
+msgstr "To confirm, please enter the accounts email address <0/>({0})."
#: apps/web/src/app/(dashboard)/admin/documents/[id]/super-delete-document-dialog.tsx:117
msgid "To confirm, please enter the reason"
-msgstr ""
+msgstr "To confirm, please enter the reason"
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:101
msgid "To decline this invitation you must create an account."
-msgstr ""
+msgstr "To decline this invitation you must create an account."
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:197
msgid "To enable two-factor authentication, scan the following QR code using your authenticator app."
-msgstr ""
+msgstr "To enable two-factor authentication, scan the following QR code using your authenticator app."
#: apps/web/src/app/(unauthenticated)/unverified-account/page.tsx:23
msgid "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
-msgstr ""
+msgstr "To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox."
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-account.tsx:57
msgid "To mark this document as viewed, you need to be logged in as <0>{0}0>"
-msgstr ""
+msgstr "To mark this document as viewed, you need to be logged in as <0>{0}0>"
#: apps/web/src/app/embed/authenticate.tsx:21
msgid "To view this document you need to be signed into your account, please sign in to continue."
-msgstr ""
+msgstr "Um dieses Dokument anzuzeigen, müssen Sie in Ihr Konto eingeloggt sein. Bitte melden Sie sich an, um fortzufahren."
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:178
msgid "Toggle the switch to hide your profile from the public."
-msgstr ""
+msgstr "Toggle the switch to hide your profile from the public."
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:190
msgid "Toggle the switch to show your profile to the public."
-msgstr ""
+msgstr "Toggle the switch to show your profile to the public."
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:236
msgid "Token"
-msgstr ""
+msgstr "Token"
#: apps/web/src/components/forms/token.tsx:105
msgid "Token copied to clipboard"
-msgstr ""
+msgstr "Token copied to clipboard"
#: apps/web/src/components/forms/token.tsx:126
msgid "Token created"
-msgstr ""
+msgstr "Token created"
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:87
msgid "Token deleted"
-msgstr ""
+msgstr "Token deleted"
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:78
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:111
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:75
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:114
msgid "Token doesn't have an expiration date"
-msgstr ""
+msgstr "Token doesn't have an expiration date"
#: apps/web/src/components/forms/token.tsx:193
msgid "Token expiration date"
-msgstr ""
+msgstr "Token expiration date"
#: apps/web/src/components/forms/token.tsx:165
msgid "Token name"
-msgstr ""
+msgstr "Token name"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:65
msgid "Total Documents"
-msgstr ""
+msgstr "Total Documents"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:108
msgid "Total Recipients"
-msgstr ""
+msgstr "Total Recipients"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:150
msgid "Total Signers that Signed Up"
-msgstr ""
+msgstr "Total Signers that Signed Up"
#: apps/web/src/app/(dashboard)/admin/stats/page.tsx:64
msgid "Total Users"
-msgstr ""
+msgstr "Total Users"
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:160
msgid "Transfer ownership of this team to a selected team member."
-msgstr ""
+msgstr "Transfer ownership of this team to a selected team member."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:169
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:147
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:156
msgid "Transfer team"
-msgstr ""
+msgstr "Transfer team"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:173
msgid "Transfer the ownership of the team to another team member."
-msgstr ""
+msgstr "Transfer the ownership of the team to another team member."
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:163
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:167
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:191
msgid "Triggers"
-msgstr ""
+msgstr "Triggers"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:52
msgid "Two factor authentication"
-msgstr ""
+msgstr "Two factor authentication"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:88
msgid "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
-msgstr ""
+msgstr "Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app."
#: apps/web/src/components/forms/signin.tsx:436
msgid "Two-Factor Authentication"
-msgstr ""
+msgstr "Two-Factor Authentication"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:90
msgid "Two-factor authentication disabled"
-msgstr ""
+msgstr "Two-factor authentication disabled"
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:94
msgid "Two-factor authentication enabled"
-msgstr ""
+msgstr "Two-factor authentication enabled"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:92
msgid "Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in."
-msgstr ""
+msgstr "Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in."
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:73
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:68
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:67
msgid "Type"
-msgstr ""
+msgstr "Type"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:184
msgid "Type 'delete' to confirm"
-msgstr ""
+msgstr "Type 'delete' to confirm"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:181
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:186
msgid "Type a command or search..."
-msgstr ""
+msgstr "Type a command or search..."
#: apps/web/src/app/(unauthenticated)/verify-email/page.tsx:26
msgid "Uh oh! Looks like you're missing a token"
+msgstr "Uh oh! Looks like you're missing a token"
+
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:303
+msgid "Unable to change the language at this time. Please try again later."
msgstr ""
#: apps/web/src/components/forms/2fa/recovery-code-list.tsx:31
msgid "Unable to copy recovery code"
-msgstr ""
+msgstr "Unable to copy recovery code"
#: apps/web/src/components/forms/token.tsx:110
msgid "Unable to copy token"
-msgstr ""
+msgstr "Unable to copy token"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:105
msgid "Unable to create direct template access. Please try again later."
-msgstr ""
+msgstr "Unable to create direct template access. Please try again later."
#: apps/web/src/app/(dashboard)/settings/teams/decline-team-invitation-button.tsx:33
msgid "Unable to decline this team invitation at this time."
-msgstr ""
+msgstr "Unable to decline this team invitation at this time."
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:88
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:86
msgid "Unable to delete invitation. Please try again."
-msgstr ""
+msgstr "Unable to delete invitation. Please try again."
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:94
msgid "Unable to delete team"
-msgstr ""
+msgstr "Unable to delete team"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:103
msgid "Unable to disable two-factor authentication"
-msgstr ""
+msgstr "Unable to disable two-factor authentication"
#: apps/web/src/app/(dashboard)/settings/teams/accept-team-invitation-button.tsx:33
msgid "Unable to join this team at this time."
-msgstr ""
+msgstr "Unable to join this team at this time."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx:72
-#: apps/web/src/components/document/document-history-sheet.tsx:125
+#: apps/web/src/components/document/document-history-sheet.tsx:127
msgid "Unable to load document history"
-msgstr ""
+msgstr "Unable to load document history"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:111
msgid "Unable to load your public profile templates at this time"
-msgstr ""
+msgstr "Unable to load your public profile templates at this time"
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:84
msgid "Unable to remove email verification at this time. Please try again."
-msgstr ""
+msgstr "Unable to remove email verification at this time. Please try again."
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:65
msgid "Unable to remove team email at this time. Please try again."
-msgstr ""
+msgstr "Unable to remove team email at this time. Please try again."
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:71
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:69
msgid "Unable to resend invitation. Please try again."
-msgstr ""
+msgstr "Unable to resend invitation. Please try again."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-email-dropdown.tsx:40
msgid "Unable to resend verification at this time. Please try again."
-msgstr ""
+msgstr "Unable to resend verification at this time. Please try again."
#: apps/web/src/app/(unauthenticated)/reset-password/page.tsx:20
msgid "Unable to reset password"
-msgstr ""
+msgstr "Unable to reset password"
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:68
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:101
msgid "Unable to setup two-factor authentication"
-msgstr ""
+msgstr "Unable to setup two-factor authentication"
#: apps/web/src/components/forms/signin.tsx:247
#: apps/web/src/components/forms/signin.tsx:255
msgid "Unable to sign in"
-msgstr ""
+msgstr "Unable to sign in"
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:166
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:27
msgid "Unauthorized"
-msgstr ""
+msgstr "Unauthorized"
#: apps/web/src/components/(dashboard)/avatar/stack-avatars-with-tooltip.tsx:112
msgid "Uncompleted"
-msgstr ""
+msgstr "Uncompleted"
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:23
msgid "Unknown error"
-msgstr ""
+msgstr "Unknown error"
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:79
msgid "Unpaid"
-msgstr ""
+msgstr "Unpaid"
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:181
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:162
#: apps/web/src/components/(teams)/dialogs/update-team-email-dialog.tsx:166
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:191
#: apps/web/src/components/forms/public-profile-form.tsx:279
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:430
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:428
msgid "Update"
-msgstr ""
+msgstr "Update"
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:211
msgid "Update Banner"
-msgstr ""
+msgstr "Update Banner"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:118
msgid "Update passkey"
-msgstr ""
+msgstr "Update passkey"
#: apps/web/src/components/forms/password.tsx:152
msgid "Update password"
-msgstr ""
+msgstr "Update password"
#: apps/web/src/components/forms/profile.tsx:150
msgid "Update profile"
-msgstr ""
+msgstr "Update profile"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:180
msgid "Update Recipient"
-msgstr ""
+msgstr "Update Recipient"
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:148
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:146
msgid "Update role"
-msgstr ""
+msgstr "Update role"
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:176
msgid "Update team"
-msgstr ""
+msgstr "Update team"
#: apps/web/src/components/(teams)/dialogs/update-team-email-dialog.tsx:113
#: apps/web/src/components/(teams)/dialogs/update-team-email-dialog.tsx:121
msgid "Update team email"
-msgstr ""
+msgstr "Team-E-Mail aktualisieren"
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:136
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:144
msgid "Update team member"
-msgstr ""
+msgstr "Teammitglied aktualisieren"
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:147
msgid "Update user"
-msgstr ""
+msgstr "Benutzer aktualisieren"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:208
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:210
msgid "Update webhook"
-msgstr ""
+msgstr "Webhook aktualisieren"
#: apps/web/src/components/forms/password.tsx:152
msgid "Updating password..."
-msgstr ""
+msgstr "Passwort wird aktualisiert..."
#: apps/web/src/components/forms/profile.tsx:150
msgid "Updating profile..."
-msgstr ""
+msgstr "Profil wird aktualisiert..."
#: apps/web/src/components/forms/avatar-image.tsx:182
msgid "Upload Avatar"
-msgstr ""
+msgstr "Avatar hochladen"
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:44
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:31
msgid "Uploaded by"
-msgstr ""
+msgstr "Hochgeladen von"
#: apps/web/src/components/forms/avatar-image.tsx:91
msgid "Uploaded file is too large"
-msgstr ""
+msgstr "Die hochgeladene Datei ist zu groß"
#: apps/web/src/components/forms/avatar-image.tsx:92
msgid "Uploaded file is too small"
-msgstr ""
+msgstr "Die hochgeladene Datei ist zu klein"
#: apps/web/src/components/forms/avatar-image.tsx:93
msgid "Uploaded file not an allowed file type"
-msgstr ""
+msgstr "Die hochgeladene Datei ist kein zulässiger Dateityp"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:187
#: apps/web/src/components/forms/signin.tsx:493
msgid "Use Authenticator"
-msgstr ""
+msgstr "Authenticator verwenden"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:185
#: apps/web/src/components/forms/signin.tsx:491
msgid "Use Backup Code"
-msgstr ""
+msgstr "Backup-Code verwenden"
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:183
msgid "Use Template"
-msgstr ""
+msgstr "Vorlage verwenden"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:84
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:82
msgid "User"
-msgstr ""
+msgstr "Benutzer"
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:41
msgid "User ID"
-msgstr ""
+msgstr "Benutzer-ID"
#: apps/web/src/components/forms/v2/signup.tsx:222
msgid "User profiles are here!"
-msgstr ""
+msgstr "Benutzerprofile sind hier!"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:264
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:269
msgid "User settings"
-msgstr ""
+msgstr "Benutzereinstellungen"
#: apps/web/src/app/(dashboard)/admin/nav.tsx:51
msgid "Users"
-msgstr ""
+msgstr "Benutzer"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:83
msgid "Value"
-msgstr ""
+msgstr "Wert"
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:100
msgid "Verification Email Sent"
-msgstr ""
+msgstr "Bestätigungs-E-Mail gesendet"
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:45
msgid "Verification email sent successfully."
-msgstr ""
+msgstr "Bestätigungs-E-Mail erfolgreich gesendet."
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:102
msgid "Verify Now"
-msgstr ""
+msgstr "Jetzt überprüfen"
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:112
msgid "Verify your email address"
-msgstr ""
+msgstr "Überprüfen Sie Ihre E-Mail-Adresse"
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:88
msgid "Verify your email address to unlock all features."
-msgstr ""
+msgstr "Überprüfen Sie Ihre E-Mail-Adresse, um alle Funktionen freizuschalten."
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:56
msgid "Verify your email to upload documents."
-msgstr ""
+msgstr "Überprüfen Sie Ihre E-Mail, um Dokumente hochzuladen."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-button.tsx:95
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:126
@@ -3759,372 +3780,372 @@ msgstr ""
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:100
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:168
msgid "View"
-msgstr ""
+msgstr "Ansehen"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:140
msgid "View activity"
-msgstr ""
+msgstr "Aktivität ansehen"
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:78
msgid "View all documents sent to your account"
-msgstr ""
+msgstr "Alle Dokumente anzeigen, die an Ihr Konto gesendet wurden"
#: apps/web/src/app/(dashboard)/settings/security/page.tsx:134
msgid "View all recent security activity related to your account."
-msgstr ""
+msgstr "Sehen Sie sich alle aktuellen Sicherheitsaktivitäten in Ihrem Konto an."
#: apps/web/src/app/(dashboard)/settings/security/activity/page.tsx:26
msgid "View all security activity related to your account."
-msgstr ""
+msgstr "Sehen Sie sich alle Sicherheitsaktivitäten in Ihrem Konto an."
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:78
msgid "View Codes"
-msgstr ""
+msgstr "Codes ansehen"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:150
msgid "View documents associated with this email"
-msgstr ""
+msgstr "Dokumente ansehen, die mit dieser E-Mail verknüpft sind"
#: apps/web/src/app/(dashboard)/settings/teams/team-invitations.tsx:55
msgid "View invites"
-msgstr ""
+msgstr "Einladungen ansehen"
#: apps/web/src/app/(signing)/sign/[token]/complete/document-preview-button.tsx:34
msgid "View Original Document"
-msgstr ""
+msgstr "Originaldokument ansehen"
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:87
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:116
msgid "View Recovery Codes"
-msgstr ""
+msgstr "Wiederherstellungscodes ansehen"
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:56
msgid "View teams"
-msgstr ""
+msgstr "Teams ansehen"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:104
msgid "Viewed"
-msgstr ""
+msgstr "Angesehen"
#: apps/web/src/components/(dashboard)/avatar/stack-avatars-with-tooltip.tsx:82
msgid "Waiting"
-msgstr ""
+msgstr "Warten"
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:150
msgid "Waiting for others to sign"
-msgstr ""
+msgstr "Warten auf andere, um zu unterschreiben"
#: apps/web/src/app/(signing)/sign/[token]/no-longer-available.tsx:61
msgid "Want to send slick signing links like this one? <0>Check out Documenso.0>"
-msgstr ""
+msgstr "Möchten Sie auffällige Signatur-Links wie diesen senden? <0>Überprüfen Sie Documenso.0>"
#: apps/web/src/app/(profile)/profile-header.tsx:68
msgid "Want your own public profile?"
-msgstr ""
+msgstr "Möchten Sie Ihr eigenes öffentliches Profil haben?"
#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:40
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:55
#: apps/web/src/components/(teams)/team-billing-portal-button.tsx:31
msgid "We are unable to proceed to the billing portal at this time. Please try again, or contact support."
-msgstr ""
+msgstr "Wir können zurzeit nicht auf das Abrechnungsportal zugreifen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support."
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:95
msgid "We are unable to remove this passkey at the moment. Please try again later."
-msgstr ""
+msgstr "Wir können diesen Schlüssel im Moment nicht entfernen. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:75
msgid "We are unable to update this passkey at the moment. Please try again later."
-msgstr ""
+msgstr "Wir können diesen Schlüssel im Moment nicht aktualisieren. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:153
msgid "We encountered an error while removing the direct template link. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen Fehler gestoßen, während wir den direkten Vorlagenlink entfernt haben. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:84
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:90
msgid "We encountered an error while updating the webhook. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen Fehler gestoßen, während wir den Webhook aktualisieren wollten. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/forms/token.tsx:145
msgid "We encountered an unknown error while attempting create the new token. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, das neue Token zu erstellen. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:102
msgid "We encountered an unknown error while attempting to add this email. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diese E-Mail hinzuzufügen. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:107
msgid "We encountered an unknown error while attempting to create a team. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, ein Team zu erstellen. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:90
msgid "We encountered an unknown error while attempting to delete it. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, es zu löschen. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table-actions.tsx:35
msgid "We encountered an unknown error while attempting to delete the pending team. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, das ausstehende Team zu löschen. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:86
msgid "We encountered an unknown error while attempting to delete this team. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Team zu löschen. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:99
msgid "We encountered an unknown error while attempting to delete this token. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Token zu löschen. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(dashboard)/admin/users/[id]/delete-user-dialog.tsx:71
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:68
msgid "We encountered an unknown error while attempting to delete your account. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Konto zu löschen. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:160
msgid "We encountered an unknown error while attempting to invite team members. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Teammitglieder einzuladen. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/dialogs/leave-team-dialog.tsx:60
msgid "We encountered an unknown error while attempting to leave this team. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Team zu verlassen. Bitte versuchen Sie es später erneut."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:145
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:143
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diese Vorlage aus Ihrem Profil zu entfernen. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:56
msgid "We encountered an unknown error while attempting to remove this transfer. Please try again or contact support."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diese Übertragung zu entfernen. Bitte versuchen Sie es später oder kontaktieren Sie den Support."
#: apps/web/src/components/(teams)/dialogs/delete-team-member-dialog.tsx:60
msgid "We encountered an unknown error while attempting to remove this user. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, diesen Benutzer zu entfernen. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:118
msgid "We encountered an unknown error while attempting to request a transfer of this team. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, eine Übertragung dieses Teams anzufordern. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/forms/reset-password.tsx:89
msgid "We encountered an unknown error while attempting to reset your password. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Passwort zurückzusetzen. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:46
msgid "We encountered an unknown error while attempting to revoke access. Please try again or contact support."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, den Zugriff zu widerrufen. Bitte versuchen Sie es später oder kontaktieren Sie den Support."
#: apps/web/src/components/forms/public-profile-claim-dialog.tsx:115
msgid "We encountered an unknown error while attempting to save your details. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihre Daten zu speichern. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/forms/profile.tsx:89
#: apps/web/src/components/forms/signin.tsx:272
#: apps/web/src/components/forms/signin.tsx:287
#: apps/web/src/components/forms/signin.tsx:303
msgid "We encountered an unknown error while attempting to sign you In. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Sie anzumelden. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:100
#: apps/web/src/components/forms/signup.tsx:115
#: apps/web/src/components/forms/v2/signup.tsx:162
msgid "We encountered an unknown error while attempting to sign you up. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Sie anzumelden. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/forms/signup.tsx:130
#: apps/web/src/components/forms/signup.tsx:144
#: apps/web/src/components/forms/v2/signup.tsx:185
#: apps/web/src/components/forms/v2/signup.tsx:199
msgid "We encountered an unknown error while attempting to sign you Up. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Sie anzumelden. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/forms/avatar-image.tsx:124
msgid "We encountered an unknown error while attempting to update the avatar. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, das Avatar zu aktualisieren. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:92
msgid "We encountered an unknown error while attempting to update the banner. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, das Banner zu aktualisieren. Bitte versuchen Sie es später erneut."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:182
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:180
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, die Vorlage zu aktualisieren. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:102
msgid "We encountered an unknown error while attempting to update this team member. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, dieses Teammitglied zu aktualisieren. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/forms/password.tsx:86
msgid "We encountered an unknown error while attempting to update your password. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Passwort zu aktualisieren. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/forms/public-profile-form.tsx:106
msgid "We encountered an unknown error while attempting to update your public profile. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr öffentliches Profil zu aktualisieren. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:96
msgid "We encountered an unknown error while attempting to update your team. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, Ihr Team zu aktualisieren. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/dialogs/update-team-email-dialog.tsx:91
msgid "We encountered an unknown error while attempting update the team email. Please try again later."
-msgstr ""
+msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, die Team-E-Mail zu aktualisieren. Bitte versuchen Sie es später erneut."
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:80
msgid "We have sent a confirmation email for verification."
-msgstr ""
+msgstr "Wir haben eine Bestätigungs-E-Mail zur Überprüfung gesendet."
#: apps/web/src/components/forms/token.tsx:111
msgid "We were unable to copy the token to your clipboard. Please try again."
-msgstr ""
+msgstr "Wir konnten das Token nicht in Ihre Zwischenablage kopieren. Bitte versuchen Sie es erneut."
#: apps/web/src/components/forms/2fa/recovery-code-list.tsx:33
msgid "We were unable to copy your recovery code to your clipboard. Please try again."
-msgstr ""
+msgstr "Wir konnten Ihren Wiederherstellungscode nicht in Ihre Zwischenablage kopieren. Bitte versuchen Sie es erneut."
#: apps/web/src/components/(teams)/dialogs/create-team-checkout-dialog.tsx:52
msgid "We were unable to create a checkout session. Please try again, or contact support"
-msgstr ""
+msgstr "Wir konnten keine Checkout-Sitzung erstellen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support"
#: apps/web/src/components/forms/2fa/disable-authenticator-app-dialog.tsx:105
msgid "We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again."
-msgstr ""
+msgstr "Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht deaktivieren. Bitte stellen Sie sicher, dass Sie Ihr Passwort und den Backup-Code korrekt eingegeben haben und versuchen Sie es erneut."
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:28
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:44
msgid "We were unable to log you out at this time."
-msgstr ""
+msgstr "Wir konnten Sie zurzeit nicht abmelden."
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:125
msgid "We were unable to set your public profile to public. Please try again."
-msgstr ""
+msgstr "Wir konnten Ihr öffentliches Profil nicht auf öffentlich setzen. Bitte versuchen Sie es erneut."
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:70
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:103
msgid "We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again."
-msgstr ""
+msgstr "Wir konnten die Zwei-Faktor-Authentifizierung für Ihr Konto nicht einrichten. Bitte stellen Sie sicher, dass Sie den Code korrekt eingegeben haben und versuchen Sie es erneut."
#: apps/web/src/app/(recipient)/d/[token]/direct-template.tsx:119
#: apps/web/src/app/embed/direct/[[...url]]/client.tsx:245
#: apps/web/src/app/embed/sign/[[...url]]/client.tsx:125
msgid "We were unable to submit this document at this time. Please try again later."
-msgstr ""
+msgstr "Wir konnten dieses Dokument zurzeit nicht einreichen. Bitte versuchen Sie es später erneut."
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:169
msgid "We were unable to verify your details. Please try again or contact support"
-msgstr ""
+msgstr "Wir konnten Ihre Angaben nicht verifizieren. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support"
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/page.tsx:65
msgid "We were unable to verify your email. If your email is not verified already, please try again."
-msgstr ""
+msgstr "Wir konnten Ihre E-Mail nicht bestätigen. Wenn Ihre E-Mail noch nicht bestätigt wurde, versuchen Sie es bitte erneut."
#: apps/web/src/app/(dashboard)/documents/empty-state.tsx:29
#: apps/web/src/app/(dashboard)/templates/empty-state.tsx:11
msgid "We're all empty"
-msgstr ""
+msgstr "Wir sind alle leer"
#: apps/web/src/components/(dashboard)/layout/verify-email-banner.tsx:116
msgid "We've sent a confirmation email to <0>{email}0>. Please check your inbox and click the link in the email to verify your account."
-msgstr ""
+msgstr "Wir haben eine Bestätigungs-E-Mail an <0>{email}0> gesendet. Bitte überprüfen Sie Ihren Posteingang und klicken Sie auf den Link in der E-Mail, um Ihr Konto zu bestätigen."
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:92
msgid "Webhook created"
-msgstr ""
+msgstr "Webhook erstellt"
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:78
msgid "Webhook deleted"
-msgstr ""
+msgstr "Webhook gelöscht"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:74
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:80
msgid "Webhook updated"
-msgstr ""
+msgstr "Webhook aktualisiert"
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:117
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:145
msgid "Webhook URL"
-msgstr ""
+msgstr "Webhook-URL"
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:29
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:34
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:28
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:33
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:103
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:106
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:94
#: apps/web/src/components/(teams)/settings/layout/mobile-nav.tsx:102
msgid "Webhooks"
-msgstr ""
+msgstr "Webhooks"
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:29
msgid "Weekly"
-msgstr ""
+msgstr "Wöchentlich"
#: apps/web/src/app/(unauthenticated)/signin/page.tsx:48
msgid "Welcome back, we are lucky to have you."
-msgstr ""
+msgstr "Willkommen zurück, wir freuen uns, Sie zu haben."
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:189
msgid "When you click continue, you will be prompted to add the first available authenticator on your system."
-msgstr ""
+msgstr "Wenn Sie auf Fortfahren klicken, werden Sie aufgefordert, den ersten verfügbaren Authenticator auf Ihrem System hinzuzufügen."
#: apps/web/src/app/(profile)/p/[url]/page.tsx:139
msgid "While waiting for them to do so you can create your own Documenso account and get started with document signing right away."
-msgstr ""
+msgstr "Während Sie darauf warten, können Sie Ihr eigenes Documenso-Konto erstellen und sofort mit der Dokumentenunterzeichnung beginnen."
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:126
msgid "Who do you want to remind?"
-msgstr ""
+msgstr "Wen möchten Sie erinnern?"
#: apps/web/src/components/forms/public-profile-form.tsx:223
msgid "Write about the team"
-msgstr ""
+msgstr "Schreiben Sie über das Team"
#: apps/web/src/components/forms/public-profile-form.tsx:223
msgid "Write about yourself"
-msgstr ""
+msgstr "Schreiben Sie über sich selbst"
#: apps/web/src/app/(dashboard)/settings/billing/billing-plans.tsx:31
msgid "Yearly"
-msgstr ""
+msgstr "Jährlich"
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:45
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:32
msgid "You"
-msgstr ""
+msgstr "Sie"
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:90
msgid "You are about to complete approving \"{truncatedTitle}\".<0/> Are you sure?"
-msgstr ""
+msgstr "Sie stehen kurz davor, die Genehmigung für \"{truncatedTitle}\" abzuschließen.<0/> Sind Sie sicher?"
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:82
msgid "You are about to complete signing \"{truncatedTitle}\".<0/> Are you sure?"
-msgstr ""
+msgstr "Sie stehen kurz davor, \"{truncatedTitle}\" zu unterzeichnen.<0/> Sind Sie sicher?"
#: apps/web/src/app/(signing)/sign/[token]/sign-dialog.tsx:74
msgid "You are about to complete viewing \"{truncatedTitle}\".<0/> Are you sure?"
-msgstr ""
+msgstr "Sie stehen kurz davor, \"{truncatedTitle}\" anzusehen.<0/> Sind Sie sicher?"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:103
msgid "You are about to delete <0>\"{documentTitle}\"0>"
-msgstr ""
+msgstr "Sie sind dabei, <0>\"{documentTitle}\"0> zu löschen"
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:120
msgid "You are about to delete the following team email from <0>{teamName}0>."
-msgstr ""
+msgstr "Sie stehen kurz davor, die folgende Team-E-Mail von <0>{teamName}0> zu löschen."
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:107
msgid "You are about to hide <0>\"{documentTitle}\"0>"
-msgstr ""
+msgstr "Sie sind dabei, <0>\"{documentTitle}\"0> zu verstecken"
#: apps/web/src/components/(teams)/dialogs/leave-team-dialog.tsx:85
msgid "You are about to leave the following team."
-msgstr ""
+msgstr "Sie stehen kurz davor, das folgende Team zu verlassen."
#: apps/web/src/components/(teams)/dialogs/delete-team-member-dialog.tsx:85
msgid "You are about to remove the following user from <0>{teamName}0>."
-msgstr ""
+msgstr "Sie stehen kurz davor, den folgenden Benutzer aus <0>{teamName}0> zu entfernen."
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:98
msgid "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
-msgstr ""
+msgstr "Sie stehen kurz davor, den Zugriff für das Team <0>{0}0> ({1}) zu widerrufen."
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:80
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:78
msgid "You are currently on the <0>Free Plan0>."
-msgstr ""
+msgstr "Sie befinden sich derzeit im <0>kostenlosen Plan0>."
#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:92
#~ msgid "You are currently subscribed to <0>{0}0>"
@@ -4132,47 +4153,47 @@ msgstr ""
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:148
msgid "You are currently updating <0>{teamMemberName}.0>"
-msgstr ""
+msgstr "Sie aktualisieren derzeit <0>{teamMemberName}.0>"
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:122
msgid "You are currently updating the <0>{passkeyName}0> passkey."
-msgstr ""
+msgstr "Sie aktualisieren derzeit den <0>{passkeyName}0> Passkey."
#: apps/web/src/app/(teams)/t/[teamUrl]/error.tsx:28
msgid "You are not authorized to view this page."
-msgstr ""
+msgstr "Sie sind nicht berechtigt, diese Seite anzuzeigen."
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:43
msgid "You can choose to enable or disable your profile for public view."
-msgstr ""
+msgstr "Sie können wählen, ob Sie Ihr Profil für die öffentliche Ansicht aktivieren oder deaktivieren möchten."
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:50
msgid "You can choose to enable or disable your team profile for public view."
-msgstr ""
+msgstr "Sie können wählen, ob Sie Ihr Teamprofil für die öffentliche Ansicht aktivieren oder deaktivieren möchten."
#: apps/web/src/app/(dashboard)/documents/upcoming-profile-claim-teaser.tsx:30
msgid "You can claim your profile later on by going to your profile settings!"
-msgstr ""
+msgstr "Sie können Ihr Profil später über die Profileinstellungen beanspruchen!"
#: apps/web/src/components/forms/public-profile-form.tsx:154
msgid "You can update the profile URL by updating the team URL in the general settings page."
-msgstr ""
+msgstr "Sie können die Profil-URL aktualisieren, indem Sie die Team-URL auf der Seite mit den allgemeinen Einstellungen aktualisieren."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/page.tsx:65
msgid "You can view documents associated with this email and use this identity when sending documents."
-msgstr ""
+msgstr "Sie können Dokumente ansehen, die mit dieser E-Mail verknüpft sind, und diese Identität beim Senden von Dokumenten verwenden."
#: apps/web/src/app/(dashboard)/settings/security/passkeys/create-passkey-dialog.tsx:213
msgid "You cannot have more than {MAXIMUM_PASSKEYS} passkeys."
-msgstr ""
+msgstr "Sie dürfen nicht mehr als {MAXIMUM_PASSKEYS} Passkeys haben."
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:120
msgid "You cannot modify a team member who has a higher role than you."
-msgstr ""
+msgstr "Sie können ein Teammitglied, das eine höhere Rolle als Sie hat, nicht ändern."
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:101
msgid "You cannot upload encrypted PDFs"
-msgstr ""
+msgstr "Sie können keine verschlüsselten PDFs hochladen"
#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:97
#~ msgid "You currently have an active plan"
@@ -4180,83 +4201,83 @@ msgstr ""
#: apps/web/src/app/(dashboard)/settings/billing/billing-portal-button.tsx:45
msgid "You do not currently have a customer record, this should not happen. Please contact support for assistance."
-msgstr ""
+msgstr "Sie haben derzeit keinen Kundenrecord, das sollte nicht passieren. Bitte kontaktieren Sie den Support um Hilfe."
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:127
msgid "You have accepted an invitation from <0>{0}0> to join their team."
-msgstr ""
+msgstr "Sie haben eine Einladung von <0>{0}0> angenommen, um ihrem Team beizutreten."
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:64
msgid "You have already completed the ownership transfer for <0>{0}0>."
-msgstr ""
+msgstr "Sie haben die Eigentumsübertragung für <0>{0}0> bereits abgeschlossen."
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:61
msgid "You have already verified your email address for <0>{0}0>."
-msgstr ""
+msgstr "Sie haben Ihre E-Mail-Adresse für <0>{0}0> bereits bestätigt."
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:95
#: apps/web/src/app/(unauthenticated)/team/invite/[token]/page.tsx:100
msgid "You have been invited by <0>{0}0> to join their team."
-msgstr ""
+msgstr "Sie wurden von <0>{0}0> eingeladen, ihrem Team beizutreten."
#: apps/web/src/app/(unauthenticated)/team/decline/[token]/page.tsx:122
msgid "You have declined the invitation from <0>{0}0> to join their team."
-msgstr ""
+msgstr "Sie haben die Einladung von <0>{0}0> abgelehnt, ihrem Team beizutreten."
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:45
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:50
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:44
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:49
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
-msgstr ""
+msgstr "Sie haben noch keine Webhooks. Ihre Webhooks werden hier angezeigt, sobald Sie sie erstellt haben."
#: apps/web/src/app/(dashboard)/templates/empty-state.tsx:15
msgid "You have not yet created any templates. To create a template please upload one."
-msgstr ""
+msgstr "Sie haben noch keine Vorlagen erstellt. Bitte laden Sie eine Datei hoch, um eine Vorlage zu erstellen."
#: apps/web/src/app/(dashboard)/documents/empty-state.tsx:30
msgid "You have not yet created or received any documents. To create a document please upload one."
-msgstr ""
+msgstr "Sie haben noch keine Dokumente erstellt oder erhalten. Bitte laden Sie ein Dokument hoch, um eines zu erstellen."
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:234
msgid "You have reached the maximum limit of {0} direct templates. <0>Upgrade your account to continue!0>"
-msgstr ""
+msgstr "Sie haben das maximale Limit von {0} direkten Vorlagen erreicht. <0>Upgrade your account to continue!0>"
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:52
msgid "You have reached your document limit."
-msgstr ""
+msgstr "Sie haben Ihr Dokumentenlimit erreicht."
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:182
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:181
msgid "You have reached your document limit. <0>Upgrade your account to continue!0>"
-msgstr ""
+msgstr "Sie haben Ihr Dokumentenlimit erreicht. <0>Upgrade your account to continue!0>"
#: apps/web/src/components/(teams)/dialogs/leave-team-dialog.tsx:50
msgid "You have successfully left this team."
-msgstr ""
+msgstr "Sie haben dieses Team erfolgreich verlassen."
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:80
#: apps/web/src/components/forms/signup.tsx:95
#: apps/web/src/components/forms/v2/signup.tsx:129
msgid "You have successfully registered. Please verify your account by clicking on the link you received in the email."
-msgstr ""
+msgstr "Sie haben sich erfolgreich registriert. Bitte bestätigen Sie Ihr Konto, indem Sie auf den Link klicken, den Sie per E-Mail erhalten haben."
#: apps/web/src/components/(teams)/dialogs/delete-team-member-dialog.tsx:50
msgid "You have successfully removed this user from the team."
-msgstr ""
+msgstr "Sie haben diesen Benutzer erfolgreich aus dem Team entfernt."
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:38
msgid "You have successfully revoked access."
-msgstr ""
+msgstr "Sie haben den Zugriff erfolgreich widerrufen."
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:93
msgid "You have updated {teamMemberName}."
-msgstr ""
+msgstr "Sie haben {teamMemberName} aktualisiert."
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:136
msgid "You have verified your email address for <0>{0}0>."
-msgstr ""
+msgstr "Sie haben Ihre E-Mail-Adresse für <0>{0}0> bestätigt."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:82
msgid "You must be an admin of this team to manage billing."
-msgstr ""
+msgstr "Sie müssen Administrator dieses Teams sein, um die Abrechnung zu verwalten."
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:80
#~ msgid "You must enter '{confirmTransferMessage}' to proceed"
@@ -4266,176 +4287,176 @@ msgstr ""
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:58
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:54
msgid "You must enter '{deleteMessage}' to proceed"
-msgstr ""
+msgstr "Sie müssen '{deleteMessage}' eingeben, um fortzufahren"
#: apps/web/src/components/(teams)/dialogs/transfer-team-dialog.tsx:301
msgid "You must have at least one other team member to transfer ownership."
-msgstr ""
+msgstr "Sie müssen mindestens einen anderen Teamkollegen haben, um die Eigentumsübertragung durchzuführen."
#: apps/web/src/app/(dashboard)/settings/public-profile/public-profile-page-view.tsx:109
msgid "You must set a profile URL before enabling your public profile."
-msgstr ""
+msgstr "Sie müssen eine Profil-URL festlegen, bevor Sie Ihr öffentliches Profil aktivieren."
#: apps/web/src/app/(signing)/sign/[token]/signing-auth-page.tsx:61
msgid "You need to be logged in as <0>{email}0> to view this page."
-msgstr ""
+msgstr "Sie müssen als <0>{email}0> angemeldet sein, um diese Seite anzuzeigen."
#: apps/web/src/app/(recipient)/d/[token]/signing-auth-page.tsx:45
msgid "You need to be logged in to view this page."
-msgstr ""
+msgstr "Sie müssen angemeldet sein, um diese Seite anzuzeigen."
#: apps/web/src/app/(signing)/sign/[token]/document-action-auth-2fa.tsx:105
msgid "You need to setup 2FA to mark this document as viewed."
-msgstr ""
+msgstr "Sie müssen 2FA einrichten, um dieses Dokument als angesehen zu markieren."
#: apps/web/src/components/forms/v2/signup.tsx:271
msgid "You will get notified & be able to set up your documenso public profile when we launch the feature."
-msgstr ""
+msgstr "Sie werden benachrichtigt und können Ihr Documenso öffentliches Profil einrichten, wenn wir die Funktion starten."
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:96
msgid "You will now be required to enter a code from your authenticator app when signing in."
-msgstr ""
+msgstr "Sie müssen bei der Anmeldung jetzt einen Code von Ihrer Authenticator-App eingeben."
#: apps/web/src/app/(signing)/sign/[token]/complete/page.tsx:173
msgid "You will receive an Email copy of the signed document once everyone has signed."
-msgstr ""
+msgstr "Sie erhalten eine E-Mail-Kopie des unterzeichneten Dokuments, sobald alle unterschrieben haben."
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:49
msgid "Your account has been deleted successfully."
-msgstr ""
+msgstr "Ihr Konto wurde erfolgreich gelöscht."
#: apps/web/src/components/forms/avatar-image.tsx:108
msgid "Your avatar has been updated successfully."
-msgstr ""
+msgstr "Ihr Avatar wurde erfolgreich aktualisiert."
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:75
msgid "Your banner has been updated successfully."
-msgstr ""
+msgstr "Ihr Banner wurde erfolgreich aktualisiert."
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:121
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:119
msgid "Your current plan is past due. Please update your payment information."
-msgstr ""
+msgstr "Ihr aktueller Plan ist überfällig. Bitte aktualisieren Sie Ihre Zahlungsinformationen."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:253
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:251
msgid "Your direct signing templates"
-msgstr ""
+msgstr "Ihre direkten Unterzeichnungsvorlagen"
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:124
msgid "Your document failed to upload."
-msgstr ""
+msgstr "Ihr Dokument konnte nicht hochgeladen werden."
#: apps/web/src/app/(dashboard)/templates/use-template-dialog.tsx:143
msgid "Your document has been created from the template successfully."
-msgstr ""
+msgstr "Ihr Dokument wurde erfolgreich aus der Vorlage erstellt."
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:98
msgid "Your document has been re-sent successfully."
-msgstr ""
+msgstr "Ihr Dokument wurde erfolgreich erneut gesendet."
#: apps/web/src/app/(dashboard)/documents/[id]/edit-document.tsx:277
msgid "Your document has been sent successfully."
-msgstr ""
+msgstr "Ihr Dokument wurde erfolgreich gesendet."
#: apps/web/src/app/(dashboard)/documents/duplicate-document-dialog.tsx:59
msgid "Your document has been successfully duplicated."
-msgstr ""
+msgstr "Ihr Dokument wurde erfolgreich dupliziert."
#: apps/web/src/app/(dashboard)/documents/upload-document.tsx:82
msgid "Your document has been uploaded successfully."
-msgstr ""
+msgstr "Ihr Dokument wurde erfolgreich hochgeladen."
#: apps/web/src/app/(dashboard)/templates/new-template-dialog.tsx:69
msgid "Your document has been uploaded successfully. You will be redirected to the template page."
-msgstr ""
+msgstr "Ihr Dokument wurde erfolgreich hochgeladen. Sie werden zur Vorlagenseite weitergeleitet."
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:215
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:223
msgid "Your documents"
-msgstr ""
+msgstr "Ihre Dokumente"
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/client.tsx:40
msgid "Your email has been successfully confirmed! You can now use all features of Documenso."
-msgstr ""
+msgstr "Ihre E-Mail wurde erfolgreich bestätigt! Sie können jetzt alle Funktionen von Documenso nutzen."
#: apps/web/src/app/(dashboard)/settings/teams/team-email-usage.tsx:62
msgid "Your email is currently being used by team <0>{0}0> ({1})."
-msgstr ""
+msgstr "Ihre E-Mail wird derzeit von Team <0>{0}0> ({1}) verwendet."
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:48
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:81
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:47
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:80
msgid "Your existing tokens"
-msgstr ""
+msgstr "Ihre vorhandenen Tokens"
#: apps/web/src/components/forms/password.tsx:72
#: apps/web/src/components/forms/reset-password.tsx:73
msgid "Your password has been updated successfully."
-msgstr ""
+msgstr "Ihr Passwort wurde erfolgreich aktualisiert."
#: apps/web/src/app/(teams)/t/[teamUrl]/layout-billing-banner.tsx:113
msgid "Your payment for teams is overdue. Please settle the payment to avoid any service disruptions."
-msgstr ""
+msgstr "Ihre Zahlung für Teams ist überfällig. Bitte begleichen Sie die Zahlung, um Unterbrechungen des Dienstes zu vermeiden."
#: apps/web/src/components/forms/profile.tsx:73
msgid "Your profile has been updated successfully."
-msgstr ""
+msgstr "Ihr Profil wurde erfolgreich aktualisiert."
#: apps/web/src/app/(dashboard)/admin/users/[id]/page.tsx:73
msgid "Your profile has been updated."
-msgstr ""
+msgstr "Ihr Profil wurde aktualisiert."
#: apps/web/src/components/forms/public-profile-form.tsx:81
msgid "Your public profile has been updated."
-msgstr ""
+msgstr "Ihr öffentliches Profil wurde aktualisiert."
#: apps/web/src/components/forms/2fa/recovery-code-list.tsx:27
msgid "Your recovery code has been copied to your clipboard."
-msgstr ""
+msgstr "Ihr Wiederherstellungscode wurde in die Zwischenablage kopiert."
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:167
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:91
msgid "Your recovery codes are listed below. Please store them in a safe place."
-msgstr ""
+msgstr "Ihre Wiederherstellungscodes sind unten aufgeführt. Bitte bewahren Sie sie an einem sicheren Ort auf."
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:62
msgid "Your subscription is currently active."
-msgstr ""
+msgstr "Ihr Abonnement ist derzeit aktiv."
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:89
msgid "Your team has been created."
-msgstr ""
+msgstr "Ihr Team wurde erstellt."
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:73
msgid "Your team has been successfully deleted."
-msgstr ""
+msgstr "Ihr Team wurde erfolgreich gelöscht."
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:69
msgid "Your team has been successfully updated."
-msgstr ""
+msgstr "Ihr Team wurde erfolgreich aktualisiert."
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:43
msgid "Your template has been duplicated successfully."
-msgstr ""
+msgstr "Ihre Vorlage wurde erfolgreich dupliziert."
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:42
msgid "Your template has been successfully deleted."
-msgstr ""
+msgstr "Ihre Vorlage wurde erfolgreich gelöscht."
#: apps/web/src/app/(dashboard)/templates/duplicate-template-dialog.tsx:67
msgid "Your template will be duplicated."
-msgstr ""
+msgstr "Ihre Vorlage wird dupliziert."
#: apps/web/src/app/(dashboard)/templates/[id]/edit-template.tsx:199
msgid "Your templates has been saved successfully."
-msgstr ""
+msgstr "Ihre Vorlagen wurden erfolgreich gespeichert."
#: apps/web/src/app/(unauthenticated)/verify-email/[token]/page.tsx:89
msgid "Your token has expired!"
-msgstr ""
+msgstr "Ihr Token ist abgelaufen!"
#: apps/web/src/components/forms/token.tsx:277
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
-msgstr ""
+msgstr "Ihr Token wurde erfolgreich erstellt! Stellen Sie sicher, dass Sie es kopieren, da Sie es später nicht mehr sehen können!"
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:54
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:87
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:53
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:86
msgid "Your tokens will be shown here once you create them."
-msgstr ""
+msgstr "Ihre Tokens werden hier angezeigt, sobald Sie sie erstellt haben."
diff --git a/packages/lib/translations/en/common.po b/packages/lib/translations/en/common.po
index 460d561fc..68dab3819 100644
--- a/packages/lib/translations/en/common.po
+++ b/packages/lib/translations/en/common.po
@@ -111,7 +111,7 @@ msgid "Advanced Options"
msgstr "Advanced Options"
#: packages/ui/primitives/document-flow/add-fields.tsx:510
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:370
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:402
msgid "Advanced settings"
msgstr "Advanced settings"
@@ -135,7 +135,15 @@ msgstr "Approver"
msgid "Approving"
msgstr "Approving"
-#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:297
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:276
+msgid "Black"
+msgstr "Black"
+
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:290
+msgid "Blue"
+msgstr "Blue"
+
+#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:287
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:58
msgid "Cancel"
msgstr "Cancel"
@@ -162,7 +170,7 @@ msgid "Character Limit"
msgstr "Character Limit"
#: packages/ui/primitives/document-flow/add-fields.tsx:932
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:756
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:788
msgid "Checkbox"
msgstr "Checkbox"
@@ -174,7 +182,7 @@ msgstr "Checkbox values"
msgid "Clear filters"
msgstr "Clear filters"
-#: packages/ui/primitives/signature-pad/signature-pad.tsx:256
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:310
msgid "Clear Signature"
msgstr "Clear Signature"
@@ -191,7 +199,7 @@ msgid "Configure Direct Recipient"
msgstr "Configure Direct Recipient"
#: packages/ui/primitives/document-flow/add-fields.tsx:511
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:371
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:403
msgid "Configure the {0} field"
msgstr "Configure the {0} field"
@@ -208,7 +216,7 @@ msgid "Custom Text"
msgstr "Custom Text"
#: packages/ui/primitives/document-flow/add-fields.tsx:828
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:652
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:684
msgid "Date"
msgstr "Date"
@@ -240,7 +248,7 @@ msgid "Drag & drop your PDF here."
msgstr "Drag & drop your PDF here."
#: packages/ui/primitives/document-flow/add-fields.tsx:958
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:782
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:814
msgid "Dropdown"
msgstr "Dropdown"
@@ -252,7 +260,7 @@ msgstr "Dropdown options"
#: packages/ui/primitives/document-flow/add-signature.tsx:272
#: packages/ui/primitives/document-flow/add-signers.tsx:232
#: packages/ui/primitives/document-flow/add-signers.tsx:239
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:600
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:632
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:210
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:217
msgid "Email"
@@ -270,7 +278,7 @@ msgstr "Enable Direct Link Signing"
msgid "Enter password"
msgstr "Enter password"
-#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:226
+#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:216
msgid "Error"
msgstr "Error"
@@ -279,7 +287,7 @@ msgstr "Error"
msgid "External ID"
msgstr "External ID"
-#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:227
+#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:217
msgid "Failed to save settings."
msgstr "Failed to save settings."
@@ -307,6 +315,10 @@ msgstr "Global recipient action authentication"
msgid "Go Back"
msgstr "Go Back"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:297
+msgid "Green"
+msgstr "Green"
+
#: packages/lib/constants/recipient-roles.ts:72
msgid "I am a signer of this document"
msgstr "I am a signer of this document"
@@ -362,7 +374,7 @@ msgstr "Min"
#: packages/ui/primitives/document-flow/add-fields.tsx:802
#: packages/ui/primitives/document-flow/add-signature.tsx:298
#: packages/ui/primitives/document-flow/add-signers.tsx:265
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:626
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:658
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:245
#: packages/ui/primitives/template-flow/add-template-placeholder-recipients.tsx:251
msgid "Name"
@@ -381,12 +393,12 @@ msgid "Needs to view"
msgstr "Needs to view"
#: packages/ui/primitives/document-flow/add-fields.tsx:613
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:465
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:497
msgid "No recipient matching this description was found."
msgstr "No recipient matching this description was found."
#: packages/ui/primitives/document-flow/add-fields.tsx:629
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:481
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:513
msgid "No recipients with this role"
msgstr "No recipients with this role"
@@ -411,7 +423,7 @@ msgid "No value found."
msgstr "No value found."
#: packages/ui/primitives/document-flow/add-fields.tsx:880
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:704
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:736
msgid "Number"
msgstr "Number"
@@ -446,7 +458,7 @@ msgid "Placeholder"
msgstr "Placeholder"
#: packages/ui/primitives/document-flow/add-fields.tsx:906
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:730
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:762
msgid "Radio"
msgstr "Radio"
@@ -472,6 +484,10 @@ msgstr "Receives copy"
msgid "Recipient action authentication"
msgstr "Recipient action authentication"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:283
+msgid "Red"
+msgstr "Red"
+
#: packages/ui/primitives/document-flow/add-settings.tsx:298
#: packages/ui/primitives/template-flow/add-template-settings.tsx:332
msgid "Redirect URL"
@@ -493,14 +509,18 @@ msgstr "Required field"
msgid "Rows per page"
msgstr "Rows per page"
-#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:296
+#: packages/ui/primitives/document-flow/field-item-advanced-settings.tsx:286
msgid "Save"
msgstr "Save"
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:798
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:848
msgid "Save Template"
msgstr "Save Template"
+#: packages/ui/components/common/language-switcher-dialog.tsx:34
+msgid "Search languages..."
+msgstr "Search languages..."
+
#: packages/ui/primitives/document-flow/field-items-advanced-settings/dropdown-field.tsx:105
msgid "Select"
msgstr "Select"
@@ -547,7 +567,7 @@ msgstr "Sign"
#: packages/ui/primitives/document-flow/add-fields.tsx:724
#: packages/ui/primitives/document-flow/add-signature.tsx:323
#: packages/ui/primitives/document-flow/field-icon.tsx:52
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:548
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:580
msgid "Signature"
msgstr "Signature"
@@ -593,7 +613,7 @@ msgid "Template title"
msgstr "Template title"
#: packages/ui/primitives/document-flow/add-fields.tsx:854
-#: packages/ui/primitives/template-flow/add-template-fields.tsx:678
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:710
msgid "Text"
msgstr "Text"
@@ -683,6 +703,7 @@ msgid "Title"
msgstr "Title"
#: packages/ui/primitives/document-flow/add-fields.tsx:971
+#: packages/ui/primitives/template-flow/add-template-fields.tsx:828
msgid "To proceed further, please set at least one value for the {0} field."
msgstr "To proceed further, please set at least one value for the {0} field."
@@ -728,6 +749,10 @@ msgstr "Viewer"
msgid "Viewing"
msgstr "Viewing"
+#: packages/ui/primitives/signature-pad/signature-pad.tsx:280
+#~ msgid "White"
+#~ msgstr "White"
+
#: packages/ui/primitives/document-flow/send-document-action-dialog.tsx:44
msgid "You are about to send this document to the recipients. Are you sure you want to continue?"
msgstr "You are about to send this document to the recipients. Are you sure you want to continue?"
diff --git a/packages/lib/translations/en/marketing.js b/packages/lib/translations/en/marketing.js
index 9472e969c..62f804d9a 100644
--- a/packages/lib/translations/en/marketing.js
+++ b/packages/lib/translations/en/marketing.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"u0zktA\":\"5 standard documents per month\",\"rKtmiD\":\"5 Users Included\",\"vaHmll\":\"A 10x better signing experience.\",\"t7ZCoe\":\"Add document\",\"gBefbz\":[\"Add More Users for \",[\"0\"]],\"XkF8tv\":\"All our metrics, finances, and learnings are public. We believe in transparency and want to share our journey with you. You can read more about why here: <0>Announcing Open Metrics0>\",\"tkQ/WI\":\"Amount Raised\",\"qOMroC\":\"API Access\",\"FNv8t7\":\"Beautiful.\",\"W/TUoX\":\"Because signing should be celebrated. That’s why we care about the smallest detail in our product.\",\"astDB+\":\"Blog\",\"7zGun7\":\"Build on top.\",\"fxgcNV\":\"Can I use Documenso commercially?\",\"V+D/YP\":\"Careers\",\"CWe7wB\":\"Changelog\",\"JZbmjL\":\"Choose a template from the community app store. Or submit your own template for others to use.\",\"chL5IG\":\"Community\",\"p5+XQN\":\"Completed Documents\",\"NApCXa\":\"Completed Documents per Month\",\"z5kV0h\":\"Connections\",\"YcfUZ9\":\"Contact Us\",\"1NJjIG\":\"Create connections and automations with Zapier and more to integrate with your favorite tools.\",\"rr83qK\":\"Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp.\",\"75ojt0\":\"Customers with an Active Subscriptions.\",\"pF9qTh\":\"Customise and expand.\",\"f8fH8W\":\"Design\",\"W6qD1T\":\"Designed for every stage of your journey.\",\"K6KbY4\":\"Direct Link\",\"aLD+Td\":\"Documenso is a community effort to create an open and vibrant ecosystem around a tool, everybody is free to use and adapt. By being truly open we want to create trusted infrastructure for the future of the internet.\",\"32yG8y\":\"Documenso on X\",\"+1xAO7\":\"Document signing,<0/>finally open source.\",\"TvY/XA\":\"Documentation\",\"tSS7hj\":\"Easily embed Documenso into your product. Simply copy and paste our react widget into your application.\",\"LRAhFG\":\"Easy Sharing.\",\"V6EY8B\":\"Email and Discord Support\",\"C0/bri\":\"Engagement\",\"JejrgO\":\"Enter your details.\",\"8Zy3YU\":\"Enterprise Compliance, License or Technical Needs?\",\"ZSW8id\":\"Everything you need for a great signing experience.\",\"sXswT6\":\"Fast.\",\"cT9Z9e\":\"Faster, smarter and more beautiful.\",\"k/ANik\":\"Finances\",\"I7Exsw\":\"Follow us on X\",\"f3Botn\":\"For companies looking to scale across multiple teams.\",\"y2DcZj\":\"For small teams and individuals with basic needs.\",\"2POOFK\":\"Free\",\"OdieZe\":\"From the blog\",\"IPgkVQ\":\"Full-Time\",\"aSWzT9\":\"Get paid (Soon).\",\"ZDIydz\":\"Get started\",\"c3b0B0\":\"Get Started\",\"pS8wej\":\"Get started today.\",\"7FPIvI\":\"Get the latest news from Documenso, including product updates, team announcements and more!\",\"kV0qBq\":\"GitHub: Total Merged PRs\",\"652R6j\":\"GitHub: Total Open Issues\",\"R1aJ0W\":\"GitHub: Total Stars\",\"P1ovAc\":\"Global Salary Bands\",\"IAq/yr\":\"Growth\",\"Xi7f+z\":\"How can I contribute?\",\"9VGuMA\":\"How do you handle my data?\",\"fByw/g\":\"Individual\",\"Csm+TN\":\"Integrated payments with Stripe so you don’t have to worry about getting paid.\",\"phSPy7\":\"Integrates with all your favourite tools.\",\"pfjrI2\":\"Is there more?\",\"LOyqaC\":\"It’s up to you. Either clone our repository or rely on our easy to use hosting solution.\",\"PCgMVa\":\"Join Date\",\"TgL4dH\":\"Join the Open Signing Movement\",\"wJijgU\":\"Location\",\"OIowgO\":\"Make it your own through advanced customization and adjustability.\",\"GHelWd\":\"Merged PR's\",\"vXBVQZ\":\"Merged PRs\",\"+8Nek/\":\"Monthly\",\"6YtxFj\":\"Name\",\"CtgXe4\":\"New Users\",\"OpNhRn\":\"No credit card required\",\"6C9AxJ\":\"No Credit Card required\",\"igwAqT\":\"None of these work for you? Try self-hosting!\",\"jjAtjQ\":\"Open Issues\",\"b76QYo\":\"Open Source or Hosted.\",\"OWsQIe\":\"Open Startup\",\"Un80BR\":\"OSS Friends\",\"6zNyfI\":\"Our custom templates come with smart rules that can help you save time and energy.\",\"+OmhKD\":\"Our Enterprise License is great for large organizations looking to switch to Documenso for all their signing needs. It's available for our cloud offering as well as self-hosted setups and offers a wide range of compliance and Adminstration Features.\",\"I2ufwS\":\"Our self-hosted option is great for small teams and individuals who need a simple solution. You can use our docker based setup to get started in minutes. Take control with full customizability and data ownership.\",\"F9564X\":\"Part-Time\",\"qJVkX+\":\"Premium Profile Name\",\"aHCEmh\":\"Pricing\",\"rjGI/Q\":\"Privacy\",\"vERlcd\":\"Profile\",\"77/8W2\":\"React Widget (Soon).\",\"OYoVNk\":\"Receive your personal link to share with everyone you care about.\",\"GDvlUT\":\"Role\",\"bUqwb8\":\"Salary\",\"GNfoAO\":\"Save $60 or $120\",\"StoBff\":\"Search languages...\",\"dhi4w4\":\"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.\",\"kZBxnz\":\"Send, connect, receive and embed everywhere.\",\"eSfS30\":\"Seniority\",\"aoDa18\":\"Shop\",\"c+Fnce\":\"Sign\",\"5lWFkC\":\"Sign in\",\"e+RpCP\":\"Sign up\",\"4yiZOB\":\"Signing Process\",\"RkUXMm\":\"Signup Now\",\"omz3DH\":\"Smart.\",\"AvYbUL\":\"Star on GitHub\",\"y2dGtU\":\"Stars\",\"uAQUqI\":\"Status\",\"XYLcNv\":\"Support\",\"KM6m8p\":\"Team\",\"lm5v+6\":\"Team Inbox\",\"CAL6E9\":\"Teams\",\"w4nM1s\":\"Template Store (Soon).\",\"yFoQ27\":\"That's awesome. You can take a look at the current <0>Issues0> and join our <1>Discord Community1> to keep up to date, on what the current priorities are. In any case, we are an open community and welcome all input, technical and non-technical ❤️\",\"GE1BlA\":\"This page is evolving as we learn what makes a great signing company. We'll update it when we have more to share.\",\"MHrjPM\":\"Title\",\"2YvdxE\":\"Total Completed Documents\",\"8e4lIo\":\"Total Customers\",\"bPpoCb\":\"Total Funding Raised\",\"vb0Q0/\":\"Total Users\",\"mgQhDS\":\"Truly your own.\",\"4McJfQ\":\"Try our Free Plan\",\"9mkNAn\":\"Twitter Stats\",\"CHzOWB\":\"Unlimited Documents per Month\",\"BOV7DD\":\"Up to 10 recipients per document\",\"fydTfa\":\"Upload a document and add fields.\",\"vdAd7c\":\"Using our hosted version is the easiest way to get started, you can simply subscribe and start signing your documents. We take care of the infrastructure, so you can focus on your business. Additionally, when using our hosted version you benefit from our trusted signing certificates which helps you to build trust with your customers.\",\"W2nDs0\":\"View all stats\",\"WMfAK8\":\"We are happy to assist you at <0>support@documenso.com0> or <1>in our Discord-Support-Channel1> please message either Lucas or Timur to get added to the channel if you are not already a member.\",\"ZaMyxU\":\"What is the difference between the plans?\",\"8GpyFt\":\"When it comes to sending or receiving a contract, you can count on lightning-fast speeds.\",\"HEDnID\":\"Where can I get support?\",\"sib3h3\":\"Why should I prefer Documenso over DocuSign or some other signing tool?\",\"cVPDPt\":\"Why should I use your hosting service?\",\"zkWmBh\":\"Yearly\",\"8AKApo\":\"Yes! Documenso is offered under the GNU AGPL V3 open source license. This means you can use it for free and even modify it to fit your needs, as long as you publish your changes under the same license.\",\"rzQpex\":\"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.\",\"1j9aoC\":\"Your browser does not support the video tag.\",\"Lg0j3K\":\"Ihr Browser unterstützt das Video-Tag nicht.>>>>>>> main\",\"73XXzw\":[[\"0\"],\" of \",[\"1\"],\" row(s) selected.\"],\"lZ4w45\":[[\"visibleRows\",\"plural\",{\"one\":[\"Showing \",\"#\",\" result.\"],\"other\":[\"Showing \",\"#\",\" results.\"]}]],\"AhYxw5\":\"<0>Inherit authentication method0> - Use the global action signing authentication method configured in the \\\"General Settings\\\" step\",\"OepImG\":\"<0>No restrictions0> - No authentication required\",\"07+JZ2\":\"<0>No restrictions0> - The document can be accessed directly by the URL sent to the recipient\",\"jx/lwn\":\"<0>None0> - No authentication required\",\"CUT3u1\":\"<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings\",\"2PbD3D\":\"<0>Require account0> - The recipient must be signed in to view the document\",\"QHSbey\":\"<0>Require passkey0> - The recipient must have an account and passkey configured via their settings\",\"Oy5nEc\":\"Add a document\",\"7Pz5x5\":\"Add a URL to redirect the user to once the document is signed\",\"aILOUH\":\"Add an external ID to the document. This can be used to identify the document in external systems.\",\"bK1dPK\":\"Add an external ID to the template. This can be used to identify in external systems.\",\"nnZ1Sa\":\"Add another option\",\"0/UVRw\":\"Add another value\",\"VaCh6w\":\"Add myself\",\"jAa/lz\":\"Add Myself\",\"29QK6H\":\"Add Placeholder Recipient\",\"vcxlzZ\":\"Add Signer\",\"MwcOtB\":\"Add text\",\"7F2ltK\":\"Add text to the field\",\"U3pytU\":\"Admin\",\"NFIOKv\":\"Advanced Options\",\"VNgKZz\":\"Advanced settings\",\"bNUpvl\":\"After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email.\",\"Z7ZXbT\":\"Approve\",\"7kb4LU\":\"Approved\",\"ca9AbO\":\"Approver\",\"j2Uisd\":\"Approving\",\"dEgA5A\":\"Cancel\",\"brJrDl\":\"Cannot remove signer\",\"RpYfjZ\":\"Cc\",\"XdZeJk\":\"CC\",\"nrL/ZD\":\"CC'd\",\"EEk+d0\":\"Character Limit\",\"G1XxbZ\":\"Checkbox\",\"wbixMe\":\"Checkbox values\",\"u8JHrO\":\"Clear filters\",\"IqxkER\":\"Clear Signature\",\"eZ6/Uj\":\"Click to insert field\",\"yz7wBu\":\"Close\",\"OrcxNk\":\"Configure Direct Recipient\",\"92KLYs\":[\"Configure the \",[\"0\"],\" field\"],\"xGVfLh\":\"Continue\",\"FxVG/l\":\"Copied to clipboard\",\"GB2F11\":\"Custom Text\",\"mYGY3B\":\"Date\",\"4BHv90\":\"Date Format\",\"NLXhq7\":\"Direct link receiver\",\"YScG1E\":\"Document access\",\"rAqi0g\":\"Document Creation\",\"mzI/c+\":\"Download\",\"6GyScL\":\"Drag & drop your PDF here.\",\"iKQcPM\":\"Dropdown\",\"XXvhMd\":\"Dropdown options\",\"O3oNi5\":\"Email\",\"XLpxoj\":\"Email Options\",\"qChNnS\":\"Enable Direct Link Signing\",\"f7sXvi\":\"Enter password\",\"SlfejT\":\"Error\",\"5KfWxA\":\"External ID\",\"4CP+OV\":\"Failed to save settings.\",\"LK3SFK\":\"Field character limit\",\"NYkIsf\":\"Field format\",\"X6Tb6Q\":\"Field label\",\"NaVkSD\":\"Field placeholder\",\"N1UTWT\":\"Global recipient action authentication\",\"sr0UJD\":\"Go Back\",\"uCroPU\":\"I am a signer of this document\",\"K6KTX2\":\"I am a viewer of this document\",\"ngj5km\":\"I am an approver of this document\",\"JUZIGu\":\"I am required to receive a copy of this document\",\"ZjDoG7\":\"I am required to recieve a copy of this document\",\"fnbcC0\":\"Inherit authentication method\",\"87a/t/\":\"Label\",\"dtOoGl\":\"Manager\",\"CK1KXz\":\"Max\",\"OvoEq7\":\"Member\",\"ziXm9u\":\"Message <0>(Optional)0>\",\"eTUF28\":\"Min\",\"4nqUV0\":\"Needs to approve\",\"lNQBPg\":\"Needs to sign\",\"eUAUyG\":\"Needs to view\",\"GBIRGD\":\"No recipient matching this description was found.\",\"f34Qxi\":\"No recipients with this role\",\"qQ7oqE\":\"No restrictions\",\"AxPAXW\":\"No results found\",\"pt86ev\":\"No signature field found\",\"CSOFdu\":\"No value found.\",\"HptUxX\":\"Number\",\"bR2sEm\":\"Number format\",\"eY6ns+\":\"Once enabled, you can select any active recipient to be a direct link signing recipient, or create a new one. This recipient type cannot be edited or deleted.\",\"JE2qy+\":\"Once your template is set up, share the link anywhere you want. The person who opens the link will be able to enter their information in the direct link recipient field and complete any other fields assigned to them.\",\"fpzyLj\":[\"Page \",[\"0\"],\" of \",[\"1\"]],\"8ltyoa\":\"Password Required\",\"ayaTI6\":\"Pick a number\",\"hx1ePY\":\"Placeholder\",\"MtkqZc\":\"Radio\",\"5cEi0C\":\"Radio values\",\"uNQ6eB\":\"Read only\",\"UTnF5X\":\"Receives copy\",\"ZIuo5V\":\"Recipient action authentication\",\"VTB2Rz\":\"Redirect URL\",\"t/YqKh\":\"Remove\",\"8dg+Yo\":\"Required field\",\"xxCtZv\":\"Rows per page\",\"tfDRzk\":\"Save\",\"9Y3hAT\":\"Save Template\",\"rG3WVm\":\"Select\",\"hVPa4O\":\"Select an option\",\"IM+vrQ\":\"Select at least\",\"Gve6FG\":\"Select default option\",\"JlFcis\":\"Send\",\"AEV4wo\":\"Send Document\",\"iE3nGO\":\"Share Signature Card\",\"y+hKWu\":\"Share the Link\",\"ydZ6yi\":\"Show advanced settings\",\"n+8yVN\":\"Signature\",\"PoH7eg\":\"Signed\",\"jTCAGu\":\"Signer\",\"6G8s+q\":\"Signing\",\"kW2h2Z\":\"Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding.\",\"nwtY4N\":\"Something went wrong\",\"kf83Ld\":\"Something went wrong.\",\"WlBiWh\":[\"Step <0>\",[\"step\"],\" of \",[\"maxStep\"],\"0>\"],\"ki77Td\":\"Subject <0>(Optional)0>\",\"hQRttt\":\"Submit\",\"URdrTr\":\"Template title\",\"xeiujy\":\"Text\",\"imClgr\":\"The authentication required for recipients to sign fields\",\"yyD2dE\":\"The authentication required for recipients to sign the signature field.\",\"GtDmLf\":\"The authentication required for recipients to view the document.\",\"zAoaPB\":\"The document's name\",\"Ev3GOS\":\"The password you have entered is incorrect. Please try again.\",\"OPnnb6\":\"The recipient is not required to take any action and receives a copy of the document after it is completed.\",\"v8p6Mb\":\"The recipient is required to approve the document for it to be completed.\",\"CPv0TB\":\"The recipient is required to sign the document for it to be completed.\",\"oIvIfH\":\"The recipient is required to view the document for it to be completed.\",\"Br2bvS\":\"The sharing link could not be created at this time. Please try again.\",\"XJIzqY\":\"The sharing link has been copied to your clipboard.\",\"UyM8/E\":\"The signer's email\",\"zHJ+vk\":\"The signer's name\",\"kaEF2i\":\"This can be overriden by setting the authentication requirements directly on each recipient in the next step.\",\"QUZVfd\":\"This document has already been sent to this recipient. You can no longer edit this recipient.\",\"riNGUC\":\"This document is password protected. Please enter the password to view the document.\",\"Qkeh+t\":\"This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them.\",\"l2Xt6u\":\"This signer has already received the document.\",\"6iFh5a\":\"This will override any global settings.\",\"RxsRD6\":\"Time Zone\",\"UWmOq4\":[\"To proceed further, please set at least one value for the \",[\"0\"],\" field.\"],\"EkH9pt\":\"Update\",\"GT+2nz\":\"Update the role and add fields as required for the direct recipient. The individual who uses the direct link will sign the document as the direct recipient.\",\"kwkhPe\":\"Upgrade\",\"06fEqf\":\"Upload Template Document\",\"lGWE4b\":\"Validation\",\"wMHvYH\":\"Value\",\"jpctdh\":\"View\",\"vXtpAZ\":\"Viewed\",\"M/TIv1\":\"Viewer\",\"RVWz5F\":\"Viewing\",\"4/hUq0\":\"You are about to send this document to the recipients. Are you sure you want to continue?\",\"rb/T41\":\"You can use the following variables in your message:\",\"9+Ph0R\":\"You cannot upload documents at this time.\",\"m5RA9C\":\"You have reached your document limit.\",\"BWMGM4\":\"Easy Sharing (Soon).\",\"eK0veR\":\"Our Enterprise License is great large organizations looking to switch to Documenso for all their signing needs. It's availible for our cloud offering as well as self-hosted setups and offer a wide range of compliance and Adminstration Features.\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"u0zktA\":\"5 standard documents per month\",\"rKtmiD\":\"5 Users Included\",\"vaHmll\":\"A 10x better signing experience.\",\"t7ZCoe\":\"Add document\",\"gBefbz\":[\"Add More Users for \",[\"0\"]],\"XkF8tv\":\"All our metrics, finances, and learnings are public. We believe in transparency and want to share our journey with you. You can read more about why here: <0>Announcing Open Metrics0>\",\"tkQ/WI\":\"Amount Raised\",\"qOMroC\":\"API Access\",\"FNv8t7\":\"Beautiful.\",\"W/TUoX\":\"Because signing should be celebrated. That’s why we care about the smallest detail in our product.\",\"astDB+\":\"Blog\",\"7zGun7\":\"Build on top.\",\"fxgcNV\":\"Can I use Documenso commercially?\",\"V+D/YP\":\"Careers\",\"CWe7wB\":\"Changelog\",\"JZbmjL\":\"Choose a template from the community app store. Or submit your own template for others to use.\",\"chL5IG\":\"Community\",\"p5+XQN\":\"Completed Documents\",\"NApCXa\":\"Completed Documents per Month\",\"z5kV0h\":\"Connections\",\"YcfUZ9\":\"Contact Us\",\"1NJjIG\":\"Create connections and automations with Zapier and more to integrate with your favorite tools.\",\"rr83qK\":\"Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp.\",\"75ojt0\":\"Customers with an Active Subscriptions.\",\"pF9qTh\":\"Customise and expand.\",\"f8fH8W\":\"Design\",\"W6qD1T\":\"Designed for every stage of your journey.\",\"K6KbY4\":\"Direct Link\",\"aLD+Td\":\"Documenso is a community effort to create an open and vibrant ecosystem around a tool, everybody is free to use and adapt. By being truly open we want to create trusted infrastructure for the future of the internet.\",\"32yG8y\":\"Documenso on X\",\"+1xAO7\":\"Document signing,<0/>finally open source.\",\"TvY/XA\":\"Documentation\",\"tSS7hj\":\"Easily embed Documenso into your product. Simply copy and paste our react widget into your application.\",\"LRAhFG\":\"Easy Sharing.\",\"V6EY8B\":\"Email and Discord Support\",\"C0/bri\":\"Engagement\",\"JejrgO\":\"Enter your details.\",\"8Zy3YU\":\"Enterprise Compliance, License or Technical Needs?\",\"ZSW8id\":\"Everything you need for a great signing experience.\",\"sXswT6\":\"Fast.\",\"cT9Z9e\":\"Faster, smarter and more beautiful.\",\"k/ANik\":\"Finances\",\"I7Exsw\":\"Follow us on X\",\"f3Botn\":\"For companies looking to scale across multiple teams.\",\"y2DcZj\":\"For small teams and individuals with basic needs.\",\"2POOFK\":\"Free\",\"OdieZe\":\"From the blog\",\"IPgkVQ\":\"Full-Time\",\"aSWzT9\":\"Get paid (Soon).\",\"ZDIydz\":\"Get started\",\"c3b0B0\":\"Get Started\",\"pS8wej\":\"Get started today.\",\"7FPIvI\":\"Get the latest news from Documenso, including product updates, team announcements and more!\",\"kV0qBq\":\"GitHub: Total Merged PRs\",\"652R6j\":\"GitHub: Total Open Issues\",\"R1aJ0W\":\"GitHub: Total Stars\",\"P1ovAc\":\"Global Salary Bands\",\"IAq/yr\":\"Growth\",\"Xi7f+z\":\"How can I contribute?\",\"9VGuMA\":\"How do you handle my data?\",\"fByw/g\":\"Individual\",\"Csm+TN\":\"Integrated payments with Stripe so you don’t have to worry about getting paid.\",\"phSPy7\":\"Integrates with all your favourite tools.\",\"pfjrI2\":\"Is there more?\",\"LOyqaC\":\"It’s up to you. Either clone our repository or rely on our easy to use hosting solution.\",\"PCgMVa\":\"Join Date\",\"TgL4dH\":\"Join the Open Signing Movement\",\"wJijgU\":\"Location\",\"OIowgO\":\"Make it your own through advanced customization and adjustability.\",\"GHelWd\":\"Merged PR's\",\"vXBVQZ\":\"Merged PRs\",\"+8Nek/\":\"Monthly\",\"6YtxFj\":\"Name\",\"CtgXe4\":\"New Users\",\"OpNhRn\":\"No credit card required\",\"6C9AxJ\":\"No Credit Card required\",\"igwAqT\":\"None of these work for you? Try self-hosting!\",\"jjAtjQ\":\"Open Issues\",\"b76QYo\":\"Open Source or Hosted.\",\"OWsQIe\":\"Open Startup\",\"Un80BR\":\"OSS Friends\",\"6zNyfI\":\"Our custom templates come with smart rules that can help you save time and energy.\",\"+OmhKD\":\"Our Enterprise License is great for large organizations looking to switch to Documenso for all their signing needs. It's available for our cloud offering as well as self-hosted setups and offers a wide range of compliance and Adminstration Features.\",\"I2ufwS\":\"Our self-hosted option is great for small teams and individuals who need a simple solution. You can use our docker based setup to get started in minutes. Take control with full customizability and data ownership.\",\"F9564X\":\"Part-Time\",\"qJVkX+\":\"Premium Profile Name\",\"aHCEmh\":\"Pricing\",\"rjGI/Q\":\"Privacy\",\"vERlcd\":\"Profile\",\"77/8W2\":\"React Widget (Soon).\",\"OYoVNk\":\"Receive your personal link to share with everyone you care about.\",\"GDvlUT\":\"Role\",\"bUqwb8\":\"Salary\",\"GNfoAO\":\"Save $60 or $120\",\"StoBff\":\"Search languages...\",\"dhi4w4\":\"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.\",\"kZBxnz\":\"Send, connect, receive and embed everywhere.\",\"eSfS30\":\"Seniority\",\"aoDa18\":\"Shop\",\"c+Fnce\":\"Sign\",\"5lWFkC\":\"Sign in\",\"e+RpCP\":\"Sign up\",\"4yiZOB\":\"Signing Process\",\"RkUXMm\":\"Signup Now\",\"omz3DH\":\"Smart.\",\"AvYbUL\":\"Star on GitHub\",\"y2dGtU\":\"Stars\",\"uAQUqI\":\"Status\",\"XYLcNv\":\"Support\",\"KM6m8p\":\"Team\",\"lm5v+6\":\"Team Inbox\",\"CAL6E9\":\"Teams\",\"w4nM1s\":\"Template Store (Soon).\",\"yFoQ27\":\"That's awesome. You can take a look at the current <0>Issues0> and join our <1>Discord Community1> to keep up to date, on what the current priorities are. In any case, we are an open community and welcome all input, technical and non-technical ❤️\",\"GE1BlA\":\"This page is evolving as we learn what makes a great signing company. We'll update it when we have more to share.\",\"MHrjPM\":\"Title\",\"2YvdxE\":\"Total Completed Documents\",\"8e4lIo\":\"Total Customers\",\"bPpoCb\":\"Total Funding Raised\",\"vb0Q0/\":\"Total Users\",\"mgQhDS\":\"Truly your own.\",\"4McJfQ\":\"Try our Free Plan\",\"9mkNAn\":\"Twitter Stats\",\"CHzOWB\":\"Unlimited Documents per Month\",\"BOV7DD\":\"Up to 10 recipients per document\",\"fydTfa\":\"Upload a document and add fields.\",\"vdAd7c\":\"Using our hosted version is the easiest way to get started, you can simply subscribe and start signing your documents. We take care of the infrastructure, so you can focus on your business. Additionally, when using our hosted version you benefit from our trusted signing certificates which helps you to build trust with your customers.\",\"W2nDs0\":\"View all stats\",\"WMfAK8\":\"We are happy to assist you at <0>support@documenso.com0> or <1>in our Discord-Support-Channel1> please message either Lucas or Timur to get added to the channel if you are not already a member.\",\"ZaMyxU\":\"What is the difference between the plans?\",\"8GpyFt\":\"When it comes to sending or receiving a contract, you can count on lightning-fast speeds.\",\"HEDnID\":\"Where can I get support?\",\"sib3h3\":\"Why should I prefer Documenso over DocuSign or some other signing tool?\",\"cVPDPt\":\"Why should I use your hosting service?\",\"zkWmBh\":\"Yearly\",\"8AKApo\":\"Yes! Documenso is offered under the GNU AGPL V3 open source license. This means you can use it for free and even modify it to fit your needs, as long as you publish your changes under the same license.\",\"rzQpex\":\"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.\",\"1j9aoC\":\"Your browser does not support the video tag.\",\"Lg0j3K\":\"Ihr Browser unterstützt das Video-Tag nicht.>>>>>>> main\",\"73XXzw\":[[\"0\"],\" of \",[\"1\"],\" row(s) selected.\"],\"lZ4w45\":[[\"visibleRows\",\"plural\",{\"one\":[\"Showing \",\"#\",\" result.\"],\"other\":[\"Showing \",\"#\",\" results.\"]}]],\"AhYxw5\":\"<0>Inherit authentication method0> - Use the global action signing authentication method configured in the \\\"General Settings\\\" step\",\"OepImG\":\"<0>No restrictions0> - No authentication required\",\"07+JZ2\":\"<0>No restrictions0> - The document can be accessed directly by the URL sent to the recipient\",\"jx/lwn\":\"<0>None0> - No authentication required\",\"CUT3u1\":\"<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings\",\"2PbD3D\":\"<0>Require account0> - The recipient must be signed in to view the document\",\"QHSbey\":\"<0>Require passkey0> - The recipient must have an account and passkey configured via their settings\",\"Oy5nEc\":\"Add a document\",\"7Pz5x5\":\"Add a URL to redirect the user to once the document is signed\",\"aILOUH\":\"Add an external ID to the document. This can be used to identify the document in external systems.\",\"bK1dPK\":\"Add an external ID to the template. This can be used to identify in external systems.\",\"nnZ1Sa\":\"Add another option\",\"0/UVRw\":\"Add another value\",\"VaCh6w\":\"Add myself\",\"jAa/lz\":\"Add Myself\",\"29QK6H\":\"Add Placeholder Recipient\",\"vcxlzZ\":\"Add Signer\",\"MwcOtB\":\"Add text\",\"7F2ltK\":\"Add text to the field\",\"U3pytU\":\"Admin\",\"NFIOKv\":\"Advanced Options\",\"VNgKZz\":\"Advanced settings\",\"bNUpvl\":\"After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email.\",\"Z7ZXbT\":\"Approve\",\"7kb4LU\":\"Approved\",\"ca9AbO\":\"Approver\",\"j2Uisd\":\"Approving\",\"dEgA5A\":\"Cancel\",\"brJrDl\":\"Cannot remove signer\",\"RpYfjZ\":\"Cc\",\"XdZeJk\":\"CC\",\"nrL/ZD\":\"CC'd\",\"EEk+d0\":\"Character Limit\",\"G1XxbZ\":\"Checkbox\",\"wbixMe\":\"Checkbox values\",\"u8JHrO\":\"Clear filters\",\"IqxkER\":\"Clear Signature\",\"eZ6/Uj\":\"Click to insert field\",\"yz7wBu\":\"Close\",\"OrcxNk\":\"Configure Direct Recipient\",\"92KLYs\":[\"Configure the \",[\"0\"],\" field\"],\"xGVfLh\":\"Continue\",\"FxVG/l\":\"Copied to clipboard\",\"GB2F11\":\"Custom Text\",\"mYGY3B\":\"Date\",\"4BHv90\":\"Date Format\",\"NLXhq7\":\"Direct link receiver\",\"YScG1E\":\"Document access\",\"rAqi0g\":\"Document Creation\",\"mzI/c+\":\"Download\",\"6GyScL\":\"Drag & drop your PDF here.\",\"iKQcPM\":\"Dropdown\",\"XXvhMd\":\"Dropdown options\",\"O3oNi5\":\"Email\",\"XLpxoj\":\"Email Options\",\"qChNnS\":\"Enable Direct Link Signing\",\"f7sXvi\":\"Enter password\",\"SlfejT\":\"Error\",\"5KfWxA\":\"External ID\",\"4CP+OV\":\"Failed to save settings.\",\"LK3SFK\":\"Field character limit\",\"NYkIsf\":\"Field format\",\"X6Tb6Q\":\"Field label\",\"NaVkSD\":\"Field placeholder\",\"N1UTWT\":\"Global recipient action authentication\",\"sr0UJD\":\"Go Back\",\"uCroPU\":\"I am a signer of this document\",\"K6KTX2\":\"I am a viewer of this document\",\"ngj5km\":\"I am an approver of this document\",\"JUZIGu\":\"I am required to receive a copy of this document\",\"ZjDoG7\":\"I am required to recieve a copy of this document\",\"fnbcC0\":\"Inherit authentication method\",\"87a/t/\":\"Label\",\"dtOoGl\":\"Manager\",\"CK1KXz\":\"Max\",\"OvoEq7\":\"Member\",\"ziXm9u\":\"Message <0>(Optional)0>\",\"eTUF28\":\"Min\",\"4nqUV0\":\"Needs to approve\",\"lNQBPg\":\"Needs to sign\",\"eUAUyG\":\"Needs to view\",\"GBIRGD\":\"No recipient matching this description was found.\",\"f34Qxi\":\"No recipients with this role\",\"qQ7oqE\":\"No restrictions\",\"AxPAXW\":\"No results found\",\"pt86ev\":\"No signature field found\",\"CSOFdu\":\"No value found.\",\"HptUxX\":\"Number\",\"bR2sEm\":\"Number format\",\"eY6ns+\":\"Once enabled, you can select any active recipient to be a direct link signing recipient, or create a new one. This recipient type cannot be edited or deleted.\",\"JE2qy+\":\"Once your template is set up, share the link anywhere you want. The person who opens the link will be able to enter their information in the direct link recipient field and complete any other fields assigned to them.\",\"fpzyLj\":[\"Page \",[\"0\"],\" of \",[\"1\"]],\"8ltyoa\":\"Password Required\",\"ayaTI6\":\"Pick a number\",\"hx1ePY\":\"Placeholder\",\"MtkqZc\":\"Radio\",\"5cEi0C\":\"Radio values\",\"uNQ6eB\":\"Read only\",\"UTnF5X\":\"Receives copy\",\"ZIuo5V\":\"Recipient action authentication\",\"VTB2Rz\":\"Redirect URL\",\"t/YqKh\":\"Remove\",\"8dg+Yo\":\"Required field\",\"xxCtZv\":\"Rows per page\",\"tfDRzk\":\"Save\",\"9Y3hAT\":\"Save Template\",\"rG3WVm\":\"Select\",\"hVPa4O\":\"Select an option\",\"IM+vrQ\":\"Select at least\",\"Gve6FG\":\"Select default option\",\"JlFcis\":\"Send\",\"AEV4wo\":\"Send Document\",\"iE3nGO\":\"Share Signature Card\",\"y+hKWu\":\"Share the Link\",\"ydZ6yi\":\"Show advanced settings\",\"n+8yVN\":\"Signature\",\"PoH7eg\":\"Signed\",\"jTCAGu\":\"Signer\",\"6G8s+q\":\"Signing\",\"kW2h2Z\":\"Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding.\",\"nwtY4N\":\"Something went wrong\",\"kf83Ld\":\"Something went wrong.\",\"WlBiWh\":[\"Step <0>\",[\"step\"],\" of \",[\"maxStep\"],\"0>\"],\"ki77Td\":\"Subject <0>(Optional)0>\",\"hQRttt\":\"Submit\",\"URdrTr\":\"Template title\",\"xeiujy\":\"Text\",\"imClgr\":\"The authentication required for recipients to sign fields\",\"yyD2dE\":\"The authentication required for recipients to sign the signature field.\",\"GtDmLf\":\"The authentication required for recipients to view the document.\",\"zAoaPB\":\"The document's name\",\"Ev3GOS\":\"The password you have entered is incorrect. Please try again.\",\"OPnnb6\":\"The recipient is not required to take any action and receives a copy of the document after it is completed.\",\"v8p6Mb\":\"The recipient is required to approve the document for it to be completed.\",\"CPv0TB\":\"The recipient is required to sign the document for it to be completed.\",\"oIvIfH\":\"The recipient is required to view the document for it to be completed.\",\"Br2bvS\":\"The sharing link could not be created at this time. Please try again.\",\"XJIzqY\":\"The sharing link has been copied to your clipboard.\",\"UyM8/E\":\"The signer's email\",\"zHJ+vk\":\"The signer's name\",\"kaEF2i\":\"This can be overriden by setting the authentication requirements directly on each recipient in the next step.\",\"QUZVfd\":\"This document has already been sent to this recipient. You can no longer edit this recipient.\",\"riNGUC\":\"This document is password protected. Please enter the password to view the document.\",\"Qkeh+t\":\"This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them.\",\"l2Xt6u\":\"This signer has already received the document.\",\"6iFh5a\":\"This will override any global settings.\",\"RxsRD6\":\"Time Zone\",\"UWmOq4\":[\"To proceed further, please set at least one value for the \",[\"0\"],\" field.\"],\"EkH9pt\":\"Update\",\"GT+2nz\":\"Update the role and add fields as required for the direct recipient. The individual who uses the direct link will sign the document as the direct recipient.\",\"kwkhPe\":\"Upgrade\",\"06fEqf\":\"Upload Template Document\",\"lGWE4b\":\"Validation\",\"wMHvYH\":\"Value\",\"jpctdh\":\"View\",\"vXtpAZ\":\"Viewed\",\"M/TIv1\":\"Viewer\",\"RVWz5F\":\"Viewing\",\"4/hUq0\":\"You are about to send this document to the recipients. Are you sure you want to continue?\",\"rb/T41\":\"You can use the following variables in your message:\",\"9+Ph0R\":\"You cannot upload documents at this time.\",\"m5RA9C\":\"You have reached your document limit.\",\"BWMGM4\":\"Easy Sharing (Soon).\",\"eK0veR\":\"Our Enterprise License is great large organizations looking to switch to Documenso for all their signing needs. It's availible for our cloud offering as well as self-hosted setups and offer a wide range of compliance and Adminstration Features.\"}")};
diff --git a/packages/lib/translations/en/marketing.po b/packages/lib/translations/en/marketing.po
index 2cd0a190e..d240f64ba 100644
--- a/packages/lib/translations/en/marketing.po
+++ b/packages/lib/translations/en/marketing.po
@@ -425,8 +425,8 @@ msgid "Save $60 or $120"
msgstr "Save $60 or $120"
#: apps/marketing/src/components/(marketing)/i18n-switcher.tsx:47
-msgid "Search languages..."
-msgstr "Search languages..."
+#~ msgid "Search languages..."
+#~ msgstr "Search languages..."
#: apps/marketing/src/app/(marketing)/pricing/page.tsx:109
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."
diff --git a/packages/lib/translations/en/web.js b/packages/lib/translations/en/web.js
index b97936294..84b3fea01 100644
--- a/packages/lib/translations/en/web.js
+++ b/packages/lib/translations/en/web.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"4CkA8m\":[\"\\\"\",[\"0\"],\"\\\" will appear on the document as it has a timezone of \\\"\",[\"timezone\"],\"\\\".\"],\"PGXGNV\":[\"\\\"\",[\"documentTitle\"],\"\\\" has been successfully deleted\"],\"ibh+jM\":[\"(\",[\"0\"],\") has invited you to approve this document\"],\"Hdo1JO\":[\"(\",[\"0\"],\") has invited you to sign this document\"],\"wPU8t5\":[\"(\",[\"0\"],\") has invited you to view this document\"],\"1mCQTM\":[[\"0\",\"plural\",{\"one\":\"(1 character over)\",\"other\":[\"(\",\"#\",\" characters over)\"]}]],\"8laXJX\":[[\"0\",\"plural\",{\"one\":[\"#\",\" character over the limit\"],\"other\":[\"#\",\" characters over the limit\"]}]],\"/7wuBM\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recipient\"],\"other\":[\"#\",\" recipients\"]}]],\"WVvaAa\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Seat\"],\"other\":[\"#\",\" Seats\"]}]],\"mBW/Nj\":[[\"0\",\"plural\",{\"one\":\"<0>You have <1>11> pending team invitation0>\",\"other\":[\"<2>You have <3>\",\"#\",\"3> pending team invitations2>\"]}]],\"+Futv0\":[[\"0\",\"plural\",{\"one\":\"1 Recipient\",\"other\":[\"#\",\" Recipients\"]}]],\"/9xV/+\":[[\"0\",\"plural\",{\"one\":\"Waiting on 1 recipient\",\"other\":[\"Waiting on \",\"#\",\" recipients\"]}]],\"NKVaV/\":[[\"0\",\"plural\",{\"zero\":\"Select values\",\"other\":[\"#\",\" selected...\"]}]],\"XZlK7r\":[[\"0\"],\" direct signing templates\"],\"FDQtbR\":[[\"0\"],\" document\"],\"NnFCoc\":[[\"0\"],\" of \",[\"1\"],\" documents remaining this month.\"],\"5YOFTl\":[[\"0\"],\" Recipient(s)\"],\"7VC/RF\":[[\"0\"],\" the document to complete the process.\"],\"fjZZE0\":[[\"charactersRemaining\",\"plural\",{\"one\":\"1 character remaining\",\"other\":[[\"charactersRemaining\"],\" characters remaining\"]}]],\"AQAq/V\":[[\"formattedTeamMemberQuanity\"],\" • Monthly • Renews: \",[\"formattedDate\"]],\"QBOMc/\":[[\"numberOfSeats\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"B/VHou\":[[\"remaningLength\",\"plural\",{\"one\":[\"#\",\" character remaining\"],\"other\":[\"#\",\" characters remaining\"]}]],\"Z5MlD3\":[\"<0>\\\"\",[\"0\"],\"\\\"0>is no longer available to sign\"],\"xvzJ86\":\"<0>Sender:0> All\",\"mVRii8\":\"404 Page not found\",\"WZHDfC\":\"404 Profile not found\",\"4lyY0m\":\"404 Team not found\",\"In0QZI\":\"404 Template not found\",\"1a1ztU\":\"A confirmation email has been sent, and it should arrive in your inbox shortly.\",\"0JoPTv\":\"A draft document will be created\",\"pYI9yv\":\"A new token was created successfully.\",\"FnK1CG\":\"A password reset email has been sent, if you have an account you should see it in your inbox shortly.\",\"GtLRrc\":[\"A request to transfer the ownership of this team has been sent to <0>\",[\"0\"],\" (\",[\"1\"],\")0>\"],\"EUAIAh\":\"A secret that will be sent to your URL so you can verify that the request has been sent by Documenso\",\"FUzxsL\":\"A secret that will be sent to your URL so you can verify that the request has been sent by Documenso.\",\"h39O4b\":\"A unique URL to access your profile\",\"B26oYX\":\"A unique URL to identify your team\",\"YKB66I\":\"A verification email will be sent to the provided email.\",\"g3UF2V\":\"Accept\",\"f8bc61\":\"Accepted team invitation\",\"TKFUnX\":\"Account deleted\",\"bwRvnp\":\"Action\",\"7L01XJ\":\"Actions\",\"F6pfE9\":\"Active\",\"i1lpSD\":\"Active Subscriptions\",\"m16xKo\":\"Add\",\"qkB+9Q\":\"Add all relevant fields for each recipient.\",\"bpOeyo\":\"Add all relevant placeholders for each recipient.\",\"GQ/q/T\":\"Add an authenticator to serve as a secondary authentication method for signing documents.\",\"o7gocE\":\"Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents.\",\"bJUlXv\":\"Add email\",\"S/w/ui\":\"Add Fields\",\"iOiHwJ\":\"Add more\",\"rSRyAh\":\"Add number\",\"w3zmQl\":\"Add passkey\",\"zkvWcK\":\"Add Placeholders\",\"2Rqi1z\":\"Add Signers\",\"eZyoIc\":\"Add Subject\",\"bD3qQ7\":\"Add team email\",\"MwcOtB\":\"Add text\",\"mXXoi9\":\"Add Text\",\"vn6wzk\":\"Add the people who will sign the document.\",\"8XAJNZ\":\"Add the recipients to create the document with\",\"F9ayeh\":\"Add the subject and message you wish to send to signers.\",\"pjVxbn\":\"Adding and removing seats will adjust your invoice accordingly.\",\"VfkDmn\":\"Admin Actions\",\"SsHJsm\":\"Admin panel\",\"N40H+G\":\"All\",\"/LYSFR\":\"All documents\",\"myVKpO\":\"All documents have been processed. Any new documents that are sent or received will show here.\",\"8dC9dh\":\"All inserted signatures will be voided\",\"a809wO\":\"All recipients will be notified\",\"DA2Nma\":\"All templates\",\"5b4J4v\":\"All Time\",\"8URWfv\":\"Allows authenticating using biometrics, password managers, hardware keys, etc.\",\"QN+LeY\":\"Already have an account? <0>Sign in instead0>\",\"hehnjM\":\"Amount\",\"VeMlGP\":\"An email containing an invitation will be sent to each member.\",\"Cs4Mqi\":\"An email requesting the transfer of this team has been sent.\",\"Vw8l6h\":\"An error occurred\",\"aAZxd7\":\"An error occurred while adding signers.\",\"qFEx41\":\"An error occurred while adding the fields.\",\"ycUtHd\":\"An error occurred while creating document from template.\",\"8jjOHI\":\"An error occurred while creating the webhook. Please try again.\",\"D6tvkq\":\"An error occurred while disabling direct link signing.\",\"HNjVHR\":\"An error occurred while downloading your document.\",\"z7nHXh\":\"An error occurred while duplicating template.\",\"WnEuiF\":\"An error occurred while enabling direct link signing.\",\"eijDci\":\"An error occurred while loading team members. Please try again later.\",\"ZL2b3c\":\"An error occurred while moving the document.\",\"vECB98\":\"An error occurred while moving the template.\",\"677Rs2\":\"An error occurred while removing the signature.\",\"niV8ex\":\"An error occurred while removing the text.\",\"+UiFs2\":\"An error occurred while sending the document.\",\"W8sZtD\":\"An error occurred while sending your confirmation email\",\"CKRkxA\":\"An error occurred while signing the document.\",\"k2HSGs\":\"An error occurred while trying to create a checkout session.\",\"PBvwjZ\":\"An error occurred while updating the document settings.\",\"vNZnKS\":\"An error occurred while updating the signature.\",\"ed1aMc\":\"An error occurred while updating your profile.\",\"hGN3eM\":\"An error occurred while uploading your document.\",\"vW+T+d\":\"An unknown error occurred\",\"Iq1gDI\":\"Any payment methods attached to this team will remain attached to this team. Please contact us if you need to update this information.\",\"ZiooJI\":\"API Tokens\",\"mf2Wzk\":\"App Version\",\"Z7ZXbT\":\"Approve\",\"7kb4LU\":\"Approved\",\"0EvA/s\":\"Are you sure you want to delete this token?\",\"99ZWCN\":[\"Are you sure you want to remove the <0>\",[\"passkeyName\"],\"0> passkey.\"],\"1D4Rs0\":\"Are you sure you wish to delete this team?\",\"6foA8n\":\"Are you sure?\",\"rgXDlk\":\"Attempts sealing the document again, useful for after a code change has occurred to resolve an erroneous document.\",\"ilRCh1\":\"Audit Log\",\"XiaVj+\":\"Authentication required\",\"kfcRb0\":\"Avatar\",\"uzGcBT\":\"Avatar Updated\",\"q8qrYJ\":\"Awaiting email confirmation\",\"iH8pgl\":\"Back\",\"FL8Lic\":\"Back to Documents\",\"k1bLf+\":\"Background Color\",\"ev7oAJ\":\"Backup Code\",\"M2cci0\":\"Backup codes\",\"eQwW5Q\":\"Banner Updated\",\"3dSIQs\":\"Basic details\",\"R+w/Va\":\"Billing\",\"0DGrp8\":\"Browser\",\"r4lECO\":\"Bulk Import\",\"dMoTGp\":\"By deleting this document, the following will occur:\",\"zjt329\":\"By enabling 2FA, you will be required to enter a code from your authenticator app every time you sign in.\",\"dEgA5A\":\"Cancel\",\"sa1BnH\":\"Cancelled by user\",\"A4tHrb\":\"Charts\",\"znIg+z\":\"Checkout\",\"MeyfTD\":\"Choose an existing recipient from below to continue\",\"iWVl0V\":\"Choose Direct Link Recipient\",\"1qI3Gk\":\"Choose...\",\"1m18m/\":\"Claim account\",\"tvmS/k\":\"Claim username\",\"vRjC9y\":\"Claim your profile later\",\"HiEGc0\":\"Claim your username now\",\"ELiPtq\":\"Click here to get started\",\"BvF90q\":\"Click here to retry\",\"cgfP+i\":\"Click here to upload\",\"L1127j\":\"Click to copy signing link for sending to recipient\",\"eZ6/Uj\":\"Click to insert field\",\"yz7wBu\":\"Close\",\"bD8I7O\":\"Complete\",\"jVAqZz\":\"Complete Approval\",\"0ojNue\":\"Complete Signing\",\"+5y0NQ\":\"Complete Viewing\",\"qqWcBV\":\"Completed\",\"rGm4yZ\":\"Completed documents\",\"p5+XQN\":\"Completed Documents\",\"UfLuLv\":\"Configure general settings for the document.\",\"hIv3aM\":\"Configure general settings for the template.\",\"LVnHGj\":\"Configure template\",\"7VpPHA\":\"Confirm\",\"gMlC/b\":[\"Confirm by typing <0>\",[\"confirmTransferMessage\"],\"0>\"],\"FQnPC+\":[\"Confirm by typing <0>\",[\"deleteMessage\"],\"0>\"],\"gv1JXQ\":[\"Confirm by typing: <0>\",[\"deleteMessage\"],\"0>\"],\"w0Qb5v\":\"Confirm Deletion\",\"CMj4hw\":\"Confirm email\",\"13PnPF\":\"Confirmation email sent\",\"4b3oEV\":\"Content\",\"xGVfLh\":\"Continue\",\"/KgpcA\":\"Continue to login\",\"FxVG/l\":\"Copied to clipboard\",\"phD28x\":\"Copy sharable link\",\"ZxZS0E\":\"Copy Shareable Link\",\"BddwrJ\":\"Copy token\",\"hYgDIe\":\"Create\",\"mpt9T+\":\"Create a new account\",\"kxGCtA\":\"Create a team to collaborate with your team members.\",\"1hMWR6\":\"Create account\",\"H7nlli\":\"Create and send\",\"BYg48B\":\"Create as draft\",\"JqmhmE\":\"Create Direct Link\",\"wtV4WO\":\"Create Direct Signing Link\",\"fDTEKZ\":\"Create document from template\",\"1svIlj\":\"Create now\",\"JLQooE\":\"Create one automatically\",\"YGQVmg\":\"Create team\",\"fWFMgb\":\"Create Team\",\"pzXZ8+\":\"Create token\",\"SiPp29\":\"Create webhook\",\"dkAPxi\":\"Create Webhook\",\"8T5f7o\":\"Create your account and start using state-of-the-art document signing.\",\"rr83qK\":\"Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp.\",\"d+F6q9\":\"Created\",\"88kg0+\":\"Created At\",\"NCIYDF\":\"Created by\",\"45O6zJ\":\"Created on\",\"SVZbH4\":\"Created on <0/>\",\"DCKkhU\":\"Current Password\",\"74XDHP\":[\"Current plan: \",[\"0\"]],\"U0sC6H\":\"Daily\",\"oRVm8M\":\"Dark Mode\",\"mYGY3B\":\"Date\",\"u46WEi\":\"Date created\",\"jbq7j2\":\"Decline\",\"uSS9OX\":\"Declined team invitation\",\"cnGeoo\":\"Delete\",\"ZDGm40\":\"Delete account\",\"vzX5FB\":\"Delete Account\",\"+vDIXN\":\"Delete document\",\"MUynQL\":\"Delete Document\",\"0tFf9L\":\"Delete passkey\",\"MYiaA4\":\"Delete team\",\"WZHJBH\":\"Delete team member\",\"M5Nsil\":\"Delete the document. This action is irreversible so proceed with caution.\",\"ETB4Yh\":\"Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution.\",\"zdyslo\":\"Delete Webhook\",\"IJMZKG\":\"Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution.\",\"vGjmyl\":\"Deleted\",\"cmDFUK\":\"Deleting account...\",\"PkSiFP\":\"Deleting document\",\"PEHQTf\":\"Device\",\"YseRvk\":\"direct link\",\"cfARFZ\":\"Direct link\",\"VdX+I4\":\"direct link disabled\",\"nNHqgX\":\"Direct Link Signing\",\"k2FNdx\":\"Direct link signing has been disabled\",\"gsc+pZ\":\"Direct link signing has been enabled\",\"CRdqqs\":\"Direct link templates contain one dynamic recipient placeholder. Anyone with access to this link can sign the document, and it will then appear on your documents page.\",\"WCGIfx\":\"Direct template link deleted\",\"2HKj5L\":[\"Direct template link usage exceeded (\",[\"0\"],\"/\",[\"1\"],\")\"],\"cO9+2L\":\"Disable\",\"qERl58\":\"Disable 2FA\",\"pf7wfS\":\"Disable Two Factor Authentication before deleting your account.\",\"E/QGRL\":\"Disabled\",\"H11Db4\":\"Disabling direct link signing will prevent anyone from accessing the link.\",\"Oq0b7I\":\"Display your name and email in documents\",\"pR1j0x\":\"Do you want to delete this template?\",\"MqL7Ex\":\"Do you want to duplicate this template?\",\"MUwFBV\":\"Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account.\",\"7Zdnlq\":\"Document\",\"kz4vX7\":\"Document All\",\"Pr3c2A\":\"Document Approved\",\"Kvf7iA\":\"Document Cancelled\",\"GOO+sv\":\"Document completed\",\"6KFLWX\":\"Document Completed!\",\"frw2OP\":\"Document created\",\"ZlIPM3\":\"Document deleted\",\"IvkBV7\":\"Document draft\",\"nF+jHn\":\"Document Duplicated\",\"Zfj12J\":\"Document history\",\"glwlqW\":\"Document ID\",\"WqG6Wi\":\"Document inbox\",\"WrliRN\":\"Document Limit Exceeded!\",\"AGzFn4\":\"Document metrics\",\"w+SPlp\":\"Document moved\",\"G45FNk\":\"Document no longer available to sign\",\"EhII5Z\":\"Document pending\",\"XIvQfe\":\"Document re-sent\",\"S2Wpx4\":\"Document resealed\",\"2r5F7N\":\"Document sent\",\"prbyy5\":\"Document Signed\",\"O832hg\":\"Document signing process will be cancelled\",\"UkHClc\":\"Document status\",\"RDOlfT\":\"Document title\",\"R1TUTP\":\"Document upload disabled due to unpaid invoices\",\"PGrc79\":\"Document uploaded\",\"UfJ5fX\":\"Document Viewed\",\"bTGVhQ\":\"Document will be permanently deleted\",\"E/muDO\":\"Documents\",\"q89WTJ\":\"Documents Received\",\"77Aq1u\":\"Documents Viewed\",\"352VU2\":\"Don't have an account? <0>Sign up0>\",\"mzI/c+\":\"Download\",\"lojhUl\":\"Download Audit Logs\",\"uKWz9T\":\"Download Certificate\",\"eneWvv\":\"Draft\",\"gWAuiM\":\"Draft documents\",\"8OzE2k\":\"Drafted Documents\",\"QurWnM\":\"Due to an unpaid invoice, your team has been restricted. Please settle the payment to restore full access to your team.\",\"euc6Ns\":\"Duplicate\",\"ePK91l\":\"Edit\",\"fW5sSv\":\"Edit webhook\",\"O3oNi5\":\"Email\",\"ATGYL1\":\"Email address\",\"hzKQCy\":\"Email Address\",\"HmTucU\":\"Email Confirmed!\",\"JHLcvq\":\"Email sent!\",\"bK7p2G\":\"Email verification has been removed\",\"xk9d59\":\"Email verification has been resent\",\"DCRKbe\":\"Enable 2FA\",\"Gndbft\":\"Enable Authenticator App\",\"iNXTYT\":\"Enable direct link signing\",\"qChNnS\":\"Enable Direct Link Signing\",\"RxzN1M\":\"Enabled\",\"y6J8wY\":\"Ends On\",\"C3nD/1\":\"Enter your email\",\"oM8ocD\":\"Enter your email address to receive the completed document.\",\"n9V+ps\":\"Enter your name\",\"v0GDxO\":\"Enter your text here\",\"SlfejT\":\"Error\",\"ZkROsq\":\"Everyone has signed\",\"4MNaCF\":\"Everyone has signed! You will receive an Email copy of the signed document.\",\"uWW+rJ\":\"Exceeded timeout\",\"M1RnFv\":\"Expired\",\"RIcSTA\":\"Expires on\",\"LbGReD\":\"Expires on <0/>\",\"ToQ1L5\":\"Failed to reseal document\",\"YXKrQK\":\"Failed to update recipient\",\"R41XLH\":\"Failed to update webhook\",\"vF68cg\":\"Fields\",\"8rKUka\":[\"File cannot be larger than \",[\"APP_DOCUMENT_UPLOAD_SIZE_LIMIT\"],\"MB\"],\"glx6on\":\"Forgot your password?\",\"/4TFrF\":\"Full Name\",\"Weq9zb\":\"General\",\"sr0UJD\":\"Go Back\",\"+vhBuq\":\"Go back home\",\"1oocIX\":\"Go Back Home\",\"Q46UEs\":\"Go to owner\",\"71XAMD\":\"Go to your <0>public profile settings0> to add documents.\",\"+pEbZM\":\"Here you can edit your personal details.\",\"gPNXUO\":\"Here you can manage your password and security settings.\",\"rLZFM2\":\"Here's how it works:\",\"C3U9sx\":\"Hey I’m Timur\",\"vLyv1R\":\"Hide\",\"/c6j67\":\"Hide additional information\",\"2+GP4I\":\"I am the owner of this document\",\"Jw3g7g\":\"I'm sure! Delete it\",\"fYt7bZ\":\"If they accept this request, the team will be transferred to their account.\",\"P8EnSP\":\"If you do not want to use the authenticator prompted, you can close it, which will then display the next available authenticator.\",\"usBC38\":\"If you don't find the confirmation link in your inbox, you can request a new one below.\",\"i1sBhX\":\"If your authenticator app does not support QR codes, you can use the following code instead:\",\"Gp4Yi6\":\"Inbox\",\"mIZt96\":\"Inbox documents\",\"nSkB8g\":\"Information\",\"2+B7Tm\":\"Inserted\",\"kgiQxA\":\"Instance Stats\",\"v7dfDY\":\"Invalid code. Please try again.\",\"bajpfj\":\"Invalid file\",\"TN382O\":\"Invalid link\",\"Kx9NEt\":\"Invalid token\",\"lW4qkT\":\"Invitation accepted!\",\"K2fB29\":\"Invitation declined\",\"zbmftZ\":\"Invitation has been deleted\",\"hDYopg\":\"Invitation has been resent\",\"MFKlMB\":\"Invite\",\"+djOzj\":\"Invite member\",\"ZHx/by\":\"Invite Members\",\"qSfH/A\":\"Invite team members\",\"H97wjo\":\"Invited At\",\"IuMGvq\":\"Invoice\",\"pQgy2V\":[\"It looks like \",[\"0\"],\" hasn't added any documents to their profile yet.\"],\"Ji9zm3\":\"It seems that the provided token has expired. We've just sent you another token, please check your email and try again.\",\"PQ53gh\":\"It seems that there is no token provided, if you are trying to verify your email please follow the link in your email.\",\"y51oRm\":\"It seems that there is no token provided. Please check your email and try again.\",\"vfe90m\":\"Last 14 days\",\"uq2BmQ\":\"Last 30 days\",\"ct2SYD\":\"Last 7 days\",\"x5DnMs\":\"Last modified\",\"C3yOz3\":\"Last updated\",\"9aMJpW\":\"Last updated at\",\"JGvwnU\":\"Last used\",\"Mv8CyJ\":\"Leave\",\"v/uzBS\":\"Leave team\",\"cInPuv\":\"Light Mode\",\"0uqjes\":\"Like to have your own public profile with agreements?\",\"jfN/GZ\":\"Link template\",\"T2q4gy\":[\"Listening to \",[\"0\"]],\"qzZ/NB\":\"Load older activity\",\"Jy3ott\":\"Loading document...\",\"KBQH86\":\"Loading Document...\",\"czE0ko\":\"Loading teams...\",\"Z3FXyt\":\"Loading...\",\"z0t9bb\":\"Login\",\"wckWOP\":\"Manage\",\"HQVCTG\":[\"Manage \",[\"0\"],\"'s profile\"],\"Lp5ut7\":\"Manage all teams you are currently associated with.\",\"NwY95d\":\"Manage details for this public template\",\"OcvAVs\":\"Manage Direct Link\",\"g6RCtA\":\"Manage documents\",\"HVAyb8\":\"Manage passkeys\",\"3jHA5d\":\"Manage subscription\",\"L9IOec\":\"Manage Subscription\",\"KuukYs\":\"Manage subscriptions\",\"DHyAij\":\"Manage team subscription.\",\"lLX9Bl\":\"Manage teams\",\"aA0Gfq\":\"Manage the direct link signing for this template\",\"Ruhuv1\":\"Manage the members or invite new members.\",\"Xef1xw\":\"Manage users\",\"T0vQFD\":\"Manage your passkeys.\",\"4a84Cp\":\"Manage your site settings here\",\"Rbs16H\":\"Mark as Viewed\",\"deqwtZ\":\"MAU (created document)\",\"YgNcJU\":\"MAU (had document completed)\",\"Hn6rI0\":\"Member Since\",\"wlQNTg\":\"Members\",\"FaskIK\":\"Modify recipients\",\"+8Nek/\":\"Monthly\",\"MOyLGl\":\"Monthly Active Users: Users that created at least one Document\",\"5G7Dom\":\"Monthly Active Users: Users that had at least one of their documents completed\",\"QWdKwH\":\"Move\",\"YeRZmm\":\"Move Document to Team\",\"QlQmgo\":\"Move Template to Team\",\"wUBLjS\":\"Move to Team\",\"K8Qnlj\":\"Moving...\",\"en+4fS\":\"My templates\",\"6YtxFj\":\"Name\",\"8VD2is\":\"Need to sign documents?\",\"qqeAJM\":\"Never\",\"OEcKyx\":\"Never expire\",\"QWDm5s\":\"New team owner\",\"K6MO8e\":\"New Template\",\"hXzOVo\":\"Next\",\"ZcbBVB\":\"Next field\",\"G5YKES\":\"No active drafts\",\"PsHKvx\":\"No payment required\",\"OBWbru\":\"No public profile templates found\",\"m0I2ba\":\"No recent activity\",\"IMbagb\":\"No recipients\",\"MZbQHL\":\"No results found.\",\"+5xxir\":\"No token provided\",\"s9Rqzv\":\"No valid direct templates found\",\"l08XJv\":\"No valid recipients found\",\"CSOFdu\":\"No value found.\",\"tRFnIp\":\"No worries, it happens! Enter your email and we'll email you a special link to reset your password.\",\"7aaD1O\":\"Not supported\",\"wkT5xx\":\"Nothing to do\",\"Oizhkg\":\"On this page, you can create a new webhook.\",\"aaavFi\":\"On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation1>.\",\"ZtN+o/\":\"On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here1>\",\"SpqtG7\":\"On this page, you can create new Webhooks and manage the existing ones.\",\"FOWyZB\":\"On this page, you can edit the webhook and its settings.\",\"dM1W5F\":\"Once confirmed, the following will occur:\",\"mZ2nNu\":\"Once you have scanned the QR code or entered the code manually, enter the code provided by your authenticator app below.\",\"udaO9j\":\"Oops! Something went wrong.\",\"OV5wZZ\":\"Opened\",\"ZAVklK\":\"Or\",\"zW+FpA\":\"Or continue with\",\"XUwKbC\":\"Otherwise, the document will be created as a draft.\",\"LtI9AS\":\"Owner\",\"v4nCHK\":\"Paid\",\"FGSN4s\":\"Passkey\",\"8mPPB0\":\"Passkey already exists for the provided authenticator\",\"k/8RhE\":\"Passkey creation cancelled due to one of the following reasons:\",\"knZBf/\":\"Passkey has been removed\",\"1MvYF3\":\"Passkey has been updated\",\"qz7mwn\":\"Passkey name\",\"UZKLEA\":\"Passkeys\",\"v3rPhj\":\"Passkeys allow you to sign in and authenticate using biometrics, password managers, etc.\",\"wsLk4g\":\"Passkeys are not supported on this browser\",\"8ZsakT\":\"Password\",\"ogtYkT\":\"Password updated\",\"4fL/V7\":\"Pay\",\"oyOEbz\":\"Payment is required to finalise the creation of your team.\",\"GptxX/\":\"Payment overdue\",\"UbRKMZ\":\"Pending\",\"Y99ivo\":\"Pending documents\",\"VZJggs\":\"Pending Documents\",\"dSe12f\":\"Pending invitations\",\"pobYPH\":\"Pending team deleted.\",\"7MuXko\":\"Personal\",\"moWIBX\":\"Personal Account\",\"bhE66T\":\"Pick a password\",\"nSCWvF\":\"Pick any of the following agreements below and start signing to get started\",\"LFWYFV\":\"Please check the CSV file and make sure it is according to our format\",\"GUOCNi\":\"Please choose your new password\",\"JcgKEA\":\"Please contact support if you would like to revert this action.\",\"pzDdmv\":\"Please enter a meaningful name for your token. This will help you identify it later.\",\"GqaSjy\":\"Please mark as viewed to complete\",\"jG5btV\":\"Please note that proceeding will remove direct linking recipient and turn it into a placeholder.\",\"Op5XjA\":\"Please note that this action is <0>irreversible0>.\",\"pIF/uD\":\"Please note that this action is <0>irreversible0>. Once confirmed, this document will be permanently deleted.\",\"aYytci\":\"Please note that this action is irreversible. Once confirmed, your template will be permanently deleted.\",\"LIf5dA\":\"Please note that this action is irreversible. Once confirmed, your token will be permanently deleted.\",\"bGHA6C\":\"Please note that this action is irreversible. Once confirmed, your webhook will be permanently deleted.\",\"K2Zlri\":\"Please note that you will lose access to all documents associated with this team & all the members will be removed and notified\",\"VJEW4M\":\"Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support.\",\"Lwg9X/\":\"Please provide a token from your authenticator, or a backup code.\",\"tVQlia\":\"Please try again and make sure you enter the correct email address.\",\"fWCcRl\":\"Please try again later or login using your normal details\",\"PZCqeW\":\"Please try again later.\",\"2oj8HJ\":[\"Please type <0>\",[\"0\"],\"0> to confirm.\"],\"Q6hhn8\":\"Preferences\",\"ghVdS5\":\"Preview and configure template.\",\"zwBp5t\":\"Private\",\"aWLa3z\":\"Private templates can only be modified and viewed by you.\",\"vERlcd\":\"Profile\",\"H8Zk+q\":\"Profile is currently <0>hidden0>.\",\"6zFVy3\":\"Profile is currently <0>visible0>.\",\"srPuxS\":\"Profile updated\",\"7d1a0d\":\"Public\",\"PsWyzr\":\"Public Profile\",\"GCm4vn\":\"Public profile URL\",\"9imnUr\":\"Public profile username\",\"2/o+9Z\":\"Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile.\",\"Zs+87t\":\"Read only field\",\"ckH3fT\":\"Ready\",\"2DmUfb\":\"Reauthentication is required to sign this field\",\"M1HGuR\":\"Recent activity\",\"I3QpvQ\":\"Recipient\",\"evCX7h\":\"Recipient updated\",\"yPrbsy\":\"Recipients\",\"FDT13r\":\"Recipients metrics\",\"cEfPAe\":\"Recipients will still retain their copy of the document\",\"p8zadb\":\"Recovery code copied\",\"x5rgeJ\":\"Recovery codes\",\"ZCl9NH\":\"Registration Successful\",\"cD+FhI\":\"Remembered your password? <0>Sign In0>\",\"t/YqKh\":\"Remove\",\"41G745\":\"Remove team email\",\"8xN0jg\":\"Remove team member\",\"JjG/b1\":\"Repeat Password\",\"Ibjxfr\":\"Request transfer\",\"sDXefy\":\"Reseal document\",\"MyjAbr\":\"Resend\",\"bxoWpz\":\"Resend Confirmation Email\",\"HT2UjS\":\"Resend verification\",\"OfhWJH\":\"Reset\",\"wJZvNq\":\"Reset email sent\",\"KbS2K9\":\"Reset Password\",\"NI0xtv\":\"Resetting Password...\",\"2FoHU3\":\"Resolve\",\"bH0aV9\":\"Resolve payment\",\"6gRgw8\":\"Retry\",\"vUOn9d\":\"Return\",\"dRDE6t\":\"Return to Dashboard\",\"OYOJop\":\"Return to Home\",\"Wkb64i\":\"Return to sign in\",\"GXsAby\":\"Revoke\",\"cg+Poy\":\"Revoke access\",\"GDvlUT\":\"Role\",\"5dJK4M\":\"Roles\",\"tfDRzk\":\"Save\",\"A1taO8\":\"Search\",\"pUjzwQ\":\"Search by document title\",\"Bw5X+M\":\"Search by name or email\",\"8VEDbV\":\"Secret\",\"a3LDKx\":\"Security\",\"HUVI3V\":\"Security activity\",\"rG3WVm\":\"Select\",\"9GwDu7\":\"Select a team\",\"vWi2vu\":\"Select a team to move this document to. This action cannot be undone.\",\"JxCKQ1\":\"Select a team to move this template to. This action cannot be undone.\",\"hyn0QC\":\"Select a template you'd like to display on your public profile\",\"9VGtlg\":\"Select a template you'd like to display on your team's public profile\",\"gBqxYg\":\"Select passkey\",\"471O/e\":\"Send confirmation email\",\"HbN1UH\":\"Send document\",\"qaDvSa\":\"Send reminder\",\"HW5fQk\":\"Sender\",\"DgPgBb\":\"Sending Reset Email...\",\"IoAuJG\":\"Sending...\",\"h69WC6\":\"Sent\",\"bWhxXv\":\"Set a password\",\"Tz0i8g\":\"Settings\",\"RDjuBN\":\"Setup\",\"Z8lGw6\":\"Share\",\"lCEhm/\":\"Share Signing Card\",\"8vETh9\":\"Show\",\"FSjwRy\":\"Show additional information\",\"7Ifo0h\":\"Show templates in your public profile for your audience to sign and get started quickly\",\"lDZq9u\":\"Show templates in your team public profile for your audience to sign and get started quickly\",\"c+Fnce\":\"Sign\",\"oKBjbc\":[\"Sign as \",[\"0\"],\" <0>(\",[\"1\"],\")0>\"],\"M7Y6vg\":[\"Sign as <0>\",[\"0\"],\" <1>(\",[\"1\"],\")1>0>\"],\"D0JgR3\":[\"Sign as<0>\",[\"0\"],\" <1>(\",[\"1\"],\")1>0>\"],\"/8S7J+\":\"Sign document\",\"ceklqr\":\"Sign field\",\"vRw782\":\"Sign Here\",\"n1ekoW\":\"Sign In\",\"NxCJcc\":\"Sign in to your account\",\"bHYIks\":\"Sign Out\",\"Mqwtkp\":\"Sign the document to complete the process.\",\"e+RpCP\":\"Sign up\",\"mErq7F\":\"Sign Up\",\"8fC9B9\":\"Sign Up with Google\",\"l/tATK\":\"Sign Up with OIDC\",\"n+8yVN\":\"Signature\",\"6AjNkO\":\"Signatures Collected\",\"cquXHe\":\"Signatures will appear once the document has been completed\",\"PoH7eg\":\"Signed\",\"XOxZT4\":\"Signing in...\",\"P1wwqN\":\"Signing up...\",\"ltYQCa\":[\"Since \",[\"0\"]],\"67H0kT\":\"Site Banner\",\"aaU5Fl\":\"Site Settings\",\"nwtY4N\":\"Something went wrong\",\"xYdwPA\":[\"Something went wrong while attempting to transfer the ownership of team <0>\",[\"0\"],\"0> to your. Please try again later or contact support.\"],\"/OggdM\":[\"Something went wrong while attempting to verify your email address for <0>\",[\"0\"],\"0>. Please try again later.\"],\"oZO7Po\":\"Something went wrong while loading your passkeys.\",\"qDc2pC\":\"Something went wrong while sending the confirmation email.\",\"2U+48H\":\"Something went wrong while updating the team billing subscription, please contact support.\",\"db0Ycb\":\"Something went wrong. Please try again or contact support.\",\"q16m4+\":\"Sorry, we were unable to download the audit logs. Please try again later.\",\"EUyscw\":\"Sorry, we were unable to download the certificate. Please try again later.\",\"29Hx9U\":\"Stats\",\"uAQUqI\":\"Status\",\"EDl9kS\":\"Subscribe\",\"WVzGc2\":\"Subscription\",\"P6F38F\":\"Subscriptions\",\"zzDlyQ\":\"Success\",\"f8RSgi\":\"Successfully created passkey\",\"3WgMId\":\"System Theme\",\"KM6m8p\":\"Team\",\"ZTKtIH\":\"Team checkout\",\"WUM2yD\":\"Team email\",\"rkqgH1\":\"Team Email\",\"2FRR+Z\":\"Team email already verified!\",\"5GbQa1\":\"Team email has been removed\",\"rW28ga\":\"Team email verification\",\"/9ZeEl\":\"Team email verified!\",\"Ww6njg\":\"Team email was updated.\",\"h3p3UT\":\"Team invitation\",\"am190B\":\"Team invitations have been sent.\",\"IJFhQ+\":\"Team Member\",\"EEjL2F\":\"Team Name\",\"alTHVO\":\"Team Only\",\"cvMRdF\":\"Team only templates are not linked anywhere and are visible only to your team.\",\"sSUQSW\":\"Team ownership transfer\",\"NnCr+1\":\"Team ownership transfer already completed!\",\"GzR8VI\":\"Team ownership transferred!\",\"qzHZC+\":\"Team Public Profile\",\"wkzD+0\":\"Team settings\",\"oMfDc9\":\"Team Settings\",\"NONu1b\":\"Team templates\",\"Feqf5k\":\"Team transfer in progress\",\"oXkHk2\":\"Team transfer request expired\",\"IwrHI3\":\"Team URL\",\"CAL6E9\":\"Teams\",\"qKgabb\":\"Teams restricted\",\"/K2CvV\":\"Template\",\"ZTgE3k\":\"Template deleted\",\"7ZORe4\":\"Template document uploaded\",\"Vmoj8n\":\"Template duplicated\",\"3MMlXX\":\"Template has been removed from your public profile.\",\"eupjqf\":\"Template has been updated.\",\"I1vdWI\":\"Template moved\",\"GamjcN\":\"Template saved\",\"iTylMl\":\"Templates\",\"mKknmt\":\"Templates allow you to quickly generate documents with pre-filled recipients and fields.\",\"HmA4Lf\":\"Text Color\",\"jB6Wb0\":\"The account has been deleted successfully.\",\"YPAOfJ\":\"The content to show in the banner, HTML is allowed\",\"+lDHlp\":\"The direct link has been copied to your clipboard\",\"HdogiK\":\"The document has been successfully moved to the selected team.\",\"8TDHmX\":\"The document is now completed, please follow any instructions provided within the parent application.\",\"JaqmMD\":\"The document was created but could not be sent to recipients.\",\"D6V5NE\":\"The document will be hidden from your account\",\"kn3D/u\":\"The document will be immediately sent to recipients if this is checked.\",\"S20Dp9\":\"The events that will trigger a webhook to be sent to your URL.\",\"3BvEti\":[\"The ownership of team <0>\",[\"0\"],\"0> has been successfully transferred to you.\"],\"jiv3IP\":\"The page you are looking for was moved, removed, renamed or might never have existed.\",\"v7aFZT\":\"The profile link has been copied to your clipboard\",\"L9/hN3\":\"The profile you are looking for could not be found.\",\"M2Tl+5\":\"The public description that will be displayed with this template\",\"Bar5Ss\":\"The public name for your template\",\"RL/wwM\":\"The recipient has been updated successfully\",\"aHhSPO\":\"The selected team member will receive an email which they must accept before the team is transferred\",\"so3oXj\":\"The signing link has been copied to your clipboard.\",\"kXciaM\":\"The site banner is a message that is shown at the top of the site. It can be used to display important information to your users.\",\"XaNqYt\":\"The team transfer invitation has been successfully deleted.\",\"DyE711\":[\"The team transfer request to <0>\",[\"0\"],\"0> has expired.\"],\"RLyuG2\":\"The team you are looking for may have been removed, renamed or may have never existed.\",\"wIrx7T\":\"The template has been successfully moved to the selected team.\",\"J+X6HZ\":\"The template will be removed from your profile\",\"9VV//K\":\"The template you are looking for may have been disabled, deleted or may have never existed.\",\"tkv54w\":\"The token was copied to your clipboard.\",\"5cysp1\":\"The token was deleted successfully.\",\"oddVEW\":\"The token you have used to reset your password is either expired or it never existed. If you have still forgotten your password, please request a new reset link.\",\"Orj1pl\":\"The URL for Documenso to send webhook events to.\",\"V92DHZ\":\"The webhook has been successfully deleted.\",\"mlHeCX\":\"The webhook has been updated successfully.\",\"V+5KQa\":\"The webhook was successfully created.\",\"k/INkj\":\"There are no active drafts at the current moment. You can upload a document to start drafting.\",\"ySoKla\":\"There are no completed documents yet. Documents that you have created or received will appear here once completed.\",\"9aYXQv\":\"They have permission on your behalf to:\",\"3ap2Vv\":\"This action is not reversible. Please be certain.\",\"6S2SIc\":\"This document could not be deleted at this time. Please try again.\",\"9q30Lx\":\"This document could not be duplicated at this time. Please try again.\",\"u/cYe5\":\"This document could not be re-sent at this time. Please try again.\",\"240BLI\":\"This document has been cancelled by the owner and is no longer available for others to sign.\",\"UdLWn3\":\"This document has been cancelled by the owner.\",\"K8RH4n\":\"This document has been signed by all recipients\",\"1M0Ssi\":\"This document is currently a draft and has not been sent\",\"LLfa/G\":\"This email is already being used by another team.\",\"YrKIxa\":\"This link is invalid or has expired. Please contact your team to resend a transfer request.\",\"iN8uoK\":\"This link is invalid or has expired. Please contact your team to resend a verification.\",\"b7CscR\":\"This passkey has already been registered.\",\"JMu+vE\":\"This passkey is not configured for this application. Please login and add one in the user settings.\",\"0ES9GX\":\"This price includes minimum 5 seats.\",\"0rusOU\":\"This session has expired. Please try again.\",\"ApCva8\":\"This team, and any associated data excluding billing invoices will be permanently deleted.\",\"1ABR2W\":\"This template could not be deleted at this time. Please try again.\",\"PJUOEm\":\"This token is invalid or has expired. No action is needed.\",\"4WY92K\":\"This token is invalid or has expired. Please contact your team for a new invitation.\",\"6HNLKb\":\"This URL is already in use.\",\"/yOKAT\":\"This username has already been taken\",\"ea/Ia+\":\"This username is already taken\",\"LhMjLm\":\"Time\",\"Mz2JN2\":\"Time zone\",\"MHrjPM\":\"Title\",\"TF1e2Y\":\"To accept this invitation you must create an account.\",\"9e4NKS\":\"To change the email you must remove and add a new email address.\",\"E3QGBV\":[\"To confirm, please enter the accounts email address <0/>(\",[\"0\"],\").\"],\"/ngXqQ\":\"To confirm, please enter the reason\",\"Z/LRzj\":\"To decline this invitation you must create an account.\",\"QyrRrh\":\"To enable two-factor authentication, scan the following QR code using your authenticator app.\",\"mX0XNr\":\"To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox.\",\"THQgMC\":[\"To mark this document as viewed, you need to be logged in as <0>\",[\"0\"],\"0>\"],\"jlBOs+\":\"To view this document you need to be signed into your account, please sign in to continue.\",\"Tkvndv\":\"Toggle the switch to hide your profile from the public.\",\"X3Df6T\":\"Toggle the switch to show your profile to the public.\",\"TP9/K5\":\"Token\",\"SWyfbd\":\"Token copied to clipboard\",\"OBjhQ4\":\"Token created\",\"B5MBOV\":\"Token deleted\",\"nwwDj8\":\"Token doesn't have an expiration date\",\"v/TQsS\":\"Token expiration date\",\"SKZhW9\":\"Token name\",\"/mWwgA\":\"Total Documents\",\"dKGGPw\":\"Total Recipients\",\"WLfBMX\":\"Total Signers that Signed Up\",\"vb0Q0/\":\"Total Users\",\"PsdN6O\":\"Transfer ownership of this team to a selected team member.\",\"OOrbmP\":\"Transfer team\",\"TAB7/M\":\"Transfer the ownership of the team to another team member.\",\"34nxyb\":\"Triggers\",\"0s6zAM\":\"Two factor authentication\",\"rkM+2p\":\"Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app.\",\"C4pKXW\":\"Two-Factor Authentication\",\"NwChk2\":\"Two-factor authentication disabled\",\"qwpE/S\":\"Two-factor authentication enabled\",\"Rirbh5\":\"Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in.\",\"+zy2Nq\":\"Type\",\"fn5guJ\":\"Type 'delete' to confirm\",\"aLB9e4\":\"Type a command or search...\",\"NKs0zG\":\"Uh oh! Looks like you're missing a token\",\"syy3Gt\":\"Unable to copy recovery code\",\"CRCTCg\":\"Unable to copy token\",\"IFfB53\":\"Unable to create direct template access. Please try again later.\",\"gVlUC8\":\"Unable to decline this team invitation at this time.\",\"Y+wsI7\":\"Unable to delete invitation. Please try again.\",\"UCeveL\":\"Unable to delete team\",\"wp9XuY\":\"Unable to disable two-factor authentication\",\"kIV9PR\":\"Unable to join this team at this time.\",\"KFBm7R\":\"Unable to load document history\",\"NodEs1\":\"Unable to load your public profile templates at this time\",\"vklymD\":\"Unable to remove email verification at this time. Please try again.\",\"w8n1+z\":\"Unable to remove team email at this time. Please try again.\",\"akFhsV\":\"Unable to resend invitation. Please try again.\",\"JQLFI3\":\"Unable to resend verification at this time. Please try again.\",\"jLtRR6\":\"Unable to reset password\",\"QtkcKO\":\"Unable to setup two-factor authentication\",\"N1m2oU\":\"Unable to sign in\",\"dA/8If\":\"Unauthorized\",\"9zMI6W\":\"Uncompleted\",\"29VNqC\":\"Unknown error\",\"7yiFvZ\":\"Unpaid\",\"EkH9pt\":\"Update\",\"CVGIOg\":\"Update Banner\",\"MSfA8z\":\"Update passkey\",\"Q3MPWA\":\"Update password\",\"vXPSuB\":\"Update profile\",\"ih1ndv\":\"Update Recipient\",\"5bRMKt\":\"Update role\",\"qg6EfE\":\"Update team\",\"V8JgFA\":\"Update team email\",\"DDP/NH\":\"Update team member\",\"KAyssy\":\"Update user\",\"iFdgvQ\":\"Update webhook\",\"2uDkRs\":\"Updating password...\",\"6JH8iK\":\"Updating profile...\",\"jUV7CU\":\"Upload Avatar\",\"2npSeV\":\"Uploaded by\",\"bM+XCB\":\"Uploaded file is too large\",\"fXh9EJ\":\"Uploaded file is too small\",\"mnNw0z\":\"Uploaded file not an allowed file type\",\"5UWfU/\":\"Use Authenticator\",\"VLViRK\":\"Use Backup Code\",\"NUXH2v\":\"Use Template\",\"7PzzBU\":\"User\",\"GjhOGB\":\"User ID\",\"DgDMhU\":\"User profiles are here!\",\"lcDO4m\":\"User settings\",\"Sxm8rQ\":\"Users\",\"wMHvYH\":\"Value\",\"BGWaEQ\":\"Verification Email Sent\",\"XZQ6rx\":\"Verification email sent successfully.\",\"ZqWgxB\":\"Verify Now\",\"kuvvht\":\"Verify your email address\",\"c9ZsJU\":\"Verify your email address to unlock all features.\",\"OUPY2G\":\"Verify your email to upload documents.\",\"jpctdh\":\"View\",\"c3aao/\":\"View activity\",\"pTCu0c\":\"View all documents sent to your account\",\"F8qz8t\":\"View all recent security activity related to your account.\",\"t3iQF8\":\"View all security activity related to your account.\",\"t5bHu+\":\"View Codes\",\"Opb2rO\":\"View documents associated with this email\",\"FbRyw+\":\"View invites\",\"kGkM7n\":\"View Original Document\",\"z0hW8A\":\"View Recovery Codes\",\"+SRqZk\":\"View teams\",\"vXtpAZ\":\"Viewed\",\"uUehLT\":\"Waiting\",\"p5sNpe\":\"Waiting for others to sign\",\"CLj7L4\":\"Want to send slick signing links like this one? <0>Check out Documenso.0>\",\"AVOxgl\":\"Want your own public profile?\",\"bJajhk\":\"We are unable to proceed to the billing portal at this time. Please try again, or contact support.\",\"mrAou1\":\"We are unable to remove this passkey at the moment. Please try again later.\",\"PVmZRU\":\"We are unable to update this passkey at the moment. Please try again later.\",\"4CEdkv\":\"We encountered an error while removing the direct template link. Please try again later.\",\"9dCMy6\":\"We encountered an error while updating the webhook. Please try again later.\",\"/666TS\":\"We encountered an unknown error while attempting create the new token. Please try again later.\",\"ghtOmL\":\"We encountered an unknown error while attempting to add this email. Please try again later.\",\"Z3g6da\":\"We encountered an unknown error while attempting to create a team. Please try again later.\",\"5jf+Ky\":\"We encountered an unknown error while attempting to delete it. Please try again later.\",\"BYsCZ0\":\"We encountered an unknown error while attempting to delete the pending team. Please try again later.\",\"X1sSV9\":\"We encountered an unknown error while attempting to delete this team. Please try again later.\",\"kQiucd\":\"We encountered an unknown error while attempting to delete this token. Please try again later.\",\"QbeZrm\":\"We encountered an unknown error while attempting to delete your account. Please try again later.\",\"RFJXMf\":\"We encountered an unknown error while attempting to invite team members. Please try again later.\",\"NOJmg5\":\"We encountered an unknown error while attempting to leave this team. Please try again later.\",\"p1cQqG\":\"We encountered an unknown error while attempting to remove this template from your profile. Please try again later.\",\"dWt6qq\":\"We encountered an unknown error while attempting to remove this transfer. Please try again or contact support.\",\"Bf8/oy\":\"We encountered an unknown error while attempting to remove this user. Please try again later.\",\"+dHRXe\":\"We encountered an unknown error while attempting to request a transfer of this team. Please try again later.\",\"zKkKFY\":\"We encountered an unknown error while attempting to reset your password. Please try again later.\",\"jMJahr\":\"We encountered an unknown error while attempting to revoke access. Please try again or contact support.\",\"v7NHq3\":\"We encountered an unknown error while attempting to save your details. Please try again later.\",\"H2R2SX\":\"We encountered an unknown error while attempting to sign you In. Please try again later.\",\"lFQvqg\":\"We encountered an unknown error while attempting to sign you up. Please try again later.\",\"tIdO3I\":\"We encountered an unknown error while attempting to sign you Up. Please try again later.\",\"s7WVvm\":\"We encountered an unknown error while attempting to update the avatar. Please try again later.\",\"t2qome\":\"We encountered an unknown error while attempting to update the banner. Please try again later.\",\"KRW9aV\":\"We encountered an unknown error while attempting to update the template. Please try again later.\",\"jSzwNQ\":\"We encountered an unknown error while attempting to update this team member. Please try again later.\",\"ZAGznT\":\"We encountered an unknown error while attempting to update your password. Please try again later.\",\"/YgkWz\":\"We encountered an unknown error while attempting to update your public profile. Please try again later.\",\"PgR2KT\":\"We encountered an unknown error while attempting to update your team. Please try again later.\",\"Fkk/tM\":\"We encountered an unknown error while attempting update the team email. Please try again later.\",\"XdaMt1\":\"We have sent a confirmation email for verification.\",\"Z/3o7q\":\"We were unable to copy the token to your clipboard. Please try again.\",\"/f76sW\":\"We were unable to copy your recovery code to your clipboard. Please try again.\",\"5Elc4g\":\"We were unable to create a checkout session. Please try again, or contact support\",\"bw0W5A\":\"We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again.\",\"Ckd2da\":\"We were unable to log you out at this time.\",\"PGrghQ\":\"We were unable to set your public profile to public. Please try again.\",\"I8Rr9j\":\"We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again.\",\"/Ez2eA\":\"We were unable to submit this document at this time. Please try again later.\",\"zfClNd\":\"We were unable to verify your details. Please try again or contact support\",\"791g1I\":\"We were unable to verify your email. If your email is not verified already, please try again.\",\"xxInDV\":\"We're all empty\",\"lgW1qG\":[\"We've sent a confirmation email to <0>\",[\"email\"],\"0>. Please check your inbox and click the link in the email to verify your account.\"],\"an6ayw\":\"Webhook created\",\"LnaC5y\":\"Webhook deleted\",\"kxZ7LS\":\"Webhook updated\",\"nuh/Wq\":\"Webhook URL\",\"v1kQyJ\":\"Webhooks\",\"4XSc4l\":\"Weekly\",\"nx8adn\":\"Welcome back, we are lucky to have you.\",\"v+iPzY\":\"When you click continue, you will be prompted to add the first available authenticator on your system.\",\"ks103z\":\"While waiting for them to do so you can create your own Documenso account and get started with document signing right away.\",\"gW6iyU\":\"Who do you want to remind?\",\"WCtNlH\":\"Write about the team\",\"RB+i+e\":\"Write about yourself\",\"zkWmBh\":\"Yearly\",\"kWJmRL\":\"You\",\"H0+WHg\":[\"You are about to complete approving \\\"\",[\"truncatedTitle\"],\"\\\".<0/> Are you sure?\"],\"kzE21T\":[\"You are about to complete signing \\\"\",[\"truncatedTitle\"],\"\\\".<0/> Are you sure?\"],\"9AVWSg\":[\"You are about to complete viewing \\\"\",[\"truncatedTitle\"],\"\\\".<0/> Are you sure?\"],\"wPAx3W\":[\"You are about to delete <0>\\\"\",[\"documentTitle\"],\"\\\"0>\"],\"bnSqz9\":[\"You are about to delete the following team email from <0>\",[\"teamName\"],\"0>.\"],\"5K1f43\":[\"You are about to hide <0>\\\"\",[\"documentTitle\"],\"\\\"0>\"],\"Z7Zba7\":\"You are about to leave the following team.\",\"w4DsUu\":[\"You are about to remove the following user from <0>\",[\"teamName\"],\"0>.\"],\"3TbP+M\":[\"You are about to revoke access for team <0>\",[\"0\"],\"0> (\",[\"1\"],\") to use your email.\"],\"km5WYz\":\"You are currently on the <0>Free Plan0>.\",\"lS8/qb\":[\"You are currently subscribed to <0>\",[\"0\"],\"0>\"],\"vELAGq\":[\"You are currently updating <0>\",[\"teamMemberName\"],\".0>\"],\"9Vb1lk\":[\"You are currently updating the <0>\",[\"passkeyName\"],\"0> passkey.\"],\"fE9efX\":\"You are not authorized to view this page.\",\"xGF8ow\":\"You can choose to enable or disable your profile for public view.\",\"knayUe\":\"You can choose to enable or disable your team profile for public view.\",\"6RWhw7\":\"You can claim your profile later on by going to your profile settings!\",\"wvsTRr\":\"You can update the profile URL by updating the team URL in the general settings page.\",\"MfJtjp\":\"You can view documents associated with this email and use this identity when sending documents.\",\"q1+l2h\":[\"You cannot have more than \",[\"MAXIMUM_PASSKEYS\"],\" passkeys.\"],\"Nv8I50\":\"You cannot modify a team member who has a higher role than you.\",\"tBM5rt\":\"You cannot upload encrypted PDFs\",\"uPZVOC\":\"You currently have an active plan\",\"vGmUyC\":\"You do not currently have a customer record, this should not happen. Please contact support for assistance.\",\"COkiAI\":[\"You have accepted an invitation from <0>\",[\"0\"],\"0> to join their team.\"],\"XJ/LXV\":[\"You have already completed the ownership transfer for <0>\",[\"0\"],\"0>.\"],\"udOfln\":[\"You have already verified your email address for <0>\",[\"0\"],\"0>.\"],\"rawUsl\":[\"You have been invited by <0>\",[\"0\"],\"0> to join their team.\"],\"C5iBwQ\":[\"You have declined the invitation from <0>\",[\"0\"],\"0> to join their team.\"],\"9vc55I\":\"You have no webhooks yet. Your webhooks will be shown here once you create them.\",\"MWXNow\":\"You have not yet created any templates. To create a template please upload one.\",\"qJTcfP\":\"You have not yet created or received any documents. To create a document please upload one.\",\"yvV4GX\":[\"You have reached the maximum limit of \",[\"0\"],\" direct templates. <0>Upgrade your account to continue!0>\"],\"m5RA9C\":\"You have reached your document limit.\",\"K/3HUN\":\"You have reached your document limit. <0>Upgrade your account to continue!0>\",\"dURxlX\":\"You have successfully left this team.\",\"vi6pfe\":\"You have successfully registered. Please verify your account by clicking on the link you received in the email.\",\"B5Ovxs\":\"You have successfully removed this user from the team.\",\"PIl3Hg\":\"You have successfully revoked access.\",\"Z1UZXO\":[\"You have updated \",[\"teamMemberName\"],\".\"],\"tD6Cj2\":[\"You have verified your email address for <0>\",[\"0\"],\"0>.\"],\"pNlz0U\":\"You must be an admin of this team to manage billing.\",\"xIaz3h\":\"You must enter {confirmTransferMessage} to proceed\",\"OGT1bh\":\"You must enter {deleteMessage} to proceed\",\"jifgCp\":\"You must have at least one other team member to transfer ownership.\",\"ID3LkG\":\"You must set a profile URL before enabling your public profile.\",\"zfliFq\":[\"You need to be logged in as <0>\",[\"email\"],\"0> to view this page.\"],\"1et3k8\":\"You need to be logged in to view this page.\",\"ZR9lKP\":\"You need to setup 2FA to mark this document as viewed.\",\"tKEndc\":\"You will get notified & be able to set up your documenso public profile when we launch the feature.\",\"MBzXsC\":\"You will now be required to enter a code from your authenticator app when signing in.\",\"eWlnaX\":\"You will receive an Email copy of the signed document once everyone has signed.\",\"gmJH7Y\":\"Your account has been deleted successfully.\",\"YL3Iyk\":\"Your avatar has been updated successfully.\",\"c4qhbN\":\"Your banner has been updated successfully.\",\"+Ljs6n\":\"Your current plan is past due. Please update your payment information.\",\"5s2EJQ\":\"Your direct signing templates\",\"pj2JS8\":\"Your document failed to upload.\",\"DIplUX\":\"Your document has been created from the template successfully.\",\"iz6qAJ\":\"Your document has been re-sent successfully.\",\"0KIVTr\":\"Your document has been sent successfully.\",\"vbvBKY\":\"Your document has been successfully duplicated.\",\"TqcK/s\":\"Your document has been uploaded successfully.\",\"xEM9BR\":\"Your document has been uploaded successfully. You will be redirected to the template page.\",\"F2NQI1\":\"Your documents\",\"JQbHxK\":\"Your email has been successfully confirmed! You can now use all features of Documenso.\",\"pSDzas\":[\"Your email is currently being used by team <0>\",[\"0\"],\"0> (\",[\"1\"],\").\"],\"K6mQ0w\":\"Your existing tokens\",\"Ecp9Z/\":\"Your password has been updated successfully.\",\"/tDdSk\":\"Your payment for teams is overdue. Please settle the payment to avoid any service disruptions.\",\"R+Yx9f\":\"Your profile has been updated successfully.\",\"skqRDH\":\"Your profile has been updated.\",\"kF7YFF\":\"Your public profile has been updated.\",\"XnIGua\":\"Your recovery code has been copied to your clipboard.\",\"/N3QQp\":\"Your recovery codes are listed below. Please store them in a safe place.\",\"o9X4Qf\":\"Your subscription is currently active.\",\"+fTW4I\":\"Your team has been created.\",\"DCGKPd\":\"Your team has been successfully deleted.\",\"7rm0si\":\"Your team has been successfully updated.\",\"icNCVp\":\"Your template has been duplicated successfully.\",\"juxjhy\":\"Your template has been successfully deleted.\",\"BHaG+M\":\"Your template will be duplicated.\",\"WQkZGA\":\"Your templates has been saved successfully.\",\"4OcZNw\":\"Your token has expired!\",\"stera3\":\"Your token was created successfully! Make sure to copy it because you won't be able to see it again!\",\"R5j6t5\":\"Your tokens will be shown here once you create them.\",\"73XXzw\":[[\"0\"],\" of \",[\"1\"],\" row(s) selected.\"],\"lZ4w45\":[[\"visibleRows\",\"plural\",{\"one\":[\"Showing \",\"#\",\" result.\"],\"other\":[\"Showing \",\"#\",\" results.\"]}]],\"AhYxw5\":\"<0>Inherit authentication method0> - Use the global action signing authentication method configured in the \\\"General Settings\\\" step\",\"OepImG\":\"<0>No restrictions0> - No authentication required\",\"07+JZ2\":\"<0>No restrictions0> - The document can be accessed directly by the URL sent to the recipient\",\"jx/lwn\":\"<0>None0> - No authentication required\",\"CUT3u1\":\"<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings\",\"2PbD3D\":\"<0>Require account0> - The recipient must be signed in to view the document\",\"QHSbey\":\"<0>Require passkey0> - The recipient must have an account and passkey configured via their settings\",\"Oy5nEc\":\"Add a document\",\"7Pz5x5\":\"Add a URL to redirect the user to once the document is signed\",\"aILOUH\":\"Add an external ID to the document. This can be used to identify the document in external systems.\",\"bK1dPK\":\"Add an external ID to the template. This can be used to identify in external systems.\",\"nnZ1Sa\":\"Add another option\",\"0/UVRw\":\"Add another value\",\"VaCh6w\":\"Add myself\",\"jAa/lz\":\"Add Myself\",\"29QK6H\":\"Add Placeholder Recipient\",\"vcxlzZ\":\"Add Signer\",\"7F2ltK\":\"Add text to the field\",\"U3pytU\":\"Admin\",\"NFIOKv\":\"Advanced Options\",\"VNgKZz\":\"Advanced settings\",\"bNUpvl\":\"After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email.\",\"ca9AbO\":\"Approver\",\"j2Uisd\":\"Approving\",\"brJrDl\":\"Cannot remove signer\",\"RpYfjZ\":\"Cc\",\"XdZeJk\":\"CC\",\"nrL/ZD\":\"CC'd\",\"EEk+d0\":\"Character Limit\",\"G1XxbZ\":\"Checkbox\",\"wbixMe\":\"Checkbox values\",\"u8JHrO\":\"Clear filters\",\"IqxkER\":\"Clear Signature\",\"OrcxNk\":\"Configure Direct Recipient\",\"92KLYs\":[\"Configure the \",[\"0\"],\" field\"],\"GB2F11\":\"Custom Text\",\"4BHv90\":\"Date Format\",\"NLXhq7\":\"Direct link receiver\",\"YScG1E\":\"Document access\",\"rAqi0g\":\"Document Creation\",\"6GyScL\":\"Drag & drop your PDF here.\",\"iKQcPM\":\"Dropdown\",\"XXvhMd\":\"Dropdown options\",\"XLpxoj\":\"Email Options\",\"f7sXvi\":\"Enter password\",\"5KfWxA\":\"External ID\",\"4CP+OV\":\"Failed to save settings.\",\"LK3SFK\":\"Field character limit\",\"NYkIsf\":\"Field format\",\"X6Tb6Q\":\"Field label\",\"NaVkSD\":\"Field placeholder\",\"N1UTWT\":\"Global recipient action authentication\",\"uCroPU\":\"I am a signer of this document\",\"K6KTX2\":\"I am a viewer of this document\",\"ngj5km\":\"I am an approver of this document\",\"JUZIGu\":\"I am required to receive a copy of this document\",\"ZjDoG7\":\"I am required to recieve a copy of this document\",\"fnbcC0\":\"Inherit authentication method\",\"87a/t/\":\"Label\",\"dtOoGl\":\"Manager\",\"CK1KXz\":\"Max\",\"OvoEq7\":\"Member\",\"ziXm9u\":\"Message <0>(Optional)0>\",\"eTUF28\":\"Min\",\"4nqUV0\":\"Needs to approve\",\"lNQBPg\":\"Needs to sign\",\"eUAUyG\":\"Needs to view\",\"GBIRGD\":\"No recipient matching this description was found.\",\"f34Qxi\":\"No recipients with this role\",\"qQ7oqE\":\"No restrictions\",\"AxPAXW\":\"No results found\",\"pt86ev\":\"No signature field found\",\"HptUxX\":\"Number\",\"bR2sEm\":\"Number format\",\"eY6ns+\":\"Once enabled, you can select any active recipient to be a direct link signing recipient, or create a new one. This recipient type cannot be edited or deleted.\",\"JE2qy+\":\"Once your template is set up, share the link anywhere you want. The person who opens the link will be able to enter their information in the direct link recipient field and complete any other fields assigned to them.\",\"fpzyLj\":[\"Page \",[\"0\"],\" of \",[\"1\"]],\"8ltyoa\":\"Password Required\",\"ayaTI6\":\"Pick a number\",\"hx1ePY\":\"Placeholder\",\"MtkqZc\":\"Radio\",\"5cEi0C\":\"Radio values\",\"uNQ6eB\":\"Read only\",\"UTnF5X\":\"Receives copy\",\"ZIuo5V\":\"Recipient action authentication\",\"VTB2Rz\":\"Redirect URL\",\"8dg+Yo\":\"Required field\",\"xxCtZv\":\"Rows per page\",\"9Y3hAT\":\"Save Template\",\"hVPa4O\":\"Select an option\",\"IM+vrQ\":\"Select at least\",\"Gve6FG\":\"Select default option\",\"JlFcis\":\"Send\",\"AEV4wo\":\"Send Document\",\"iE3nGO\":\"Share Signature Card\",\"y+hKWu\":\"Share the Link\",\"ydZ6yi\":\"Show advanced settings\",\"jTCAGu\":\"Signer\",\"6G8s+q\":\"Signing\",\"kW2h2Z\":\"Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding.\",\"kf83Ld\":\"Something went wrong.\",\"WlBiWh\":[\"Step <0>\",[\"step\"],\" of \",[\"maxStep\"],\"0>\"],\"ki77Td\":\"Subject <0>(Optional)0>\",\"hQRttt\":\"Submit\",\"URdrTr\":\"Template title\",\"xeiujy\":\"Text\",\"imClgr\":\"The authentication required for recipients to sign fields\",\"yyD2dE\":\"The authentication required for recipients to sign the signature field.\",\"GtDmLf\":\"The authentication required for recipients to view the document.\",\"zAoaPB\":\"The document's name\",\"Ev3GOS\":\"The password you have entered is incorrect. Please try again.\",\"OPnnb6\":\"The recipient is not required to take any action and receives a copy of the document after it is completed.\",\"v8p6Mb\":\"The recipient is required to approve the document for it to be completed.\",\"CPv0TB\":\"The recipient is required to sign the document for it to be completed.\",\"oIvIfH\":\"The recipient is required to view the document for it to be completed.\",\"Br2bvS\":\"The sharing link could not be created at this time. Please try again.\",\"XJIzqY\":\"The sharing link has been copied to your clipboard.\",\"UyM8/E\":\"The signer's email\",\"zHJ+vk\":\"The signer's name\",\"kaEF2i\":\"This can be overriden by setting the authentication requirements directly on each recipient in the next step.\",\"QUZVfd\":\"This document has already been sent to this recipient. You can no longer edit this recipient.\",\"riNGUC\":\"This document is password protected. Please enter the password to view the document.\",\"Qkeh+t\":\"This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them.\",\"l2Xt6u\":\"This signer has already received the document.\",\"6iFh5a\":\"This will override any global settings.\",\"RxsRD6\":\"Time Zone\",\"UWmOq4\":[\"To proceed further, please set at least one value for the \",[\"0\"],\" field.\"],\"GT+2nz\":\"Update the role and add fields as required for the direct recipient. The individual who uses the direct link will sign the document as the direct recipient.\",\"kwkhPe\":\"Upgrade\",\"06fEqf\":\"Upload Template Document\",\"lGWE4b\":\"Validation\",\"M/TIv1\":\"Viewer\",\"RVWz5F\":\"Viewing\",\"4/hUq0\":\"You are about to send this document to the recipients. Are you sure you want to continue?\",\"rb/T41\":\"You can use the following variables in your message:\",\"9+Ph0R\":\"You cannot upload documents at this time.\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"4CkA8m\":[\"\\\"\",[\"0\"],\"\\\" will appear on the document as it has a timezone of \\\"\",[\"timezone\"],\"\\\".\"],\"PGXGNV\":[\"\\\"\",[\"documentTitle\"],\"\\\" has been successfully deleted\"],\"ibh+jM\":[\"(\",[\"0\"],\") has invited you to approve this document\"],\"Hdo1JO\":[\"(\",[\"0\"],\") has invited you to sign this document\"],\"wPU8t5\":[\"(\",[\"0\"],\") has invited you to view this document\"],\"1mCQTM\":[[\"0\",\"plural\",{\"one\":\"(1 character over)\",\"other\":[\"(\",\"#\",\" characters over)\"]}]],\"8laXJX\":[[\"0\",\"plural\",{\"one\":[\"#\",\" character over the limit\"],\"other\":[\"#\",\" characters over the limit\"]}]],\"/7wuBM\":[[\"0\",\"plural\",{\"one\":[\"#\",\" recipient\"],\"other\":[\"#\",\" recipients\"]}]],\"WVvaAa\":[[\"0\",\"plural\",{\"one\":[\"#\",\" Seat\"],\"other\":[\"#\",\" Seats\"]}]],\"mBW/Nj\":[[\"0\",\"plural\",{\"one\":\"<0>You have <1>11> pending team invitation0>\",\"other\":[\"<2>You have <3>\",\"#\",\"3> pending team invitations2>\"]}]],\"+Futv0\":[[\"0\",\"plural\",{\"one\":\"1 Recipient\",\"other\":[\"#\",\" Recipients\"]}]],\"/9xV/+\":[[\"0\",\"plural\",{\"one\":\"Waiting on 1 recipient\",\"other\":[\"Waiting on \",\"#\",\" recipients\"]}]],\"NKVaV/\":[[\"0\",\"plural\",{\"zero\":\"Select values\",\"other\":[\"#\",\" selected...\"]}]],\"XZlK7r\":[[\"0\"],\" direct signing templates\"],\"FDQtbR\":[[\"0\"],\" document\"],\"NnFCoc\":[[\"0\"],\" of \",[\"1\"],\" documents remaining this month.\"],\"5YOFTl\":[[\"0\"],\" Recipient(s)\"],\"7VC/RF\":[[\"0\"],\" the document to complete the process.\"],\"fjZZE0\":[[\"charactersRemaining\",\"plural\",{\"one\":\"1 character remaining\",\"other\":[[\"charactersRemaining\"],\" characters remaining\"]}]],\"AQAq/V\":[[\"formattedTeamMemberQuanity\"],\" • Monthly • Renews: \",[\"formattedDate\"]],\"QBOMc/\":[[\"numberOfSeats\",\"plural\",{\"one\":[\"#\",\" member\"],\"other\":[\"#\",\" members\"]}]],\"B/VHou\":[[\"remaningLength\",\"plural\",{\"one\":[\"#\",\" character remaining\"],\"other\":[\"#\",\" characters remaining\"]}]],\"Z5MlD3\":[\"<0>\\\"\",[\"0\"],\"\\\"0>is no longer available to sign\"],\"xvzJ86\":\"<0>Sender:0> All\",\"mVRii8\":\"404 Page not found\",\"WZHDfC\":\"404 Profile not found\",\"4lyY0m\":\"404 Team not found\",\"In0QZI\":\"404 Template not found\",\"1a1ztU\":\"A confirmation email has been sent, and it should arrive in your inbox shortly.\",\"0JoPTv\":\"A draft document will be created\",\"pYI9yv\":\"A new token was created successfully.\",\"FnK1CG\":\"A password reset email has been sent, if you have an account you should see it in your inbox shortly.\",\"GtLRrc\":[\"A request to transfer the ownership of this team has been sent to <0>\",[\"0\"],\" (\",[\"1\"],\")0>\"],\"EUAIAh\":\"A secret that will be sent to your URL so you can verify that the request has been sent by Documenso\",\"FUzxsL\":\"A secret that will be sent to your URL so you can verify that the request has been sent by Documenso.\",\"h39O4b\":\"A unique URL to access your profile\",\"B26oYX\":\"A unique URL to identify your team\",\"YKB66I\":\"A verification email will be sent to the provided email.\",\"g3UF2V\":\"Accept\",\"f8bc61\":\"Accepted team invitation\",\"TKFUnX\":\"Account deleted\",\"bwRvnp\":\"Action\",\"7L01XJ\":\"Actions\",\"F6pfE9\":\"Active\",\"i1lpSD\":\"Active Subscriptions\",\"m16xKo\":\"Add\",\"qkB+9Q\":\"Add all relevant fields for each recipient.\",\"bpOeyo\":\"Add all relevant placeholders for each recipient.\",\"GQ/q/T\":\"Add an authenticator to serve as a secondary authentication method for signing documents.\",\"o7gocE\":\"Add an authenticator to serve as a secondary authentication method when signing in, or when signing documents.\",\"bJUlXv\":\"Add email\",\"S/w/ui\":\"Add Fields\",\"iOiHwJ\":\"Add more\",\"rSRyAh\":\"Add number\",\"w3zmQl\":\"Add passkey\",\"zkvWcK\":\"Add Placeholders\",\"2Rqi1z\":\"Add Signers\",\"eZyoIc\":\"Add Subject\",\"bD3qQ7\":\"Add team email\",\"MwcOtB\":\"Add text\",\"mXXoi9\":\"Add Text\",\"vn6wzk\":\"Add the people who will sign the document.\",\"8XAJNZ\":\"Add the recipients to create the document with\",\"F9ayeh\":\"Add the subject and message you wish to send to signers.\",\"pjVxbn\":\"Adding and removing seats will adjust your invoice accordingly.\",\"VfkDmn\":\"Admin Actions\",\"SsHJsm\":\"Admin panel\",\"N40H+G\":\"All\",\"/LYSFR\":\"All documents\",\"myVKpO\":\"All documents have been processed. Any new documents that are sent or received will show here.\",\"8dC9dh\":\"All inserted signatures will be voided\",\"a809wO\":\"All recipients will be notified\",\"DA2Nma\":\"All templates\",\"5b4J4v\":\"All Time\",\"8URWfv\":\"Allows authenticating using biometrics, password managers, hardware keys, etc.\",\"QN+LeY\":\"Already have an account? <0>Sign in instead0>\",\"hehnjM\":\"Amount\",\"VeMlGP\":\"An email containing an invitation will be sent to each member.\",\"Cs4Mqi\":\"An email requesting the transfer of this team has been sent.\",\"Vw8l6h\":\"An error occurred\",\"aAZxd7\":\"An error occurred while adding signers.\",\"qFEx41\":\"An error occurred while adding the fields.\",\"ycUtHd\":\"An error occurred while creating document from template.\",\"8jjOHI\":\"An error occurred while creating the webhook. Please try again.\",\"D6tvkq\":\"An error occurred while disabling direct link signing.\",\"HNjVHR\":\"An error occurred while downloading your document.\",\"z7nHXh\":\"An error occurred while duplicating template.\",\"WnEuiF\":\"An error occurred while enabling direct link signing.\",\"eijDci\":\"An error occurred while loading team members. Please try again later.\",\"ZL2b3c\":\"An error occurred while moving the document.\",\"vECB98\":\"An error occurred while moving the template.\",\"677Rs2\":\"An error occurred while removing the signature.\",\"niV8ex\":\"An error occurred while removing the text.\",\"+UiFs2\":\"An error occurred while sending the document.\",\"W8sZtD\":\"An error occurred while sending your confirmation email\",\"CKRkxA\":\"An error occurred while signing the document.\",\"k2HSGs\":\"An error occurred while trying to create a checkout session.\",\"PBvwjZ\":\"An error occurred while updating the document settings.\",\"vNZnKS\":\"An error occurred while updating the signature.\",\"ed1aMc\":\"An error occurred while updating your profile.\",\"hGN3eM\":\"An error occurred while uploading your document.\",\"vW+T+d\":\"An unknown error occurred\",\"Iq1gDI\":\"Any payment methods attached to this team will remain attached to this team. Please contact us if you need to update this information.\",\"ZiooJI\":\"API Tokens\",\"mf2Wzk\":\"App Version\",\"Z7ZXbT\":\"Approve\",\"7kb4LU\":\"Approved\",\"0EvA/s\":\"Are you sure you want to delete this token?\",\"99ZWCN\":[\"Are you sure you want to remove the <0>\",[\"passkeyName\"],\"0> passkey.\"],\"1D4Rs0\":\"Are you sure you wish to delete this team?\",\"6foA8n\":\"Are you sure?\",\"rgXDlk\":\"Attempts sealing the document again, useful for after a code change has occurred to resolve an erroneous document.\",\"ilRCh1\":\"Audit Log\",\"XiaVj+\":\"Authentication required\",\"kfcRb0\":\"Avatar\",\"uzGcBT\":\"Avatar Updated\",\"q8qrYJ\":\"Awaiting email confirmation\",\"iH8pgl\":\"Back\",\"FL8Lic\":\"Back to Documents\",\"k1bLf+\":\"Background Color\",\"ev7oAJ\":\"Backup Code\",\"M2cci0\":\"Backup codes\",\"eQwW5Q\":\"Banner Updated\",\"3dSIQs\":\"Basic details\",\"R+w/Va\":\"Billing\",\"0DGrp8\":\"Browser\",\"r4lECO\":\"Bulk Import\",\"dMoTGp\":\"By deleting this document, the following will occur:\",\"zjt329\":\"By enabling 2FA, you will be required to enter a code from your authenticator app every time you sign in.\",\"dEgA5A\":\"Cancel\",\"sa1BnH\":\"Cancelled by user\",\"A4tHrb\":\"Charts\",\"znIg+z\":\"Checkout\",\"MeyfTD\":\"Choose an existing recipient from below to continue\",\"iWVl0V\":\"Choose Direct Link Recipient\",\"1qI3Gk\":\"Choose...\",\"1m18m/\":\"Claim account\",\"tvmS/k\":\"Claim username\",\"vRjC9y\":\"Claim your profile later\",\"HiEGc0\":\"Claim your username now\",\"ELiPtq\":\"Click here to get started\",\"BvF90q\":\"Click here to retry\",\"cgfP+i\":\"Click here to upload\",\"L1127j\":\"Click to copy signing link for sending to recipient\",\"eZ6/Uj\":\"Click to insert field\",\"yz7wBu\":\"Close\",\"bD8I7O\":\"Complete\",\"jVAqZz\":\"Complete Approval\",\"0ojNue\":\"Complete Signing\",\"+5y0NQ\":\"Complete Viewing\",\"qqWcBV\":\"Completed\",\"rGm4yZ\":\"Completed documents\",\"p5+XQN\":\"Completed Documents\",\"UfLuLv\":\"Configure general settings for the document.\",\"hIv3aM\":\"Configure general settings for the template.\",\"LVnHGj\":\"Configure template\",\"7VpPHA\":\"Confirm\",\"gMlC/b\":[\"Confirm by typing <0>\",[\"confirmTransferMessage\"],\"0>\"],\"FQnPC+\":[\"Confirm by typing <0>\",[\"deleteMessage\"],\"0>\"],\"gv1JXQ\":[\"Confirm by typing: <0>\",[\"deleteMessage\"],\"0>\"],\"w0Qb5v\":\"Confirm Deletion\",\"CMj4hw\":\"Confirm email\",\"13PnPF\":\"Confirmation email sent\",\"4b3oEV\":\"Content\",\"xGVfLh\":\"Continue\",\"/KgpcA\":\"Continue to login\",\"FxVG/l\":\"Copied to clipboard\",\"phD28x\":\"Copy sharable link\",\"ZxZS0E\":\"Copy Shareable Link\",\"BddwrJ\":\"Copy token\",\"hYgDIe\":\"Create\",\"mpt9T+\":\"Create a new account\",\"kxGCtA\":\"Create a team to collaborate with your team members.\",\"1hMWR6\":\"Create account\",\"H7nlli\":\"Create and send\",\"BYg48B\":\"Create as draft\",\"JqmhmE\":\"Create Direct Link\",\"wtV4WO\":\"Create Direct Signing Link\",\"fDTEKZ\":\"Create document from template\",\"1svIlj\":\"Create now\",\"JLQooE\":\"Create one automatically\",\"YGQVmg\":\"Create team\",\"fWFMgb\":\"Create Team\",\"pzXZ8+\":\"Create token\",\"SiPp29\":\"Create webhook\",\"dkAPxi\":\"Create Webhook\",\"8T5f7o\":\"Create your account and start using state-of-the-art document signing.\",\"rr83qK\":\"Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp.\",\"d+F6q9\":\"Created\",\"88kg0+\":\"Created At\",\"NCIYDF\":\"Created by\",\"45O6zJ\":\"Created on\",\"t3sqJR\":[\"Created on \",[\"0\"]],\"SVZbH4\":\"Created on <0/>\",\"czzAa/\":[\"Created on\",[\"0\"]],\"DCKkhU\":\"Current Password\",\"74XDHP\":[\"Current plan: \",[\"0\"]],\"U0sC6H\":\"Daily\",\"oRVm8M\":\"Dark Mode\",\"mYGY3B\":\"Date\",\"u46WEi\":\"Date created\",\"jbq7j2\":\"Decline\",\"uSS9OX\":\"Declined team invitation\",\"cnGeoo\":\"Delete\",\"ZDGm40\":\"Delete account\",\"vzX5FB\":\"Delete Account\",\"+vDIXN\":\"Delete document\",\"MUynQL\":\"Delete Document\",\"0tFf9L\":\"Delete passkey\",\"MYiaA4\":\"Delete team\",\"WZHJBH\":\"Delete team member\",\"M5Nsil\":\"Delete the document. This action is irreversible so proceed with caution.\",\"ETB4Yh\":\"Delete the users account and all its contents. This action is irreversible and will cancel their subscription, so proceed with caution.\",\"zdyslo\":\"Delete Webhook\",\"IJMZKG\":\"Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution.\",\"vGjmyl\":\"Deleted\",\"cmDFUK\":\"Deleting account...\",\"PkSiFP\":\"Deleting document\",\"PEHQTf\":\"Device\",\"YseRvk\":\"direct link\",\"cfARFZ\":\"Direct link\",\"VdX+I4\":\"direct link disabled\",\"nNHqgX\":\"Direct Link Signing\",\"k2FNdx\":\"Direct link signing has been disabled\",\"gsc+pZ\":\"Direct link signing has been enabled\",\"CRdqqs\":\"Direct link templates contain one dynamic recipient placeholder. Anyone with access to this link can sign the document, and it will then appear on your documents page.\",\"WCGIfx\":\"Direct template link deleted\",\"2HKj5L\":[\"Direct template link usage exceeded (\",[\"0\"],\"/\",[\"1\"],\")\"],\"cO9+2L\":\"Disable\",\"qERl58\":\"Disable 2FA\",\"pf7wfS\":\"Disable Two Factor Authentication before deleting your account.\",\"E/QGRL\":\"Disabled\",\"H11Db4\":\"Disabling direct link signing will prevent anyone from accessing the link.\",\"Oq0b7I\":\"Display your name and email in documents\",\"pR1j0x\":\"Do you want to delete this template?\",\"MqL7Ex\":\"Do you want to duplicate this template?\",\"MUwFBV\":\"Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account.\",\"7Zdnlq\":\"Document\",\"kz4vX7\":\"Document All\",\"Pr3c2A\":\"Document Approved\",\"Kvf7iA\":\"Document Cancelled\",\"GOO+sv\":\"Document completed\",\"6KFLWX\":\"Document Completed!\",\"frw2OP\":\"Document created\",\"ZlIPM3\":\"Document deleted\",\"IvkBV7\":\"Document draft\",\"nF+jHn\":\"Document Duplicated\",\"Zfj12J\":\"Document history\",\"glwlqW\":\"Document ID\",\"WqG6Wi\":\"Document inbox\",\"WrliRN\":\"Document Limit Exceeded!\",\"AGzFn4\":\"Document metrics\",\"w+SPlp\":\"Document moved\",\"G45FNk\":\"Document no longer available to sign\",\"EhII5Z\":\"Document pending\",\"XIvQfe\":\"Document re-sent\",\"S2Wpx4\":\"Document resealed\",\"2r5F7N\":\"Document sent\",\"prbyy5\":\"Document Signed\",\"O832hg\":\"Document signing process will be cancelled\",\"UkHClc\":\"Document status\",\"RDOlfT\":\"Document title\",\"R1TUTP\":\"Document upload disabled due to unpaid invoices\",\"PGrc79\":\"Document uploaded\",\"UfJ5fX\":\"Document Viewed\",\"bTGVhQ\":\"Document will be permanently deleted\",\"E/muDO\":\"Documents\",\"q89WTJ\":\"Documents Received\",\"77Aq1u\":\"Documents Viewed\",\"352VU2\":\"Don't have an account? <0>Sign up0>\",\"mzI/c+\":\"Download\",\"lojhUl\":\"Download Audit Logs\",\"uKWz9T\":\"Download Certificate\",\"eneWvv\":\"Draft\",\"gWAuiM\":\"Draft documents\",\"8OzE2k\":\"Drafted Documents\",\"QurWnM\":\"Due to an unpaid invoice, your team has been restricted. Please settle the payment to restore full access to your team.\",\"euc6Ns\":\"Duplicate\",\"ePK91l\":\"Edit\",\"fW5sSv\":\"Edit webhook\",\"O3oNi5\":\"Email\",\"ATGYL1\":\"Email address\",\"hzKQCy\":\"Email Address\",\"HmTucU\":\"Email Confirmed!\",\"JHLcvq\":\"Email sent!\",\"bK7p2G\":\"Email verification has been removed\",\"xk9d59\":\"Email verification has been resent\",\"DCRKbe\":\"Enable 2FA\",\"Gndbft\":\"Enable Authenticator App\",\"iNXTYT\":\"Enable direct link signing\",\"qChNnS\":\"Enable Direct Link Signing\",\"RxzN1M\":\"Enabled\",\"y6J8wY\":\"Ends On\",\"C3nD/1\":\"Enter your email\",\"oM8ocD\":\"Enter your email address to receive the completed document.\",\"n9V+ps\":\"Enter your name\",\"v0GDxO\":\"Enter your text here\",\"SlfejT\":\"Error\",\"ZkROsq\":\"Everyone has signed\",\"4MNaCF\":\"Everyone has signed! You will receive an Email copy of the signed document.\",\"uWW+rJ\":\"Exceeded timeout\",\"M1RnFv\":\"Expired\",\"RIcSTA\":\"Expires on\",\"xd2LI3\":[\"Expires on \",[\"0\"]],\"LbGReD\":\"Expires on <0/>\",\"FtTj1O\":[\"Expires on\",[\"0\"]],\"ToQ1L5\":\"Failed to reseal document\",\"YXKrQK\":\"Failed to update recipient\",\"R41XLH\":\"Failed to update webhook\",\"vF68cg\":\"Fields\",\"8rKUka\":[\"File cannot be larger than \",[\"APP_DOCUMENT_UPLOAD_SIZE_LIMIT\"],\"MB\"],\"glx6on\":\"Forgot your password?\",\"/4TFrF\":\"Full Name\",\"Weq9zb\":\"General\",\"sr0UJD\":\"Go Back\",\"+vhBuq\":\"Go back home\",\"1oocIX\":\"Go Back Home\",\"Q46UEs\":\"Go to owner\",\"71XAMD\":\"Go to your <0>public profile settings0> to add documents.\",\"+pEbZM\":\"Here you can edit your personal details.\",\"gPNXUO\":\"Here you can manage your password and security settings.\",\"rLZFM2\":\"Here's how it works:\",\"C3U9sx\":\"Hey I’m Timur\",\"vLyv1R\":\"Hide\",\"/c6j67\":\"Hide additional information\",\"2+GP4I\":\"I am the owner of this document\",\"Jw3g7g\":\"I'm sure! Delete it\",\"fYt7bZ\":\"If they accept this request, the team will be transferred to their account.\",\"P8EnSP\":\"If you do not want to use the authenticator prompted, you can close it, which will then display the next available authenticator.\",\"usBC38\":\"If you don't find the confirmation link in your inbox, you can request a new one below.\",\"i1sBhX\":\"If your authenticator app does not support QR codes, you can use the following code instead:\",\"Gp4Yi6\":\"Inbox\",\"mIZt96\":\"Inbox documents\",\"nSkB8g\":\"Information\",\"2+B7Tm\":\"Inserted\",\"kgiQxA\":\"Instance Stats\",\"v7dfDY\":\"Invalid code. Please try again.\",\"bajpfj\":\"Invalid file\",\"TN382O\":\"Invalid link\",\"Kx9NEt\":\"Invalid token\",\"lW4qkT\":\"Invitation accepted!\",\"K2fB29\":\"Invitation declined\",\"zbmftZ\":\"Invitation has been deleted\",\"hDYopg\":\"Invitation has been resent\",\"MFKlMB\":\"Invite\",\"+djOzj\":\"Invite member\",\"ZHx/by\":\"Invite Members\",\"qSfH/A\":\"Invite team members\",\"H97wjo\":\"Invited At\",\"IuMGvq\":\"Invoice\",\"pQgy2V\":[\"It looks like \",[\"0\"],\" hasn't added any documents to their profile yet.\"],\"Ji9zm3\":\"It seems that the provided token has expired. We've just sent you another token, please check your email and try again.\",\"PQ53gh\":\"It seems that there is no token provided, if you are trying to verify your email please follow the link in your email.\",\"y51oRm\":\"It seems that there is no token provided. Please check your email and try again.\",\"vXIe7J\":\"Language\",\"vfe90m\":\"Last 14 days\",\"uq2BmQ\":\"Last 30 days\",\"ct2SYD\":\"Last 7 days\",\"x5DnMs\":\"Last modified\",\"C3yOz3\":\"Last updated\",\"9aMJpW\":\"Last updated at\",\"JGvwnU\":\"Last used\",\"Mv8CyJ\":\"Leave\",\"v/uzBS\":\"Leave team\",\"cInPuv\":\"Light Mode\",\"0uqjes\":\"Like to have your own public profile with agreements?\",\"jfN/GZ\":\"Link template\",\"T2q4gy\":[\"Listening to \",[\"0\"]],\"qzZ/NB\":\"Load older activity\",\"Jy3ott\":\"Loading document...\",\"KBQH86\":\"Loading Document...\",\"czE0ko\":\"Loading teams...\",\"Z3FXyt\":\"Loading...\",\"z0t9bb\":\"Login\",\"wckWOP\":\"Manage\",\"HQVCTG\":[\"Manage \",[\"0\"],\"'s profile\"],\"Lp5ut7\":\"Manage all teams you are currently associated with.\",\"NwY95d\":\"Manage details for this public template\",\"OcvAVs\":\"Manage Direct Link\",\"g6RCtA\":\"Manage documents\",\"HVAyb8\":\"Manage passkeys\",\"3jHA5d\":\"Manage subscription\",\"L9IOec\":\"Manage Subscription\",\"KuukYs\":\"Manage subscriptions\",\"DHyAij\":\"Manage team subscription.\",\"lLX9Bl\":\"Manage teams\",\"aA0Gfq\":\"Manage the direct link signing for this template\",\"Ruhuv1\":\"Manage the members or invite new members.\",\"Xef1xw\":\"Manage users\",\"T0vQFD\":\"Manage your passkeys.\",\"4a84Cp\":\"Manage your site settings here\",\"Rbs16H\":\"Mark as Viewed\",\"deqwtZ\":\"MAU (created document)\",\"YgNcJU\":\"MAU (had document completed)\",\"Hn6rI0\":\"Member Since\",\"wlQNTg\":\"Members\",\"FaskIK\":\"Modify recipients\",\"+8Nek/\":\"Monthly\",\"MOyLGl\":\"Monthly Active Users: Users that created at least one Document\",\"5G7Dom\":\"Monthly Active Users: Users that had at least one of their documents completed\",\"QWdKwH\":\"Move\",\"YeRZmm\":\"Move Document to Team\",\"QlQmgo\":\"Move Template to Team\",\"wUBLjS\":\"Move to Team\",\"K8Qnlj\":\"Moving...\",\"en+4fS\":\"My templates\",\"6YtxFj\":\"Name\",\"8VD2is\":\"Need to sign documents?\",\"qqeAJM\":\"Never\",\"OEcKyx\":\"Never expire\",\"QWDm5s\":\"New team owner\",\"K6MO8e\":\"New Template\",\"hXzOVo\":\"Next\",\"ZcbBVB\":\"Next field\",\"G5YKES\":\"No active drafts\",\"PsHKvx\":\"No payment required\",\"OBWbru\":\"No public profile templates found\",\"m0I2ba\":\"No recent activity\",\"IMbagb\":\"No recipients\",\"MZbQHL\":\"No results found.\",\"+5xxir\":\"No token provided\",\"s9Rqzv\":\"No valid direct templates found\",\"l08XJv\":\"No valid recipients found\",\"CSOFdu\":\"No value found.\",\"tRFnIp\":\"No worries, it happens! Enter your email and we'll email you a special link to reset your password.\",\"7aaD1O\":\"Not supported\",\"wkT5xx\":\"Nothing to do\",\"Oizhkg\":\"On this page, you can create a new webhook.\",\"aaavFi\":\"On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation1>.\",\"ZtN+o/\":\"On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here1>\",\"SpqtG7\":\"On this page, you can create new Webhooks and manage the existing ones.\",\"FOWyZB\":\"On this page, you can edit the webhook and its settings.\",\"dM1W5F\":\"Once confirmed, the following will occur:\",\"mZ2nNu\":\"Once you have scanned the QR code or entered the code manually, enter the code provided by your authenticator app below.\",\"udaO9j\":\"Oops! Something went wrong.\",\"OV5wZZ\":\"Opened\",\"ZAVklK\":\"Or\",\"zW+FpA\":\"Or continue with\",\"XUwKbC\":\"Otherwise, the document will be created as a draft.\",\"LtI9AS\":\"Owner\",\"v4nCHK\":\"Paid\",\"FGSN4s\":\"Passkey\",\"8mPPB0\":\"Passkey already exists for the provided authenticator\",\"k/8RhE\":\"Passkey creation cancelled due to one of the following reasons:\",\"knZBf/\":\"Passkey has been removed\",\"1MvYF3\":\"Passkey has been updated\",\"qz7mwn\":\"Passkey name\",\"UZKLEA\":\"Passkeys\",\"v3rPhj\":\"Passkeys allow you to sign in and authenticate using biometrics, password managers, etc.\",\"wsLk4g\":\"Passkeys are not supported on this browser\",\"8ZsakT\":\"Password\",\"ogtYkT\":\"Password updated\",\"4fL/V7\":\"Pay\",\"oyOEbz\":\"Payment is required to finalise the creation of your team.\",\"GptxX/\":\"Payment overdue\",\"UbRKMZ\":\"Pending\",\"Y99ivo\":\"Pending documents\",\"VZJggs\":\"Pending Documents\",\"dSe12f\":\"Pending invitations\",\"pobYPH\":\"Pending team deleted.\",\"7MuXko\":\"Personal\",\"moWIBX\":\"Personal Account\",\"bhE66T\":\"Pick a password\",\"nSCWvF\":\"Pick any of the following agreements below and start signing to get started\",\"LFWYFV\":\"Please check the CSV file and make sure it is according to our format\",\"GUOCNi\":\"Please choose your new password\",\"JcgKEA\":\"Please contact support if you would like to revert this action.\",\"pzDdmv\":\"Please enter a meaningful name for your token. This will help you identify it later.\",\"GqaSjy\":\"Please mark as viewed to complete\",\"jG5btV\":\"Please note that proceeding will remove direct linking recipient and turn it into a placeholder.\",\"Op5XjA\":\"Please note that this action is <0>irreversible0>.\",\"pIF/uD\":\"Please note that this action is <0>irreversible0>. Once confirmed, this document will be permanently deleted.\",\"aYytci\":\"Please note that this action is irreversible. Once confirmed, your template will be permanently deleted.\",\"LIf5dA\":\"Please note that this action is irreversible. Once confirmed, your token will be permanently deleted.\",\"bGHA6C\":\"Please note that this action is irreversible. Once confirmed, your webhook will be permanently deleted.\",\"K2Zlri\":\"Please note that you will lose access to all documents associated with this team & all the members will be removed and notified\",\"VJEW4M\":\"Please provide a token from the authenticator, or a backup code. If you do not have a backup code available, please contact support.\",\"Lwg9X/\":\"Please provide a token from your authenticator, or a backup code.\",\"tVQlia\":\"Please try again and make sure you enter the correct email address.\",\"fWCcRl\":\"Please try again later or login using your normal details\",\"PZCqeW\":\"Please try again later.\",\"2oj8HJ\":[\"Please type <0>\",[\"0\"],\"0> to confirm.\"],\"Q6hhn8\":\"Preferences\",\"ghVdS5\":\"Preview and configure template.\",\"zwBp5t\":\"Private\",\"aWLa3z\":\"Private templates can only be modified and viewed by you.\",\"vERlcd\":\"Profile\",\"H8Zk+q\":\"Profile is currently <0>hidden0>.\",\"6zFVy3\":\"Profile is currently <0>visible0>.\",\"srPuxS\":\"Profile updated\",\"7d1a0d\":\"Public\",\"PsWyzr\":\"Public Profile\",\"GCm4vn\":\"Public profile URL\",\"9imnUr\":\"Public profile username\",\"2/o+9Z\":\"Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile.\",\"Zs+87t\":\"Read only field\",\"ckH3fT\":\"Ready\",\"2DmUfb\":\"Reauthentication is required to sign this field\",\"M1HGuR\":\"Recent activity\",\"I3QpvQ\":\"Recipient\",\"evCX7h\":\"Recipient updated\",\"yPrbsy\":\"Recipients\",\"FDT13r\":\"Recipients metrics\",\"cEfPAe\":\"Recipients will still retain their copy of the document\",\"p8zadb\":\"Recovery code copied\",\"x5rgeJ\":\"Recovery codes\",\"ZCl9NH\":\"Registration Successful\",\"cD+FhI\":\"Remembered your password? <0>Sign In0>\",\"t/YqKh\":\"Remove\",\"41G745\":\"Remove team email\",\"8xN0jg\":\"Remove team member\",\"JjG/b1\":\"Repeat Password\",\"Ibjxfr\":\"Request transfer\",\"sDXefy\":\"Reseal document\",\"MyjAbr\":\"Resend\",\"bxoWpz\":\"Resend Confirmation Email\",\"HT2UjS\":\"Resend verification\",\"OfhWJH\":\"Reset\",\"wJZvNq\":\"Reset email sent\",\"KbS2K9\":\"Reset Password\",\"NI0xtv\":\"Resetting Password...\",\"2FoHU3\":\"Resolve\",\"bH0aV9\":\"Resolve payment\",\"6gRgw8\":\"Retry\",\"vUOn9d\":\"Return\",\"dRDE6t\":\"Return to Dashboard\",\"OYOJop\":\"Return to Home\",\"Wkb64i\":\"Return to sign in\",\"GXsAby\":\"Revoke\",\"cg+Poy\":\"Revoke access\",\"GDvlUT\":\"Role\",\"5dJK4M\":\"Roles\",\"tfDRzk\":\"Save\",\"A1taO8\":\"Search\",\"pUjzwQ\":\"Search by document title\",\"Bw5X+M\":\"Search by name or email\",\"8VEDbV\":\"Secret\",\"a3LDKx\":\"Security\",\"HUVI3V\":\"Security activity\",\"rG3WVm\":\"Select\",\"9GwDu7\":\"Select a team\",\"vWi2vu\":\"Select a team to move this document to. This action cannot be undone.\",\"JxCKQ1\":\"Select a team to move this template to. This action cannot be undone.\",\"hyn0QC\":\"Select a template you'd like to display on your public profile\",\"9VGtlg\":\"Select a template you'd like to display on your team's public profile\",\"gBqxYg\":\"Select passkey\",\"471O/e\":\"Send confirmation email\",\"HbN1UH\":\"Send document\",\"qaDvSa\":\"Send reminder\",\"HW5fQk\":\"Sender\",\"DgPgBb\":\"Sending Reset Email...\",\"IoAuJG\":\"Sending...\",\"h69WC6\":\"Sent\",\"bWhxXv\":\"Set a password\",\"Tz0i8g\":\"Settings\",\"RDjuBN\":\"Setup\",\"Z8lGw6\":\"Share\",\"lCEhm/\":\"Share Signing Card\",\"8vETh9\":\"Show\",\"FSjwRy\":\"Show additional information\",\"7Ifo0h\":\"Show templates in your public profile for your audience to sign and get started quickly\",\"lDZq9u\":\"Show templates in your team public profile for your audience to sign and get started quickly\",\"c+Fnce\":\"Sign\",\"oKBjbc\":[\"Sign as \",[\"0\"],\" <0>(\",[\"1\"],\")0>\"],\"M7Y6vg\":[\"Sign as <0>\",[\"0\"],\" <1>(\",[\"1\"],\")1>0>\"],\"D0JgR3\":[\"Sign as<0>\",[\"0\"],\" <1>(\",[\"1\"],\")1>0>\"],\"/8S7J+\":\"Sign document\",\"ceklqr\":\"Sign field\",\"vRw782\":\"Sign Here\",\"n1ekoW\":\"Sign In\",\"NxCJcc\":\"Sign in to your account\",\"bHYIks\":\"Sign Out\",\"Mqwtkp\":\"Sign the document to complete the process.\",\"e+RpCP\":\"Sign up\",\"mErq7F\":\"Sign Up\",\"8fC9B9\":\"Sign Up with Google\",\"l/tATK\":\"Sign Up with OIDC\",\"n+8yVN\":\"Signature\",\"6AjNkO\":\"Signatures Collected\",\"cquXHe\":\"Signatures will appear once the document has been completed\",\"PoH7eg\":\"Signed\",\"XOxZT4\":\"Signing in...\",\"P1wwqN\":\"Signing up...\",\"ltYQCa\":[\"Since \",[\"0\"]],\"67H0kT\":\"Site Banner\",\"aaU5Fl\":\"Site Settings\",\"nwtY4N\":\"Something went wrong\",\"xYdwPA\":[\"Something went wrong while attempting to transfer the ownership of team <0>\",[\"0\"],\"0> to your. Please try again later or contact support.\"],\"/OggdM\":[\"Something went wrong while attempting to verify your email address for <0>\",[\"0\"],\"0>. Please try again later.\"],\"oZO7Po\":\"Something went wrong while loading your passkeys.\",\"qDc2pC\":\"Something went wrong while sending the confirmation email.\",\"2U+48H\":\"Something went wrong while updating the team billing subscription, please contact support.\",\"db0Ycb\":\"Something went wrong. Please try again or contact support.\",\"q16m4+\":\"Sorry, we were unable to download the audit logs. Please try again later.\",\"EUyscw\":\"Sorry, we were unable to download the certificate. Please try again later.\",\"29Hx9U\":\"Stats\",\"uAQUqI\":\"Status\",\"EDl9kS\":\"Subscribe\",\"WVzGc2\":\"Subscription\",\"P6F38F\":\"Subscriptions\",\"zzDlyQ\":\"Success\",\"f8RSgi\":\"Successfully created passkey\",\"3WgMId\":\"System Theme\",\"KM6m8p\":\"Team\",\"ZTKtIH\":\"Team checkout\",\"WUM2yD\":\"Team email\",\"rkqgH1\":\"Team Email\",\"2FRR+Z\":\"Team email already verified!\",\"5GbQa1\":\"Team email has been removed\",\"rW28ga\":\"Team email verification\",\"/9ZeEl\":\"Team email verified!\",\"Ww6njg\":\"Team email was updated.\",\"h3p3UT\":\"Team invitation\",\"am190B\":\"Team invitations have been sent.\",\"IJFhQ+\":\"Team Member\",\"EEjL2F\":\"Team Name\",\"alTHVO\":\"Team Only\",\"cvMRdF\":\"Team only templates are not linked anywhere and are visible only to your team.\",\"sSUQSW\":\"Team ownership transfer\",\"NnCr+1\":\"Team ownership transfer already completed!\",\"GzR8VI\":\"Team ownership transferred!\",\"qzHZC+\":\"Team Public Profile\",\"wkzD+0\":\"Team settings\",\"oMfDc9\":\"Team Settings\",\"NONu1b\":\"Team templates\",\"Feqf5k\":\"Team transfer in progress\",\"oXkHk2\":\"Team transfer request expired\",\"IwrHI3\":\"Team URL\",\"CAL6E9\":\"Teams\",\"qKgabb\":\"Teams restricted\",\"/K2CvV\":\"Template\",\"ZTgE3k\":\"Template deleted\",\"7ZORe4\":\"Template document uploaded\",\"Vmoj8n\":\"Template duplicated\",\"3MMlXX\":\"Template has been removed from your public profile.\",\"eupjqf\":\"Template has been updated.\",\"I1vdWI\":\"Template moved\",\"GamjcN\":\"Template saved\",\"iTylMl\":\"Templates\",\"mKknmt\":\"Templates allow you to quickly generate documents with pre-filled recipients and fields.\",\"HmA4Lf\":\"Text Color\",\"jB6Wb0\":\"The account has been deleted successfully.\",\"YPAOfJ\":\"The content to show in the banner, HTML is allowed\",\"+lDHlp\":\"The direct link has been copied to your clipboard\",\"HdogiK\":\"The document has been successfully moved to the selected team.\",\"8TDHmX\":\"The document is now completed, please follow any instructions provided within the parent application.\",\"JaqmMD\":\"The document was created but could not be sent to recipients.\",\"D6V5NE\":\"The document will be hidden from your account\",\"kn3D/u\":\"The document will be immediately sent to recipients if this is checked.\",\"S20Dp9\":\"The events that will trigger a webhook to be sent to your URL.\",\"3BvEti\":[\"The ownership of team <0>\",[\"0\"],\"0> has been successfully transferred to you.\"],\"jiv3IP\":\"The page you are looking for was moved, removed, renamed or might never have existed.\",\"v7aFZT\":\"The profile link has been copied to your clipboard\",\"L9/hN3\":\"The profile you are looking for could not be found.\",\"M2Tl+5\":\"The public description that will be displayed with this template\",\"Bar5Ss\":\"The public name for your template\",\"RL/wwM\":\"The recipient has been updated successfully\",\"aHhSPO\":\"The selected team member will receive an email which they must accept before the team is transferred\",\"so3oXj\":\"The signing link has been copied to your clipboard.\",\"kXciaM\":\"The site banner is a message that is shown at the top of the site. It can be used to display important information to your users.\",\"XaNqYt\":\"The team transfer invitation has been successfully deleted.\",\"DyE711\":[\"The team transfer request to <0>\",[\"0\"],\"0> has expired.\"],\"RLyuG2\":\"The team you are looking for may have been removed, renamed or may have never existed.\",\"wIrx7T\":\"The template has been successfully moved to the selected team.\",\"J+X6HZ\":\"The template will be removed from your profile\",\"9VV//K\":\"The template you are looking for may have been disabled, deleted or may have never existed.\",\"tkv54w\":\"The token was copied to your clipboard.\",\"5cysp1\":\"The token was deleted successfully.\",\"oddVEW\":\"The token you have used to reset your password is either expired or it never existed. If you have still forgotten your password, please request a new reset link.\",\"Orj1pl\":\"The URL for Documenso to send webhook events to.\",\"V92DHZ\":\"The webhook has been successfully deleted.\",\"mlHeCX\":\"The webhook has been updated successfully.\",\"V+5KQa\":\"The webhook was successfully created.\",\"k/INkj\":\"There are no active drafts at the current moment. You can upload a document to start drafting.\",\"ySoKla\":\"There are no completed documents yet. Documents that you have created or received will appear here once completed.\",\"9aYXQv\":\"They have permission on your behalf to:\",\"3ap2Vv\":\"This action is not reversible. Please be certain.\",\"6S2SIc\":\"This document could not be deleted at this time. Please try again.\",\"9q30Lx\":\"This document could not be duplicated at this time. Please try again.\",\"u/cYe5\":\"This document could not be re-sent at this time. Please try again.\",\"240BLI\":\"This document has been cancelled by the owner and is no longer available for others to sign.\",\"UdLWn3\":\"This document has been cancelled by the owner.\",\"K8RH4n\":\"This document has been signed by all recipients\",\"1M0Ssi\":\"This document is currently a draft and has not been sent\",\"LLfa/G\":\"This email is already being used by another team.\",\"YrKIxa\":\"This link is invalid or has expired. Please contact your team to resend a transfer request.\",\"iN8uoK\":\"This link is invalid or has expired. Please contact your team to resend a verification.\",\"b7CscR\":\"This passkey has already been registered.\",\"JMu+vE\":\"This passkey is not configured for this application. Please login and add one in the user settings.\",\"0ES9GX\":\"This price includes minimum 5 seats.\",\"0rusOU\":\"This session has expired. Please try again.\",\"ApCva8\":\"This team, and any associated data excluding billing invoices will be permanently deleted.\",\"1ABR2W\":\"This template could not be deleted at this time. Please try again.\",\"PJUOEm\":\"This token is invalid or has expired. No action is needed.\",\"4WY92K\":\"This token is invalid or has expired. Please contact your team for a new invitation.\",\"6HNLKb\":\"This URL is already in use.\",\"/yOKAT\":\"This username has already been taken\",\"ea/Ia+\":\"This username is already taken\",\"LhMjLm\":\"Time\",\"Mz2JN2\":\"Time zone\",\"MHrjPM\":\"Title\",\"TF1e2Y\":\"To accept this invitation you must create an account.\",\"9e4NKS\":\"To change the email you must remove and add a new email address.\",\"E3QGBV\":[\"To confirm, please enter the accounts email address <0/>(\",[\"0\"],\").\"],\"/ngXqQ\":\"To confirm, please enter the reason\",\"Z/LRzj\":\"To decline this invitation you must create an account.\",\"QyrRrh\":\"To enable two-factor authentication, scan the following QR code using your authenticator app.\",\"mX0XNr\":\"To gain access to your account, please confirm your email address by clicking on the confirmation link from your inbox.\",\"THQgMC\":[\"To mark this document as viewed, you need to be logged in as <0>\",[\"0\"],\"0>\"],\"jlBOs+\":\"To view this document you need to be signed into your account, please sign in to continue.\",\"Tkvndv\":\"Toggle the switch to hide your profile from the public.\",\"X3Df6T\":\"Toggle the switch to show your profile to the public.\",\"TP9/K5\":\"Token\",\"SWyfbd\":\"Token copied to clipboard\",\"OBjhQ4\":\"Token created\",\"B5MBOV\":\"Token deleted\",\"nwwDj8\":\"Token doesn't have an expiration date\",\"v/TQsS\":\"Token expiration date\",\"SKZhW9\":\"Token name\",\"/mWwgA\":\"Total Documents\",\"dKGGPw\":\"Total Recipients\",\"WLfBMX\":\"Total Signers that Signed Up\",\"vb0Q0/\":\"Total Users\",\"PsdN6O\":\"Transfer ownership of this team to a selected team member.\",\"OOrbmP\":\"Transfer team\",\"TAB7/M\":\"Transfer the ownership of the team to another team member.\",\"34nxyb\":\"Triggers\",\"0s6zAM\":\"Two factor authentication\",\"rkM+2p\":\"Two factor authentication recovery codes are used to access your account in the event that you lose access to your authenticator app.\",\"C4pKXW\":\"Two-Factor Authentication\",\"NwChk2\":\"Two-factor authentication disabled\",\"qwpE/S\":\"Two-factor authentication enabled\",\"Rirbh5\":\"Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in.\",\"+zy2Nq\":\"Type\",\"fn5guJ\":\"Type 'delete' to confirm\",\"aLB9e4\":\"Type a command or search...\",\"NKs0zG\":\"Uh oh! Looks like you're missing a token\",\"yn1Wi2\":\"Unable to change the language at this time. Please try again later.\",\"syy3Gt\":\"Unable to copy recovery code\",\"CRCTCg\":\"Unable to copy token\",\"IFfB53\":\"Unable to create direct template access. Please try again later.\",\"gVlUC8\":\"Unable to decline this team invitation at this time.\",\"Y+wsI7\":\"Unable to delete invitation. Please try again.\",\"UCeveL\":\"Unable to delete team\",\"wp9XuY\":\"Unable to disable two-factor authentication\",\"kIV9PR\":\"Unable to join this team at this time.\",\"KFBm7R\":\"Unable to load document history\",\"NodEs1\":\"Unable to load your public profile templates at this time\",\"vklymD\":\"Unable to remove email verification at this time. Please try again.\",\"w8n1+z\":\"Unable to remove team email at this time. Please try again.\",\"akFhsV\":\"Unable to resend invitation. Please try again.\",\"JQLFI3\":\"Unable to resend verification at this time. Please try again.\",\"jLtRR6\":\"Unable to reset password\",\"QtkcKO\":\"Unable to setup two-factor authentication\",\"N1m2oU\":\"Unable to sign in\",\"dA/8If\":\"Unauthorized\",\"9zMI6W\":\"Uncompleted\",\"29VNqC\":\"Unknown error\",\"7yiFvZ\":\"Unpaid\",\"EkH9pt\":\"Update\",\"CVGIOg\":\"Update Banner\",\"MSfA8z\":\"Update passkey\",\"Q3MPWA\":\"Update password\",\"vXPSuB\":\"Update profile\",\"ih1ndv\":\"Update Recipient\",\"5bRMKt\":\"Update role\",\"qg6EfE\":\"Update team\",\"V8JgFA\":\"Update team email\",\"DDP/NH\":\"Update team member\",\"KAyssy\":\"Update user\",\"iFdgvQ\":\"Update webhook\",\"2uDkRs\":\"Updating password...\",\"6JH8iK\":\"Updating profile...\",\"jUV7CU\":\"Upload Avatar\",\"2npSeV\":\"Uploaded by\",\"bM+XCB\":\"Uploaded file is too large\",\"fXh9EJ\":\"Uploaded file is too small\",\"mnNw0z\":\"Uploaded file not an allowed file type\",\"5UWfU/\":\"Use Authenticator\",\"VLViRK\":\"Use Backup Code\",\"NUXH2v\":\"Use Template\",\"7PzzBU\":\"User\",\"GjhOGB\":\"User ID\",\"DgDMhU\":\"User profiles are here!\",\"lcDO4m\":\"User settings\",\"Sxm8rQ\":\"Users\",\"wMHvYH\":\"Value\",\"BGWaEQ\":\"Verification Email Sent\",\"XZQ6rx\":\"Verification email sent successfully.\",\"ZqWgxB\":\"Verify Now\",\"kuvvht\":\"Verify your email address\",\"c9ZsJU\":\"Verify your email address to unlock all features.\",\"OUPY2G\":\"Verify your email to upload documents.\",\"jpctdh\":\"View\",\"c3aao/\":\"View activity\",\"pTCu0c\":\"View all documents sent to your account\",\"F8qz8t\":\"View all recent security activity related to your account.\",\"t3iQF8\":\"View all security activity related to your account.\",\"t5bHu+\":\"View Codes\",\"Opb2rO\":\"View documents associated with this email\",\"FbRyw+\":\"View invites\",\"kGkM7n\":\"View Original Document\",\"z0hW8A\":\"View Recovery Codes\",\"+SRqZk\":\"View teams\",\"vXtpAZ\":\"Viewed\",\"uUehLT\":\"Waiting\",\"p5sNpe\":\"Waiting for others to sign\",\"CLj7L4\":\"Want to send slick signing links like this one? <0>Check out Documenso.0>\",\"AVOxgl\":\"Want your own public profile?\",\"bJajhk\":\"We are unable to proceed to the billing portal at this time. Please try again, or contact support.\",\"mrAou1\":\"We are unable to remove this passkey at the moment. Please try again later.\",\"PVmZRU\":\"We are unable to update this passkey at the moment. Please try again later.\",\"4CEdkv\":\"We encountered an error while removing the direct template link. Please try again later.\",\"9dCMy6\":\"We encountered an error while updating the webhook. Please try again later.\",\"/666TS\":\"We encountered an unknown error while attempting create the new token. Please try again later.\",\"ghtOmL\":\"We encountered an unknown error while attempting to add this email. Please try again later.\",\"Z3g6da\":\"We encountered an unknown error while attempting to create a team. Please try again later.\",\"5jf+Ky\":\"We encountered an unknown error while attempting to delete it. Please try again later.\",\"BYsCZ0\":\"We encountered an unknown error while attempting to delete the pending team. Please try again later.\",\"X1sSV9\":\"We encountered an unknown error while attempting to delete this team. Please try again later.\",\"kQiucd\":\"We encountered an unknown error while attempting to delete this token. Please try again later.\",\"QbeZrm\":\"We encountered an unknown error while attempting to delete your account. Please try again later.\",\"RFJXMf\":\"We encountered an unknown error while attempting to invite team members. Please try again later.\",\"NOJmg5\":\"We encountered an unknown error while attempting to leave this team. Please try again later.\",\"p1cQqG\":\"We encountered an unknown error while attempting to remove this template from your profile. Please try again later.\",\"dWt6qq\":\"We encountered an unknown error while attempting to remove this transfer. Please try again or contact support.\",\"Bf8/oy\":\"We encountered an unknown error while attempting to remove this user. Please try again later.\",\"+dHRXe\":\"We encountered an unknown error while attempting to request a transfer of this team. Please try again later.\",\"zKkKFY\":\"We encountered an unknown error while attempting to reset your password. Please try again later.\",\"jMJahr\":\"We encountered an unknown error while attempting to revoke access. Please try again or contact support.\",\"v7NHq3\":\"We encountered an unknown error while attempting to save your details. Please try again later.\",\"H2R2SX\":\"We encountered an unknown error while attempting to sign you In. Please try again later.\",\"lFQvqg\":\"We encountered an unknown error while attempting to sign you up. Please try again later.\",\"tIdO3I\":\"We encountered an unknown error while attempting to sign you Up. Please try again later.\",\"s7WVvm\":\"We encountered an unknown error while attempting to update the avatar. Please try again later.\",\"t2qome\":\"We encountered an unknown error while attempting to update the banner. Please try again later.\",\"KRW9aV\":\"We encountered an unknown error while attempting to update the template. Please try again later.\",\"jSzwNQ\":\"We encountered an unknown error while attempting to update this team member. Please try again later.\",\"ZAGznT\":\"We encountered an unknown error while attempting to update your password. Please try again later.\",\"/YgkWz\":\"We encountered an unknown error while attempting to update your public profile. Please try again later.\",\"PgR2KT\":\"We encountered an unknown error while attempting to update your team. Please try again later.\",\"Fkk/tM\":\"We encountered an unknown error while attempting update the team email. Please try again later.\",\"XdaMt1\":\"We have sent a confirmation email for verification.\",\"Z/3o7q\":\"We were unable to copy the token to your clipboard. Please try again.\",\"/f76sW\":\"We were unable to copy your recovery code to your clipboard. Please try again.\",\"5Elc4g\":\"We were unable to create a checkout session. Please try again, or contact support\",\"bw0W5A\":\"We were unable to disable two-factor authentication for your account. Please ensure that you have entered your password and backup code correctly and try again.\",\"Ckd2da\":\"We were unable to log you out at this time.\",\"PGrghQ\":\"We were unable to set your public profile to public. Please try again.\",\"I8Rr9j\":\"We were unable to setup two-factor authentication for your account. Please ensure that you have entered your code correctly and try again.\",\"/Ez2eA\":\"We were unable to submit this document at this time. Please try again later.\",\"zfClNd\":\"We were unable to verify your details. Please try again or contact support\",\"791g1I\":\"We were unable to verify your email. If your email is not verified already, please try again.\",\"xxInDV\":\"We're all empty\",\"lgW1qG\":[\"We've sent a confirmation email to <0>\",[\"email\"],\"0>. Please check your inbox and click the link in the email to verify your account.\"],\"an6ayw\":\"Webhook created\",\"LnaC5y\":\"Webhook deleted\",\"kxZ7LS\":\"Webhook updated\",\"nuh/Wq\":\"Webhook URL\",\"v1kQyJ\":\"Webhooks\",\"4XSc4l\":\"Weekly\",\"nx8adn\":\"Welcome back, we are lucky to have you.\",\"v+iPzY\":\"When you click continue, you will be prompted to add the first available authenticator on your system.\",\"ks103z\":\"While waiting for them to do so you can create your own Documenso account and get started with document signing right away.\",\"gW6iyU\":\"Who do you want to remind?\",\"WCtNlH\":\"Write about the team\",\"RB+i+e\":\"Write about yourself\",\"zkWmBh\":\"Yearly\",\"kWJmRL\":\"You\",\"H0+WHg\":[\"You are about to complete approving \\\"\",[\"truncatedTitle\"],\"\\\".<0/> Are you sure?\"],\"kzE21T\":[\"You are about to complete signing \\\"\",[\"truncatedTitle\"],\"\\\".<0/> Are you sure?\"],\"9AVWSg\":[\"You are about to complete viewing \\\"\",[\"truncatedTitle\"],\"\\\".<0/> Are you sure?\"],\"wPAx3W\":[\"You are about to delete <0>\\\"\",[\"documentTitle\"],\"\\\"0>\"],\"bnSqz9\":[\"You are about to delete the following team email from <0>\",[\"teamName\"],\"0>.\"],\"5K1f43\":[\"You are about to hide <0>\\\"\",[\"documentTitle\"],\"\\\"0>\"],\"Z7Zba7\":\"You are about to leave the following team.\",\"w4DsUu\":[\"You are about to remove the following user from <0>\",[\"teamName\"],\"0>.\"],\"3TbP+M\":[\"You are about to revoke access for team <0>\",[\"0\"],\"0> (\",[\"1\"],\") to use your email.\"],\"km5WYz\":\"You are currently on the <0>Free Plan0>.\",\"lS8/qb\":[\"You are currently subscribed to <0>\",[\"0\"],\"0>\"],\"vELAGq\":[\"You are currently updating <0>\",[\"teamMemberName\"],\".0>\"],\"9Vb1lk\":[\"You are currently updating the <0>\",[\"passkeyName\"],\"0> passkey.\"],\"fE9efX\":\"You are not authorized to view this page.\",\"xGF8ow\":\"You can choose to enable or disable your profile for public view.\",\"knayUe\":\"You can choose to enable or disable your team profile for public view.\",\"6RWhw7\":\"You can claim your profile later on by going to your profile settings!\",\"wvsTRr\":\"You can update the profile URL by updating the team URL in the general settings page.\",\"MfJtjp\":\"You can view documents associated with this email and use this identity when sending documents.\",\"q1+l2h\":[\"You cannot have more than \",[\"MAXIMUM_PASSKEYS\"],\" passkeys.\"],\"Nv8I50\":\"You cannot modify a team member who has a higher role than you.\",\"tBM5rt\":\"You cannot upload encrypted PDFs\",\"uPZVOC\":\"You currently have an active plan\",\"vGmUyC\":\"You do not currently have a customer record, this should not happen. Please contact support for assistance.\",\"COkiAI\":[\"You have accepted an invitation from <0>\",[\"0\"],\"0> to join their team.\"],\"XJ/LXV\":[\"You have already completed the ownership transfer for <0>\",[\"0\"],\"0>.\"],\"udOfln\":[\"You have already verified your email address for <0>\",[\"0\"],\"0>.\"],\"rawUsl\":[\"You have been invited by <0>\",[\"0\"],\"0> to join their team.\"],\"C5iBwQ\":[\"You have declined the invitation from <0>\",[\"0\"],\"0> to join their team.\"],\"9vc55I\":\"You have no webhooks yet. Your webhooks will be shown here once you create them.\",\"MWXNow\":\"You have not yet created any templates. To create a template please upload one.\",\"qJTcfP\":\"You have not yet created or received any documents. To create a document please upload one.\",\"yvV4GX\":[\"You have reached the maximum limit of \",[\"0\"],\" direct templates. <0>Upgrade your account to continue!0>\"],\"m5RA9C\":\"You have reached your document limit.\",\"K/3HUN\":\"You have reached your document limit. <0>Upgrade your account to continue!0>\",\"dURxlX\":\"You have successfully left this team.\",\"vi6pfe\":\"You have successfully registered. Please verify your account by clicking on the link you received in the email.\",\"B5Ovxs\":\"You have successfully removed this user from the team.\",\"PIl3Hg\":\"You have successfully revoked access.\",\"Z1UZXO\":[\"You have updated \",[\"teamMemberName\"],\".\"],\"tD6Cj2\":[\"You have verified your email address for <0>\",[\"0\"],\"0>.\"],\"pNlz0U\":\"You must be an admin of this team to manage billing.\",\"xIaz3h\":\"You must enter {confirmTransferMessage} to proceed\",\"OGT1bh\":\"You must enter {deleteMessage} to proceed\",\"jifgCp\":\"You must have at least one other team member to transfer ownership.\",\"ID3LkG\":\"You must set a profile URL before enabling your public profile.\",\"zfliFq\":[\"You need to be logged in as <0>\",[\"email\"],\"0> to view this page.\"],\"1et3k8\":\"You need to be logged in to view this page.\",\"ZR9lKP\":\"You need to setup 2FA to mark this document as viewed.\",\"tKEndc\":\"You will get notified & be able to set up your documenso public profile when we launch the feature.\",\"MBzXsC\":\"You will now be required to enter a code from your authenticator app when signing in.\",\"eWlnaX\":\"You will receive an Email copy of the signed document once everyone has signed.\",\"gmJH7Y\":\"Your account has been deleted successfully.\",\"YL3Iyk\":\"Your avatar has been updated successfully.\",\"c4qhbN\":\"Your banner has been updated successfully.\",\"+Ljs6n\":\"Your current plan is past due. Please update your payment information.\",\"5s2EJQ\":\"Your direct signing templates\",\"pj2JS8\":\"Your document failed to upload.\",\"DIplUX\":\"Your document has been created from the template successfully.\",\"iz6qAJ\":\"Your document has been re-sent successfully.\",\"0KIVTr\":\"Your document has been sent successfully.\",\"vbvBKY\":\"Your document has been successfully duplicated.\",\"TqcK/s\":\"Your document has been uploaded successfully.\",\"xEM9BR\":\"Your document has been uploaded successfully. You will be redirected to the template page.\",\"F2NQI1\":\"Your documents\",\"JQbHxK\":\"Your email has been successfully confirmed! You can now use all features of Documenso.\",\"pSDzas\":[\"Your email is currently being used by team <0>\",[\"0\"],\"0> (\",[\"1\"],\").\"],\"K6mQ0w\":\"Your existing tokens\",\"Ecp9Z/\":\"Your password has been updated successfully.\",\"/tDdSk\":\"Your payment for teams is overdue. Please settle the payment to avoid any service disruptions.\",\"R+Yx9f\":\"Your profile has been updated successfully.\",\"skqRDH\":\"Your profile has been updated.\",\"kF7YFF\":\"Your public profile has been updated.\",\"XnIGua\":\"Your recovery code has been copied to your clipboard.\",\"/N3QQp\":\"Your recovery codes are listed below. Please store them in a safe place.\",\"o9X4Qf\":\"Your subscription is currently active.\",\"+fTW4I\":\"Your team has been created.\",\"DCGKPd\":\"Your team has been successfully deleted.\",\"7rm0si\":\"Your team has been successfully updated.\",\"icNCVp\":\"Your template has been duplicated successfully.\",\"juxjhy\":\"Your template has been successfully deleted.\",\"BHaG+M\":\"Your template will be duplicated.\",\"WQkZGA\":\"Your templates has been saved successfully.\",\"4OcZNw\":\"Your token has expired!\",\"stera3\":\"Your token was created successfully! Make sure to copy it because you won't be able to see it again!\",\"R5j6t5\":\"Your tokens will be shown here once you create them.\",\"73XXzw\":[[\"0\"],\" of \",[\"1\"],\" row(s) selected.\"],\"lZ4w45\":[[\"visibleRows\",\"plural\",{\"one\":[\"Showing \",\"#\",\" result.\"],\"other\":[\"Showing \",\"#\",\" results.\"]}]],\"AhYxw5\":\"<0>Inherit authentication method0> - Use the global action signing authentication method configured in the \\\"General Settings\\\" step\",\"OepImG\":\"<0>No restrictions0> - No authentication required\",\"07+JZ2\":\"<0>No restrictions0> - The document can be accessed directly by the URL sent to the recipient\",\"jx/lwn\":\"<0>None0> - No authentication required\",\"CUT3u1\":\"<0>Require 2FA0> - The recipient must have an account and 2FA enabled via their settings\",\"2PbD3D\":\"<0>Require account0> - The recipient must be signed in to view the document\",\"QHSbey\":\"<0>Require passkey0> - The recipient must have an account and passkey configured via their settings\",\"Oy5nEc\":\"Add a document\",\"7Pz5x5\":\"Add a URL to redirect the user to once the document is signed\",\"aILOUH\":\"Add an external ID to the document. This can be used to identify the document in external systems.\",\"bK1dPK\":\"Add an external ID to the template. This can be used to identify in external systems.\",\"nnZ1Sa\":\"Add another option\",\"0/UVRw\":\"Add another value\",\"VaCh6w\":\"Add myself\",\"jAa/lz\":\"Add Myself\",\"29QK6H\":\"Add Placeholder Recipient\",\"vcxlzZ\":\"Add Signer\",\"7F2ltK\":\"Add text to the field\",\"U3pytU\":\"Admin\",\"NFIOKv\":\"Advanced Options\",\"VNgKZz\":\"Advanced settings\",\"bNUpvl\":\"After submission, a document will be automatically generated and added to your documents page. You will also receive a notification via email.\",\"ca9AbO\":\"Approver\",\"j2Uisd\":\"Approving\",\"THokF3\":\"Black\",\"Zn5crm\":\"Blue\",\"brJrDl\":\"Cannot remove signer\",\"RpYfjZ\":\"Cc\",\"XdZeJk\":\"CC\",\"nrL/ZD\":\"CC'd\",\"EEk+d0\":\"Character Limit\",\"G1XxbZ\":\"Checkbox\",\"wbixMe\":\"Checkbox values\",\"u8JHrO\":\"Clear filters\",\"IqxkER\":\"Clear Signature\",\"OrcxNk\":\"Configure Direct Recipient\",\"92KLYs\":[\"Configure the \",[\"0\"],\" field\"],\"GB2F11\":\"Custom Text\",\"4BHv90\":\"Date Format\",\"NLXhq7\":\"Direct link receiver\",\"YScG1E\":\"Document access\",\"rAqi0g\":\"Document Creation\",\"6GyScL\":\"Drag & drop your PDF here.\",\"iKQcPM\":\"Dropdown\",\"XXvhMd\":\"Dropdown options\",\"XLpxoj\":\"Email Options\",\"f7sXvi\":\"Enter password\",\"5KfWxA\":\"External ID\",\"4CP+OV\":\"Failed to save settings.\",\"LK3SFK\":\"Field character limit\",\"NYkIsf\":\"Field format\",\"X6Tb6Q\":\"Field label\",\"NaVkSD\":\"Field placeholder\",\"N1UTWT\":\"Global recipient action authentication\",\"VmkjGB\":\"Green\",\"uCroPU\":\"I am a signer of this document\",\"K6KTX2\":\"I am a viewer of this document\",\"ngj5km\":\"I am an approver of this document\",\"JUZIGu\":\"I am required to receive a copy of this document\",\"ZjDoG7\":\"I am required to recieve a copy of this document\",\"fnbcC0\":\"Inherit authentication method\",\"87a/t/\":\"Label\",\"dtOoGl\":\"Manager\",\"CK1KXz\":\"Max\",\"OvoEq7\":\"Member\",\"ziXm9u\":\"Message <0>(Optional)0>\",\"eTUF28\":\"Min\",\"4nqUV0\":\"Needs to approve\",\"lNQBPg\":\"Needs to sign\",\"eUAUyG\":\"Needs to view\",\"GBIRGD\":\"No recipient matching this description was found.\",\"f34Qxi\":\"No recipients with this role\",\"qQ7oqE\":\"No restrictions\",\"AxPAXW\":\"No results found\",\"pt86ev\":\"No signature field found\",\"HptUxX\":\"Number\",\"bR2sEm\":\"Number format\",\"eY6ns+\":\"Once enabled, you can select any active recipient to be a direct link signing recipient, or create a new one. This recipient type cannot be edited or deleted.\",\"JE2qy+\":\"Once your template is set up, share the link anywhere you want. The person who opens the link will be able to enter their information in the direct link recipient field and complete any other fields assigned to them.\",\"fpzyLj\":[\"Page \",[\"0\"],\" of \",[\"1\"]],\"8ltyoa\":\"Password Required\",\"ayaTI6\":\"Pick a number\",\"hx1ePY\":\"Placeholder\",\"MtkqZc\":\"Radio\",\"5cEi0C\":\"Radio values\",\"uNQ6eB\":\"Read only\",\"UTnF5X\":\"Receives copy\",\"ZIuo5V\":\"Recipient action authentication\",\"wRTiSD\":\"Red\",\"VTB2Rz\":\"Redirect URL\",\"8dg+Yo\":\"Required field\",\"xxCtZv\":\"Rows per page\",\"9Y3hAT\":\"Save Template\",\"StoBff\":\"Search languages...\",\"hVPa4O\":\"Select an option\",\"IM+vrQ\":\"Select at least\",\"Gve6FG\":\"Select default option\",\"JlFcis\":\"Send\",\"AEV4wo\":\"Send Document\",\"iE3nGO\":\"Share Signature Card\",\"y+hKWu\":\"Share the Link\",\"ydZ6yi\":\"Show advanced settings\",\"jTCAGu\":\"Signer\",\"6G8s+q\":\"Signing\",\"kW2h2Z\":\"Some signers have not been assigned a signature field. Please assign at least 1 signature field to each signer before proceeding.\",\"kf83Ld\":\"Something went wrong.\",\"WlBiWh\":[\"Step <0>\",[\"step\"],\" of \",[\"maxStep\"],\"0>\"],\"ki77Td\":\"Subject <0>(Optional)0>\",\"hQRttt\":\"Submit\",\"URdrTr\":\"Template title\",\"xeiujy\":\"Text\",\"imClgr\":\"The authentication required for recipients to sign fields\",\"yyD2dE\":\"The authentication required for recipients to sign the signature field.\",\"GtDmLf\":\"The authentication required for recipients to view the document.\",\"zAoaPB\":\"The document's name\",\"Ev3GOS\":\"The password you have entered is incorrect. Please try again.\",\"OPnnb6\":\"The recipient is not required to take any action and receives a copy of the document after it is completed.\",\"v8p6Mb\":\"The recipient is required to approve the document for it to be completed.\",\"CPv0TB\":\"The recipient is required to sign the document for it to be completed.\",\"oIvIfH\":\"The recipient is required to view the document for it to be completed.\",\"Br2bvS\":\"The sharing link could not be created at this time. Please try again.\",\"XJIzqY\":\"The sharing link has been copied to your clipboard.\",\"UyM8/E\":\"The signer's email\",\"zHJ+vk\":\"The signer's name\",\"kaEF2i\":\"This can be overriden by setting the authentication requirements directly on each recipient in the next step.\",\"QUZVfd\":\"This document has already been sent to this recipient. You can no longer edit this recipient.\",\"riNGUC\":\"This document is password protected. Please enter the password to view the document.\",\"Qkeh+t\":\"This field cannot be modified or deleted. When you share this template's direct link or add it to your public profile, anyone who accesses it can input their name and email, and fill in the fields assigned to them.\",\"l2Xt6u\":\"This signer has already received the document.\",\"6iFh5a\":\"This will override any global settings.\",\"RxsRD6\":\"Time Zone\",\"UWmOq4\":[\"To proceed further, please set at least one value for the \",[\"0\"],\" field.\"],\"GT+2nz\":\"Update the role and add fields as required for the direct recipient. The individual who uses the direct link will sign the document as the direct recipient.\",\"kwkhPe\":\"Upgrade\",\"06fEqf\":\"Upload Template Document\",\"lGWE4b\":\"Validation\",\"M/TIv1\":\"Viewer\",\"RVWz5F\":\"Viewing\",\"5Ex+AP\":\"White\",\"4/hUq0\":\"You are about to send this document to the recipients. Are you sure you want to continue?\",\"rb/T41\":\"You can use the following variables in your message:\",\"9+Ph0R\":\"You cannot upload documents at this time.\"}")};
\ No newline at end of file
diff --git a/packages/lib/translations/en/web.po b/packages/lib/translations/en/web.po
index 0e61a2165..baee54920 100644
--- a/packages/lib/translations/en/web.po
+++ b/packages/lib/translations/en/web.po
@@ -38,7 +38,7 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}"
msgstr "{0, plural, one {(1 character over)} other {(# characters over)}}"
#: apps/web/src/components/forms/public-profile-form.tsx:237
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:397
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:395
msgid "{0, plural, one {# character over the limit} other {# characters over the limit}}"
msgstr "{0, plural, one {# character over the limit} other {# characters over the limit}}"
@@ -67,7 +67,7 @@ msgstr "{0, plural, one {Waiting on 1 recipient} other {Waiting on # recipients}
msgid "{0, plural, zero {Select values} other {# selected...}}"
msgstr "{0, plural, zero {Select values} other {# selected...}}"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:251
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:249
msgid "{0} direct signing templates"
msgstr "{0} direct signing templates"
@@ -100,7 +100,7 @@ msgid "{numberOfSeats, plural, one {# member} other {# members}}"
msgstr "{numberOfSeats, plural, one {# member} other {# members}}"
#: apps/web/src/components/forms/public-profile-form.tsx:231
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:391
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:389
msgid "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
msgstr "{remaningLength, plural, one {# character remaining} other {# characters remaining}}"
@@ -185,19 +185,19 @@ msgid "Account deleted"
msgstr "Account deleted"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-dropdown.tsx:105
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:106
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:104
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:121
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:164
-#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:120
+#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:118
msgid "Action"
msgstr "Action"
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:89
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:141
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:135
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:144
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:120
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:129
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:85
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:140
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:133
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:142
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:118
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:127
msgid "Actions"
msgstr "Actions"
@@ -294,11 +294,11 @@ msgstr "Add the subject and message you wish to send to signers."
msgid "Adding and removing seats will adjust your invoice accordingly."
msgstr "Adding and removing seats will adjust your invoice accordingly."
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:61
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:59
msgid "Admin Actions"
msgstr "Admin Actions"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:257
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:262
msgid "Admin panel"
msgstr "Admin panel"
@@ -306,7 +306,7 @@ msgstr "Admin panel"
msgid "All"
msgstr "All"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:37
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:42
msgid "All documents"
msgstr "All documents"
@@ -322,7 +322,7 @@ msgstr "All inserted signatures will be voided"
msgid "All recipients will be notified"
msgstr "All recipients will be notified"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:52
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:57
msgid "All templates"
msgstr "All templates"
@@ -476,6 +476,7 @@ msgstr "An error occurred while uploading your document."
#: apps/web/src/app/(dashboard)/settings/profile/delete-account-dialog.tsx:63
#: apps/web/src/app/(signing)/sign/[token]/complete/claim-account.tsx:98
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:54
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:301
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:97
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:88
#: apps/web/src/components/(teams)/dialogs/add-team-email-dialog.tsx:100
@@ -507,8 +508,8 @@ msgstr "An error occurred while uploading your document."
#: apps/web/src/components/forms/v2/signup.tsx:160
#: apps/web/src/components/forms/v2/signup.tsx:183
#: apps/web/src/components/forms/v2/signup.tsx:197
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:143
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:180
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:141
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:178
msgid "An unknown error occurred"
msgstr "An unknown error occurred"
@@ -516,9 +517,9 @@ msgstr "An unknown error occurred"
msgid "Any payment methods attached to this team will remain attached to this team. Please contact us if you need to update this information."
msgstr "Any payment methods attached to this team will remain attached to this team. Please contact us if you need to update this information."
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:23
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:43
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:57
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:22
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:42
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:56
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:90
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:93
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:81
@@ -559,7 +560,7 @@ msgstr "Are you sure you wish to delete this team?"
#: apps/web/src/components/(teams)/dialogs/delete-team-member-dialog.tsx:81
#: apps/web/src/components/(teams)/dialogs/leave-team-dialog.tsx:81
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:116
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:441
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:439
msgid "Are you sure?"
msgstr "Are you sure?"
@@ -619,7 +620,7 @@ msgstr "Banner Updated"
msgid "Basic details"
msgstr "Basic details"
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:74
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:72
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/billing/page.tsx:61
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:117
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:120
@@ -628,7 +629,7 @@ msgstr "Basic details"
msgid "Billing"
msgstr "Billing"
-#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:101
+#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:99
msgid "Browser"
msgstr "Browser"
@@ -682,7 +683,7 @@ msgstr "By enabling 2FA, you will be required to enter a code from your authenti
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:187
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:257
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:163
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:452
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:450
msgid "Cancel"
msgstr "Cancel"
@@ -732,7 +733,7 @@ msgstr "Click here to get started"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx:78
#: apps/web/src/app/(dashboard)/settings/public-profile/public-templates-data-table.tsx:118
-#: apps/web/src/components/document/document-history-sheet.tsx:131
+#: apps/web/src/components/document/document-history-sheet.tsx:133
msgid "Click here to retry"
msgstr "Click here to retry"
@@ -759,8 +760,8 @@ msgstr "Click to insert field"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-transfer-status.tsx:121
#: apps/web/src/components/forms/2fa/enable-authenticator-app-dialog.tsx:180
#: apps/web/src/components/forms/2fa/view-recovery-codes-dialog.tsx:102
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:321
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:425
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:319
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:423
msgid "Close"
msgstr "Close"
@@ -788,7 +789,7 @@ msgstr "Complete Viewing"
msgid "Completed"
msgstr "Completed"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:43
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:48
msgid "Completed documents"
msgstr "Completed documents"
@@ -804,12 +805,12 @@ msgstr "Configure general settings for the document."
msgid "Configure general settings for the template."
msgstr "Configure general settings for the template."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:339
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:337
msgid "Configure template"
msgstr "Configure template"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:479
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:462
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:460
msgid "Confirm"
msgstr "Confirm"
@@ -848,7 +849,7 @@ msgstr "Content"
#: apps/web/src/app/(unauthenticated)/team/verify/email/[token]/page.tsx:143
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:72
#: apps/web/src/app/(unauthenticated)/team/verify/transfer/[token]/page.tsx:122
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:330
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:328
msgid "Continue"
msgstr "Continue"
@@ -922,8 +923,8 @@ msgstr "Create now"
msgid "Create one automatically"
msgstr "Create one automatically"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:176
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:246
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:181
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:251
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:138
#: apps/web/src/components/(teams)/dialogs/create-team-dialog.tsx:146
msgid "Create team"
@@ -954,12 +955,12 @@ msgstr "Create your account and start using state-of-the-art document signing."
msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
msgstr "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp."
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:63
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:48
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:62
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:35
#: apps/web/src/app/(dashboard)/documents/data-table.tsx:54
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table.tsx:65
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:57
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:276
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:56
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:274
msgid "Created"
msgstr "Created"
@@ -967,21 +968,29 @@ msgstr "Created"
msgid "Created At"
msgstr "Created At"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:82
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:79
msgid "Created by"
msgstr "Created by"
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:49
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:68
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:101
-#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:80
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:48
+#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:78
msgid "Created on"
msgstr "Created on"
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:67
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:88
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:93
+msgid "Created on {0}"
+msgstr "Created on {0}"
+
#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:89
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:94
-msgid "Created on <0/>"
-msgstr "Created on <0/>"
+#~ msgid "Created on <0/>"
+#~ msgstr "Created on <0/>"
+
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:100
+msgid "Created on{0}"
+msgstr "Created on{0}"
#: apps/web/src/components/forms/password.tsx:107
msgid "Current Password"
@@ -995,16 +1004,16 @@ msgstr "Current plan: {0}"
msgid "Daily"
msgstr "Daily"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:255
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:265
msgid "Dark Mode"
msgstr "Dark Mode"
-#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:72
+#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:70
#: apps/web/src/app/(signing)/sign/[token]/date-field.tsx:148
msgid "Date"
msgstr "Date"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:88
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:85
msgid "Date created"
msgstr "Date created"
@@ -1021,12 +1030,12 @@ msgstr "Declined team invitation"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:200
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:177
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:211
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:86
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:104
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:83
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:100
#: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:91
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:90
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:119
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:109
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:122
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:105
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:121
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:109
#: apps/web/src/components/(teams)/dialogs/delete-team-dialog.tsx:167
@@ -1085,7 +1094,7 @@ msgstr "Delete Webhook"
msgid "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
msgstr "Delete your account and all its contents, including completed documents. This action is irreversible and will cancel your subscription, so proceed with caution."
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:42
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:41
msgid "Deleted"
msgstr "Deleted"
@@ -1097,11 +1106,11 @@ msgstr "Deleting account..."
#~ msgid "Deleting document"
#~ msgstr "Deleting document"
-#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:77
+#: apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx:75
msgid "Device"
msgstr "Device"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:92
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:91
#: apps/web/src/app/(dashboard)/templates/template-direct-link-badge.tsx:46
msgid "direct link"
msgstr "direct link"
@@ -1126,7 +1135,7 @@ msgstr "Direct link signing has been disabled"
msgid "Direct link signing has been enabled"
msgstr "Direct link signing has been enabled"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:96
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:95
msgid "Direct link templates contain one dynamic recipient placeholder. Anyone with access to this link can sign the document, and it will then appear on your documents page."
msgstr "Direct link templates contain one dynamic recipient placeholder. Anyone with access to this link can sign the document, and it will then appear on your documents page."
@@ -1138,7 +1147,7 @@ msgstr "Direct template link deleted"
msgid "Direct template link usage exceeded ({0}/{1})"
msgstr "Direct template link usage exceeded ({0}/{1})"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:419
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:417
msgid "Disable"
msgstr "Disable"
@@ -1152,8 +1161,8 @@ msgstr "Disable 2FA"
msgid "Disable Two Factor Authentication before deleting your account."
msgstr "Disable Two Factor Authentication before deleting your account."
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:75
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:80
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:74
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:79
msgid "Disabled"
msgstr "Disabled"
@@ -1177,7 +1186,7 @@ msgstr "Do you want to duplicate this template?"
msgid "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
msgstr "Documenso will delete <0>all of your documents0>, along with all of your completed documents, signatures, and all other resources belonging to your Account."
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:122
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:119
msgid "Document"
msgstr "Document"
@@ -1220,11 +1229,11 @@ msgid "Document Duplicated"
msgstr "Document Duplicated"
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view.tsx:158
-#: apps/web/src/components/document/document-history-sheet.tsx:102
+#: apps/web/src/components/document/document-history-sheet.tsx:104
msgid "Document history"
msgstr "Document history"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:74
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:71
msgid "Document ID"
msgstr "Document ID"
@@ -1232,7 +1241,7 @@ msgstr "Document ID"
msgid "Document inbox"
msgstr "Document inbox"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:179
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:178
msgid "Document Limit Exceeded!"
msgstr "Document Limit Exceeded!"
@@ -1272,11 +1281,11 @@ msgstr "Document Signed"
msgid "Document signing process will be cancelled"
msgstr "Document signing process will be cancelled"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:78
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:75
msgid "Document status"
msgstr "Document status"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:70
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:67
msgid "Document title"
msgstr "Document title"
@@ -1305,7 +1314,7 @@ msgstr "Document will be permanently deleted"
#: apps/web/src/app/(dashboard)/documents/documents-page-view.tsx:110
#: apps/web/src/app/(profile)/p/[url]/page.tsx:166
#: apps/web/src/app/not-found.tsx:21
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:200
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:205
#: apps/web/src/components/(dashboard)/layout/desktop-nav.tsx:18
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:35
#: apps/web/src/components/ui/user-profile-timur.tsx:60
@@ -1347,7 +1356,7 @@ msgstr "Download Certificate"
msgid "Draft"
msgstr "Draft"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:41
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:46
msgid "Draft documents"
msgstr "Draft documents"
@@ -1373,10 +1382,10 @@ msgstr "Duplicate"
#: apps/web/src/app/(dashboard)/documents/data-table-action-button.tsx:102
#: apps/web/src/app/(dashboard)/documents/data-table-action-dropdown.tsx:154
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:111
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:99
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:95
#: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:62
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-email-dropdown.tsx:77
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:104
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:100
msgid "Edit"
msgstr "Edit"
@@ -1448,9 +1457,9 @@ msgstr "Enable Direct Link Signing"
#: apps/web/src/app/(dashboard)/admin/site-settings/banner-form.tsx:123
#: apps/web/src/app/(dashboard)/settings/webhooks/[id]/page.tsx:138
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:75
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:74
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/[id]/page.tsx:142
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:80
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:79
#: apps/web/src/components/(dashboard)/settings/webhooks/create-webhook-dialog.tsx:166
msgid "Enabled"
msgstr "Enabled"
@@ -1532,14 +1541,22 @@ msgstr "Expired"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:73
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:106
-msgid "Expires on"
-msgstr "Expires on"
+#~ msgid "Expires on"
+#~ msgstr "Expires on"
+
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:71
+msgid "Expires on {0}"
+msgstr "Expires on {0}"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:75
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:108
#~ msgid "Expires on <0/>"
#~ msgstr "Expires on <0/>"
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:107
+msgid "Expires on{0}"
+msgstr "Expires on{0}"
+
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:42
msgid "Failed to reseal document"
msgstr "Failed to reseal document"
@@ -1633,7 +1650,7 @@ msgstr "Hey I’m Timur"
msgid "Hide"
msgstr "Hide"
-#: apps/web/src/components/document/document-history-sheet.tsx:109
+#: apps/web/src/components/document/document-history-sheet.tsx:111
msgid "Hide additional information"
msgstr "Hide additional information"
@@ -1666,11 +1683,11 @@ msgstr "If your authenticator app does not support QR codes, you can use the fol
msgid "Inbox"
msgstr "Inbox"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:47
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:52
msgid "Inbox documents"
msgstr "Inbox documents"
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:62
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:53
msgid "Information"
msgstr "Information"
@@ -1708,11 +1725,11 @@ msgstr "Invitation accepted!"
msgid "Invitation declined"
msgstr "Invitation declined"
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:82
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:80
msgid "Invitation has been deleted"
msgstr "Invitation has been deleted"
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:65
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:63
msgid "Invitation has been resent"
msgstr "Invitation has been resent"
@@ -1732,7 +1749,7 @@ msgstr "Invite Members"
msgid "Invite team members"
msgstr "Invite team members"
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:130
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:128
msgid "Invited At"
msgstr "Invited At"
@@ -1756,6 +1773,10 @@ msgstr "It seems that there is no token provided, if you are trying to verify yo
msgid "It seems that there is no token provided. Please check your email and try again."
msgstr "It seems that there is no token provided. Please check your email and try again."
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:286
+msgid "Language"
+msgstr "Language"
+
#: apps/web/src/components/(dashboard)/period-selector/period-selector.tsx:61
msgid "Last 14 days"
msgstr "Last 14 days"
@@ -1768,15 +1789,15 @@ msgstr "Last 30 days"
msgid "Last 7 days"
msgstr "Last 7 days"
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:52
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:41
msgid "Last modified"
msgstr "Last modified"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:94
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:91
msgid "Last updated"
msgstr "Last updated"
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:53
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:52
msgid "Last updated at"
msgstr "Last updated at"
@@ -1785,7 +1806,7 @@ msgid "Last used"
msgstr "Last used"
#: apps/web/src/components/(teams)/dialogs/leave-team-dialog.tsx:111
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:119
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:117
msgid "Leave"
msgstr "Leave"
@@ -1793,7 +1814,7 @@ msgstr "Leave"
msgid "Leave team"
msgstr "Leave team"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:254
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:264
msgid "Light Mode"
msgstr "Light Mode"
@@ -1805,8 +1826,8 @@ msgstr "Like to have your own public profile with agreements?"
msgid "Link template"
msgstr "Link template"
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:80
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:85
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:79
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:84
msgid "Listening to {0}"
msgstr "Listening to {0}"
@@ -1839,7 +1860,7 @@ msgstr "Loading..."
msgid "Login"
msgstr "Login"
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:103
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:101
msgid "Manage"
msgstr "Manage"
@@ -1851,7 +1872,7 @@ msgstr "Manage {0}'s profile"
msgid "Manage all teams you are currently associated with."
msgstr "Manage all teams you are currently associated with."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:343
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:341
msgid "Manage details for this public template"
msgstr "Manage details for this public template"
@@ -1883,7 +1904,7 @@ msgstr "Manage subscriptions"
msgid "Manage team subscription."
msgstr "Manage team subscription."
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:163
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:168
msgid "Manage teams"
msgstr "Manage teams"
@@ -1919,8 +1940,8 @@ msgstr "MAU (created document)"
msgid "MAU (had document completed)"
msgstr "MAU (had document completed)"
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:92
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:115
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:90
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:113
msgid "Member Since"
msgstr "Member Since"
@@ -2037,7 +2058,7 @@ msgstr "No recent activity"
msgid "No recipients"
msgstr "No recipients"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:195
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:200
msgid "No results found."
msgstr "No results found."
@@ -2045,7 +2066,7 @@ msgstr "No results found."
msgid "No token provided"
msgstr "No token provided"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:286
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:284
msgid "No valid direct templates found"
msgstr "No valid direct templates found"
@@ -2075,16 +2096,16 @@ msgstr "Nothing to do"
msgid "On this page, you can create a new webhook."
msgstr "On this page, you can create a new webhook."
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:27
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:26
msgid "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation1>."
msgstr "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation1>."
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:61
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:60
msgid "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here1>"
msgstr "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here1>"
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:30
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:35
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:29
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:34
msgid "On this page, you can create new Webhooks and manage the existing ones."
msgstr "On this page, you can create new Webhooks and manage the existing ones."
@@ -2128,8 +2149,8 @@ msgstr "Or continue with"
msgid "Otherwise, the document will be created as a draft."
msgstr "Otherwise, the document will be created as a draft."
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:87
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:76
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:86
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:81
msgid "Owner"
msgstr "Owner"
@@ -2174,7 +2195,7 @@ msgstr "Passkeys allow you to sign in and authenticate using biometrics, passwor
msgid "Passkeys are not supported on this browser"
msgstr "Passkeys are not supported on this browser"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:65
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:70
#: apps/web/src/components/forms/password.tsx:123
#: apps/web/src/components/forms/reset-password.tsx:110
#: apps/web/src/components/forms/signin.tsx:344
@@ -2208,7 +2229,7 @@ msgstr "Payment overdue"
msgid "Pending"
msgstr "Pending"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:46
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:51
msgid "Pending documents"
msgstr "Pending documents"
@@ -2224,11 +2245,11 @@ msgstr "Pending invitations"
msgid "Pending team deleted."
msgstr "Pending team deleted."
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:129
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:134
msgid "Personal"
msgstr "Personal"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:72
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:77
msgid "Personal Account"
msgstr "Personal Account"
@@ -2312,7 +2333,7 @@ msgstr "Please try again later."
msgid "Please type <0>{0}0> to confirm."
msgstr "Please type <0>{0}0> to confirm."
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:209
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:214
msgid "Preferences"
msgstr "Preferences"
@@ -2320,17 +2341,17 @@ msgstr "Preferences"
msgid "Preview and configure template."
msgstr "Preview and configure template."
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:106
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:105
#: apps/web/src/components/formatter/template-type.tsx:22
msgid "Private"
msgstr "Private"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:116
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:115
msgid "Private templates can only be modified and viewed by you."
msgstr "Private templates can only be modified and viewed by you."
#: apps/web/src/app/(dashboard)/settings/profile/page.tsx:28
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:64
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:69
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:36
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:39
msgid "Profile"
@@ -2349,7 +2370,7 @@ msgstr "Profile is currently <0>visible0>."
msgid "Profile updated"
msgstr "Profile updated"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:79
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:78
#: apps/web/src/components/formatter/template-type.tsx:27
msgid "Public"
msgstr "Public"
@@ -2370,7 +2391,7 @@ msgstr "Public profile URL"
msgid "Public profile username"
msgstr "Public profile username"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:83
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:82
msgid "Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile."
msgstr "Public templates are connected to your public profile. Any modifications to public templates will also appear in your public profile."
@@ -2391,7 +2412,7 @@ msgstr "Reauthentication is required to sign this field"
msgid "Recent activity"
msgstr "Recent activity"
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:73
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:69
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:280
msgid "Recipient"
msgstr "Recipient"
@@ -2400,7 +2421,7 @@ msgstr "Recipient"
msgid "Recipient updated"
msgstr "Recipient updated"
-#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:68
+#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:66
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recipients.tsx:34
msgid "Recipients"
msgstr "Recipients"
@@ -2438,8 +2459,8 @@ msgstr "Remembered your password? <0>Sign In0>"
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/team-email-dropdown.tsx:89
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:159
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table-actions.tsx:54
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:168
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:169
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:166
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:167
#: apps/web/src/components/forms/avatar-image.tsx:169
msgid "Remove"
msgstr "Remove"
@@ -2448,7 +2469,7 @@ msgstr "Remove"
msgid "Remove team email"
msgstr "Remove team email"
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:166
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:164
msgid "Remove team member"
msgstr "Remove team member"
@@ -2466,7 +2487,7 @@ msgid "Reseal document"
msgstr "Reseal document"
#: apps/web/src/app/(dashboard)/documents/_action-items/resend-document.tsx:118
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:156
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:154
msgid "Resend"
msgstr "Resend"
@@ -2540,9 +2561,9 @@ msgstr "Revoke access"
#: apps/web/src/app/(dashboard)/templates/template-direct-link-dialog.tsx:283
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:318
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:163
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:84
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:125
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:107
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:82
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:123
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:105
msgid "Role"
msgstr "Role"
@@ -2564,7 +2585,7 @@ msgstr "Save"
msgid "Search"
msgstr "Search"
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:141
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:140
msgid "Search by document title"
msgstr "Search by document title"
@@ -2604,11 +2625,11 @@ msgstr "Select a team to move this document to. This action cannot be undone."
msgid "Select a team to move this template to. This action cannot be undone."
msgstr "Select a team to move this template to. This action cannot be undone."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:263
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:261
msgid "Select a template you'd like to display on your public profile"
msgstr "Select a template you'd like to display on your public profile"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:259
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:257
msgid "Select a template you'd like to display on your team's public profile"
msgstr "Select a template you'd like to display on your team's public profile"
@@ -2628,7 +2649,7 @@ msgstr "Send document"
msgid "Send reminder"
msgstr "Send reminder"
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:69
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:65
msgid "Sender"
msgstr "Sender"
@@ -2649,8 +2670,8 @@ msgid "Set a password"
msgstr "Set a password"
#: apps/web/src/app/(dashboard)/settings/layout.tsx:20
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:60
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:206
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:65
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:211
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:47
msgid "Settings"
msgstr "Settings"
@@ -2673,7 +2694,7 @@ msgstr "Share Signing Card"
msgid "Show"
msgstr "Show"
-#: apps/web/src/components/document/document-history-sheet.tsx:111
+#: apps/web/src/components/document/document-history-sheet.tsx:113
msgid "Show additional information"
msgstr "Show additional information"
@@ -2734,7 +2755,7 @@ msgstr "Sign In"
msgid "Sign in to your account"
msgstr "Sign in to your account"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:285
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:297
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:84
msgid "Sign Out"
msgstr "Sign Out"
@@ -2842,8 +2863,8 @@ msgstr "Site Settings"
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:64
#: apps/web/src/components/(teams)/dialogs/remove-team-email-dialog.tsx:83
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table-actions.tsx:33
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:70
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:87
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:68
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:85
#: apps/web/src/components/(teams)/team-billing-portal-button.tsx:29
msgid "Something went wrong"
msgstr "Something went wrong"
@@ -2885,9 +2906,9 @@ msgstr "Sorry, we were unable to download the certificate. Please try again late
msgid "Stats"
msgstr "Stats"
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:82
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:81
#: apps/web/src/app/(dashboard)/admin/subscriptions/page.tsx:32
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:83
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:79
#: apps/web/src/components/(teams)/tables/team-billing-invoices-data-table.tsx:73
msgid "Status"
msgstr "Status"
@@ -2928,11 +2949,11 @@ msgstr "Subscriptions"
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:92
#: apps/web/src/components/(teams)/forms/update-team-form.tsx:68
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table-actions.tsx:27
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:64
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:81
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:62
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:79
#: apps/web/src/components/forms/public-profile-form.tsx:80
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:135
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:172
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:133
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:170
msgid "Success"
msgstr "Success"
@@ -2940,12 +2961,12 @@ msgstr "Success"
msgid "Successfully created passkey"
msgstr "Successfully created passkey"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:256
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:266
msgid "System Theme"
msgstr "System Theme"
-#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:67
-#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:66
+#: apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx:65
+#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:64
msgid "Team"
msgstr "Team"
@@ -2991,8 +3012,8 @@ msgstr "Team invitation"
msgid "Team invitations have been sent."
msgstr "Team invitations have been sent."
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:111
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:88
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:109
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:86
msgid "Team Member"
msgstr "Team Member"
@@ -3001,11 +3022,11 @@ msgstr "Team Member"
msgid "Team Name"
msgstr "Team Name"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:106
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:105
msgid "Team Only"
msgstr "Team Only"
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:111
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:110
msgid "Team only templates are not linked anywhere and are visible only to your team."
msgstr "Team only templates are not linked anywhere and are visible only to your team."
@@ -3025,7 +3046,7 @@ msgstr "Team ownership transferred!"
msgid "Team Public Profile"
msgstr "Team Public Profile"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:272
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:277
msgid "Team settings"
msgstr "Team settings"
@@ -3051,7 +3072,7 @@ msgid "Team URL"
msgstr "Team URL"
#: apps/web/src/app/(dashboard)/settings/teams/page.tsx:25
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:157
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:162
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:43
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:64
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:67
@@ -3063,7 +3084,7 @@ msgid "Teams restricted"
msgstr "Teams restricted"
#: apps/web/src/components/(teams)/dialogs/invite-team-member-dialog.tsx:408
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:273
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:271
msgid "Template"
msgstr "Template"
@@ -3079,11 +3100,11 @@ msgstr "Template document uploaded"
msgid "Template duplicated"
msgstr "Template duplicated"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:136
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:134
msgid "Template has been removed from your public profile."
msgstr "Template has been removed from your public profile."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:173
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:171
msgid "Template has been updated."
msgstr "Template has been updated."
@@ -3097,7 +3118,7 @@ msgstr "Template saved"
#: apps/web/src/app/(dashboard)/templates/[id]/template-page-view.tsx:60
#: apps/web/src/app/(dashboard)/templates/templates-page-view.tsx:55
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:203
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:208
#: apps/web/src/components/(dashboard)/layout/desktop-nav.tsx:22
#: apps/web/src/components/(dashboard)/layout/mobile-navigation.tsx:39
msgid "Templates"
@@ -3167,11 +3188,11 @@ msgstr "The profile link has been copied to your clipboard"
msgid "The profile you are looking for could not be found."
msgstr "The profile you are looking for could not be found."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:382
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:380
msgid "The public description that will be displayed with this template"
msgstr "The public description that will be displayed with this template"
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:360
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:358
msgid "The public name for your template"
msgstr "The public name for your template"
@@ -3207,7 +3228,7 @@ msgstr "The team you are looking for may have been removed, renamed or may have
msgid "The template has been successfully moved to the selected team."
msgstr "The template has been successfully moved to the selected team."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:445
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:443
msgid "The template will be removed from your profile"
msgstr "The template will be removed from your profile"
@@ -3349,17 +3370,17 @@ msgstr "This username has already been taken"
msgid "This username is already taken"
msgstr "This username is already taken"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:79
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:77
msgid "Time"
msgstr "Time"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:100
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx:97
msgid "Time zone"
msgstr "Time zone"
-#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:68
-#: apps/web/src/app/(dashboard)/documents/data-table.tsx:64
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:62
+#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:67
+#: apps/web/src/app/(dashboard)/documents/data-table.tsx:60
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:61
msgid "Title"
msgstr "Title"
@@ -3423,8 +3444,8 @@ msgstr "Token created"
msgid "Token deleted"
msgstr "Token deleted"
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:78
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:111
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:75
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:114
msgid "Token doesn't have an expiration date"
msgstr "Token doesn't have an expiration date"
@@ -3497,7 +3518,7 @@ msgid "Two-factor authentication has been disabled for your account. You will no
msgstr "Two-factor authentication has been disabled for your account. You will no longer be required to enter a code from your authenticator app when signing in."
#: apps/web/src/app/(dashboard)/admin/documents/[id]/recipient-item.tsx:73
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:68
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:67
msgid "Type"
msgstr "Type"
@@ -3505,7 +3526,7 @@ msgstr "Type"
msgid "Type 'delete' to confirm"
msgstr "Type 'delete' to confirm"
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:181
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:186
msgid "Type a command or search..."
msgstr "Type a command or search..."
@@ -3513,6 +3534,10 @@ msgstr "Type a command or search..."
msgid "Uh oh! Looks like you're missing a token"
msgstr "Uh oh! Looks like you're missing a token"
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:303
+msgid "Unable to change the language at this time. Please try again later."
+msgstr "Unable to change the language at this time. Please try again later."
+
#: apps/web/src/components/forms/2fa/recovery-code-list.tsx:31
msgid "Unable to copy recovery code"
msgstr "Unable to copy recovery code"
@@ -3529,7 +3554,7 @@ msgstr "Unable to create direct template access. Please try again later."
msgid "Unable to decline this team invitation at this time."
msgstr "Unable to decline this team invitation at this time."
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:88
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:86
msgid "Unable to delete invitation. Please try again."
msgstr "Unable to delete invitation. Please try again."
@@ -3546,7 +3571,7 @@ msgid "Unable to join this team at this time."
msgstr "Unable to join this team at this time."
#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-recent-activity.tsx:72
-#: apps/web/src/components/document/document-history-sheet.tsx:125
+#: apps/web/src/components/document/document-history-sheet.tsx:127
msgid "Unable to load document history"
msgstr "Unable to load document history"
@@ -3562,7 +3587,7 @@ msgstr "Unable to remove email verification at this time. Please try again."
msgid "Unable to remove team email at this time. Please try again."
msgstr "Unable to remove team email at this time. Please try again."
-#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:71
+#: apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx:69
msgid "Unable to resend invitation. Please try again."
msgstr "Unable to resend invitation. Please try again."
@@ -3606,7 +3631,7 @@ msgstr "Unpaid"
#: apps/web/src/components/(teams)/dialogs/update-team-email-dialog.tsx:166
#: apps/web/src/components/(teams)/dialogs/update-team-member-dialog.tsx:191
#: apps/web/src/components/forms/public-profile-form.tsx:279
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:430
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:428
msgid "Update"
msgstr "Update"
@@ -3630,7 +3655,7 @@ msgstr "Update profile"
msgid "Update Recipient"
msgstr "Update Recipient"
-#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:148
+#: apps/web/src/components/(teams)/tables/team-members-data-table.tsx:146
msgid "Update role"
msgstr "Update role"
@@ -3669,7 +3694,7 @@ msgstr "Updating profile..."
msgid "Upload Avatar"
msgstr "Upload Avatar"
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:44
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:31
msgid "Uploaded by"
msgstr "Uploaded by"
@@ -3699,7 +3724,7 @@ msgstr "Use Backup Code"
msgid "Use Template"
msgstr "Use Template"
-#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:84
+#: apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx:82
msgid "User"
msgstr "User"
@@ -3711,7 +3736,7 @@ msgstr "User ID"
msgid "User profiles are here!"
msgstr "User profiles are here!"
-#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:264
+#: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:269
msgid "User settings"
msgstr "User settings"
@@ -3881,7 +3906,7 @@ msgstr "We encountered an unknown error while attempting to invite team members.
msgid "We encountered an unknown error while attempting to leave this team. Please try again later."
msgstr "We encountered an unknown error while attempting to leave this team. Please try again later."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:145
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:143
msgid "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
msgstr "We encountered an unknown error while attempting to remove this template from your profile. Please try again later."
@@ -3937,7 +3962,7 @@ msgstr "We encountered an unknown error while attempting to update the avatar. P
msgid "We encountered an unknown error while attempting to update the banner. Please try again later."
msgstr "We encountered an unknown error while attempting to update the banner. Please try again later."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:182
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:180
msgid "We encountered an unknown error while attempting to update the template. Please try again later."
msgstr "We encountered an unknown error while attempting to update the template. Please try again later."
@@ -4036,8 +4061,8 @@ msgstr "Webhook updated"
msgid "Webhook URL"
msgstr "Webhook URL"
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:29
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:34
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:28
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:33
#: apps/web/src/components/(dashboard)/settings/layout/desktop-nav.tsx:103
#: apps/web/src/components/(dashboard)/settings/layout/mobile-nav.tsx:106
#: apps/web/src/components/(teams)/settings/layout/desktop-nav.tsx:94
@@ -4077,7 +4102,7 @@ msgstr "Write about yourself"
msgid "Yearly"
msgstr "Yearly"
-#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:45
+#: apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx:32
msgid "You"
msgstr "You"
@@ -4117,7 +4142,7 @@ msgstr "You are about to remove the following user from <0>{teamName}0>."
msgid "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
msgstr "You are about to revoke access for team <0>{0}0> ({1}) to use your email."
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:80
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:78
msgid "You are currently on the <0>Free Plan0>."
msgstr "You are currently on the <0>Free Plan0>."
@@ -4198,8 +4223,8 @@ msgstr "You have been invited by <0>{0}0> to join their team."
msgid "You have declined the invitation from <0>{0}0> to join their team."
msgstr "You have declined the invitation from <0>{0}0> to join their team."
-#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:45
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:50
+#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:44
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:49
msgid "You have no webhooks yet. Your webhooks will be shown here once you create them."
msgstr "You have no webhooks yet. Your webhooks will be shown here once you create them."
@@ -4219,7 +4244,7 @@ msgstr "You have reached the maximum limit of {0} direct templates. <0>Upgrade y
msgid "You have reached your document limit."
msgstr "You have reached your document limit."
-#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:182
+#: apps/web/src/app/(dashboard)/templates/data-table-templates.tsx:181
msgid "You have reached your document limit. <0>Upgrade your account to continue!0>"
msgstr "You have reached your document limit. <0>Upgrade your account to continue!0>"
@@ -4307,11 +4332,11 @@ msgstr "Your avatar has been updated successfully."
msgid "Your banner has been updated successfully."
msgstr "Your banner has been updated successfully."
-#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:121
+#: apps/web/src/app/(dashboard)/settings/billing/page.tsx:119
msgid "Your current plan is past due. Please update your payment information."
msgstr "Your current plan is past due. Please update your payment information."
-#: apps/web/src/components/templates/manage-public-template-dialog.tsx:253
+#: apps/web/src/components/templates/manage-public-template-dialog.tsx:251
msgid "Your direct signing templates"
msgstr "Your direct signing templates"
@@ -4343,7 +4368,7 @@ msgstr "Your document has been uploaded successfully."
msgid "Your document has been uploaded successfully. You will be redirected to the template page."
msgstr "Your document has been uploaded successfully. You will be redirected to the template page."
-#: apps/web/src/components/(dashboard)/common/command-menu.tsx:215
+#: apps/web/src/components/(dashboard)/common/command-menu.tsx:223
msgid "Your documents"
msgstr "Your documents"
@@ -4355,8 +4380,8 @@ msgstr "Your email has been successfully confirmed! You can now use all features
msgid "Your email is currently being used by team <0>{0}0> ({1})."
msgstr "Your email is currently being used by team <0>{0}0> ({1})."
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:48
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:81
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:47
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:80
msgid "Your existing tokens"
msgstr "Your existing tokens"
@@ -4430,7 +4455,7 @@ msgstr "Your token has expired!"
msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
msgstr "Your token was created successfully! Make sure to copy it because you won't be able to see it again!"
-#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:54
-#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:87
+#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:53
+#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:86
msgid "Your tokens will be shown here once you create them."
msgstr "Your tokens will be shown here once you create them."
diff --git a/packages/lib/utils/i18n.ts b/packages/lib/utils/i18n.ts
index 9c6e92cf0..01bf82a3f 100644
--- a/packages/lib/utils/i18n.ts
+++ b/packages/lib/utils/i18n.ts
@@ -2,8 +2,8 @@ import type { ReadonlyRequestCookies } from 'next/dist/server/web/spec-extension
import type { I18n } from '@lingui/core';
-import { IS_APP_WEB } from '../constants/app';
-import type { SupportedLanguageCodes } from '../constants/i18n';
+import { IS_APP_WEB, IS_APP_WEB_I18N_ENABLED } from '../constants/app';
+import type { I18nLocaleData, SupportedLanguageCodes } from '../constants/i18n';
import { APP_I18N_OPTIONS } from '../constants/i18n';
export async function dynamicActivate(i18nInstance: I18n, locale: string) {
@@ -14,48 +14,58 @@ export async function dynamicActivate(i18nInstance: I18n, locale: string) {
i18nInstance.loadAndActivate({ locale, messages });
}
-/**
- * Extract the language if supported from the cookies header.
- *
- * Returns `null` if not supported or not found.
- */
-export const extractSupportedLanguageFromCookies = (
- cookies: ReadonlyRequestCookies,
-): SupportedLanguageCodes | null => {
- const preferredLanguage = cookies.get('i18n');
-
- const foundSupportedLanguage = APP_I18N_OPTIONS.supportedLangs.find(
- (lang): lang is SupportedLanguageCodes => lang === preferredLanguage?.value,
- );
-
- return foundSupportedLanguage || null;
-};
-
-/**
- * Extracts the language from the `accept-language` header.
- *
- * Returns `null` if not supported or not found.
- */
-export const extractSupportedLanguageFromHeaders = (
- headers: Headers,
-): SupportedLanguageCodes | null => {
- const locales = headers.get('accept-language') ?? '';
-
- const [locale] = locales.split(',');
-
- // Convert locale to language.
- const [language] = locale.split('-');
+const parseLanguageFromLocale = (locale: string): SupportedLanguageCodes | null => {
+ const [language, _country] = locale.split('-');
const foundSupportedLanguage = APP_I18N_OPTIONS.supportedLangs.find(
(lang): lang is SupportedLanguageCodes => lang === language,
);
- return foundSupportedLanguage || null;
+ if (!foundSupportedLanguage) {
+ return null;
+ }
+
+ return foundSupportedLanguage;
};
-type ExtractSupportedLanguageOptions = {
- headers?: Headers;
- cookies?: ReadonlyRequestCookies;
+/**
+ * Extract the language if supported from the cookies header.
+ *
+ * Returns `null` if not supported or not found.
+ */
+export const extractLocaleDataFromCookies = (
+ cookies: ReadonlyRequestCookies,
+): SupportedLanguageCodes | null => {
+ const preferredLocale = cookies.get('language')?.value || '';
+
+ const language = parseLanguageFromLocale(preferredLocale || '');
+
+ if (!language) {
+ return null;
+ }
+
+ return language;
+};
+
+/**
+ * Extracts the language from the `accept-language` header.
+ */
+export const extractLocaleDataFromHeaders = (
+ headers: Headers,
+): { lang: SupportedLanguageCodes | null; locales: string[] } => {
+ const headerLocales = (headers.get('accept-language') ?? '').split(',');
+
+ const language = parseLanguageFromLocale(headerLocales[0]);
+
+ return {
+ lang: language,
+ locales: [headerLocales[0]],
+ };
+};
+
+type ExtractLocaleDataOptions = {
+ headers: Headers;
+ cookies: ReadonlyRequestCookies;
};
/**
@@ -63,25 +73,25 @@ type ExtractSupportedLanguageOptions = {
*
* Will return the default fallback language if not found.
*/
-export const extractSupportedLanguage = ({
+export const extractLocaleData = ({
headers,
cookies,
-}: ExtractSupportedLanguageOptions): SupportedLanguageCodes => {
- if (cookies) {
- const langCookie = extractSupportedLanguageFromCookies(cookies);
+}: ExtractLocaleDataOptions): I18nLocaleData => {
+ let lang: SupportedLanguageCodes | null = extractLocaleDataFromCookies(cookies);
- if (langCookie) {
- return langCookie;
- }
+ const langHeader = extractLocaleDataFromHeaders(headers);
+
+ if (!lang && langHeader?.lang) {
+ lang = langHeader.lang;
}
- if (headers) {
- const langHeader = extractSupportedLanguageFromHeaders(headers);
-
- if (langHeader) {
- return langHeader;
- }
+ // Override web app to be English.
+ if (!IS_APP_WEB_I18N_ENABLED && IS_APP_WEB) {
+ lang = 'en';
}
- return APP_I18N_OPTIONS.sourceLang;
+ return {
+ lang: lang || APP_I18N_OPTIONS.sourceLang,
+ locales: langHeader.locales,
+ };
};
diff --git a/packages/signing/transports/local-cert.ts b/packages/signing/transports/local-cert.ts
index aed849854..7ed2f5f8b 100644
--- a/packages/signing/transports/local-cert.ts
+++ b/packages/signing/transports/local-cert.ts
@@ -28,9 +28,18 @@ export const signWithLocalCert = async ({ pdf }: SignWithLocalCertOptions) => {
}
if (!cert) {
- cert = Buffer.from(
- fs.readFileSync(process.env.NEXT_PRIVATE_SIGNING_LOCAL_FILE_PATH || './example/cert.p12'),
- );
+ let certPath = process.env.NEXT_PRIVATE_SIGNING_LOCAL_FILE_PATH || '/opt/documenso/cert.p12';
+
+ // We don't want to make the development server suddenly crash when using the `dx` script
+ // so we retain this when NODE_ENV isn't set to production which it should be in most production
+ // deployments.
+ //
+ // Our docker image automatically sets this so it shouldn't be an issue for self-hosters.
+ if (process.env.NODE_ENV !== 'production') {
+ certPath = process.env.NEXT_PRIVATE_SIGNING_LOCAL_FILE_PATH || './example/cert.p12';
+ }
+
+ cert = Buffer.from(fs.readFileSync(certPath));
}
const signature = signWithP12({
diff --git a/packages/ui/components/call-to-action.tsx b/packages/ui/components/call-to-action.tsx
new file mode 100644
index 000000000..1e741e37e
--- /dev/null
+++ b/packages/ui/components/call-to-action.tsx
@@ -0,0 +1,35 @@
+import Link from 'next/link';
+
+import { Button } from '../primitives/button';
+import { Card, CardContent } from '../primitives/card';
+
+type CallToActionProps = {
+ className?: string;
+ utmSource?: string;
+};
+
+export const CallToAction = ({ className, utmSource = 'generic-cta' }: CallToActionProps) => {
+ return (
+
+
+
Looking for the managed solution?
+
+
+ You can get started with Documenso in minutes. We handle the infrastructure, so you can
+ focus on signing documents.
+