From e81023f8d41ad20b260bbf47cc1f09a5a70cdd48 Mon Sep 17 00:00:00 2001 From: David Nguyen Date: Tue, 10 Sep 2024 12:38:08 +1000 Subject: [PATCH] fix: refactor dates (#1321) ## Description Refactor the current date formatting system to utilize Lingui. ## Changes Made - Remove redundant `LocaleData` component with Lingui dates ## Important notes For the internal pages for certificates, default to en-US to format any dates. ## Summary by CodeRabbit - **New Features** - Enhanced internationalization support across various components by utilizing the `i18n` object for date formatting. - Streamlined locale management by removing cookie-based language handling and adopting a more centralized approach. - **Bug Fixes** - Improved date formatting consistency by replacing the `LocaleDate` component with direct calls to `i18n.date()` in multiple components. - **Documentation** - Updated localization strings in the `web.po` files to reflect recent changes in the source code structure. - **Chores** - Minor formatting adjustments and code organization improvements across various files to enhance readability and maintainability. --------- Co-authored-by: github-actions --- apps/marketing/src/app/layout.tsx | 28 +- apps/marketing/src/middleware.ts | 4 +- .../(dashboard)/admin/documents/[id]/page.tsx | 10 +- .../admin/documents/document-results.tsx | 7 +- .../[id]/document-page-view-information.tsx | 25 +- .../[id]/logs/document-logs-data-table.tsx | 10 +- .../[id]/logs/document-logs-page-view.tsx | 9 +- .../app/(dashboard)/documents/data-table.tsx | 15 +- .../app/(dashboard)/settings/billing/page.tsx | 8 +- .../user-security-activity-data-table.tsx | 6 +- .../app/(dashboard)/settings/tokens/page.tsx | 9 +- .../(dashboard)/settings/webhooks/page.tsx | 8 +- .../templates/data-table-templates.tsx | 19 +- .../%5F%5Fhtmltopdf/audit-log/data-table.tsx | 7 +- .../%5F%5Fhtmltopdf/audit-log/page.tsx | 15 +- .../%5F%5Fhtmltopdf/certificate/page.tsx | 45 +-- .../t/[teamUrl]/settings/tokens/page.tsx | 15 +- .../t/[teamUrl]/settings/webhooks/page.tsx | 8 +- apps/web/src/app/layout.tsx | 61 +--- .../tables/current-user-teams-data-table.tsx | 6 +- .../tables/pending-user-teams-data-table.tsx | 6 +- .../tables/team-member-invites-data-table.tsx | 6 +- .../tables/team-members-data-table.tsx | 6 +- .../document/document-history-sheet.tsx | 10 +- .../src/components/formatter/locale-date.tsx | 49 --- .../manage-public-template-dialog.tsx | 6 +- apps/web/src/middleware.ts | 4 +- .../lib/client-only/providers/i18n.client.tsx | 13 +- .../lib/client-only/providers/i18n.server.tsx | 47 ++- packages/lib/client-only/providers/locale.tsx | 37 -- packages/lib/constants/app.ts | 2 +- packages/lib/constants/i18n.ts | 13 + .../lib/server-only/headers/get-locale.tsx | 11 - packages/lib/translations/de/web.js | 2 +- packages/lib/translations/de/web.po | 324 +++++++++--------- packages/lib/translations/en/web.js | 2 +- packages/lib/translations/en/web.po | 320 +++++++++-------- packages/lib/utils/i18n.ts | 112 +++--- 38 files changed, 573 insertions(+), 712 deletions(-) delete mode 100644 apps/web/src/components/formatter/locale-date.tsx delete mode 100644 packages/lib/client-only/providers/locale.tsx delete mode 100644 packages/lib/server-only/headers/get-locale.tsx 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/middleware.ts b/apps/marketing/src/middleware.ts index 23e02de7f..899cc8c29 100644 --- a/apps/marketing/src/middleware.ts +++ b/apps/marketing/src/middleware.ts @@ -2,10 +2,10 @@ import { cookies } from 'next/headers'; import type { NextRequest } from 'next/server'; import { NextResponse } from 'next/server'; -import { extractSupportedLanguage } from '@documenso/lib/utils/i18n'; +import { extractLocaleData } from '@documenso/lib/utils/i18n'; export default function middleware(req: NextRequest) { - const lang = extractSupportedLanguage({ + const { lang } = extractLocaleData({ headers: req.headers, cookies: cookies(), }); diff --git a/apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx b/apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx index 48211fbc0..397878f5e 100644 --- a/apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx +++ b/apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx @@ -12,7 +12,6 @@ import { import { Badge } from '@documenso/ui/primitives/badge'; import { DocumentStatus } from '~/components/formatter/document-status'; -import { LocaleDate } from '~/components/formatter/locale-date'; import { AdminActions } from './admin-actions'; import { RecipientItem } from './recipient-item'; @@ -25,7 +24,7 @@ type AdminDocumentDetailsPageProps = { }; export default async function AdminDocumentDetailsPage({ params }: AdminDocumentDetailsPageProps) { - setupI18nSSR(); + const { i18n } = setupI18nSSR(); const document = await getEntireDocument({ id: Number(params.id) }); @@ -46,12 +45,11 @@ export default async function AdminDocumentDetailsPage({ params }: AdminDocument
- Created on:{' '} - + Created on: {i18n.date(document.createdAt, DateTime.DATETIME_MED)}
+
- Last updated at:{' '} - + Last updated at: {i18n.date(document.updatedAt, DateTime.DATETIME_MED)}
diff --git a/apps/web/src/app/(dashboard)/admin/documents/document-results.tsx b/apps/web/src/app/(dashboard)/admin/documents/document-results.tsx index 1686e0d41..401f963e0 100644 --- a/apps/web/src/app/(dashboard)/admin/documents/document-results.tsx +++ b/apps/web/src/app/(dashboard)/admin/documents/document-results.tsx @@ -21,12 +21,11 @@ import { Input } from '@documenso/ui/primitives/input'; import { Tooltip, TooltipContent, TooltipTrigger } from '@documenso/ui/primitives/tooltip'; import { DocumentStatus } from '~/components/formatter/document-status'; -import { LocaleDate } from '~/components/formatter/locale-date'; // export type AdminDocumentResultsProps = {}; export const AdminDocumentResults = () => { - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const searchParams = useSearchParams(); @@ -62,7 +61,7 @@ export const AdminDocumentResults = () => { { header: _(msg`Created`), accessorKey: 'createdAt', - cell: ({ row }) => , + cell: ({ row }) => i18n.date(row.original.createdAt), }, { header: _(msg`Title`), @@ -122,7 +121,7 @@ export const AdminDocumentResults = () => { { header: 'Last updated', accessorKey: 'updatedAt', - cell: ({ row }) => , + cell: ({ row }) => i18n.date(row.original.updatedAt), }, ] satisfies DataTableColumnDef<(typeof results)['data'][number]>[]; }, []); diff --git a/apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx b/apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx index 8d3b9f861..7c75a0729 100644 --- a/apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx +++ b/apps/web/src/app/(dashboard)/documents/[id]/document-page-view-information.tsx @@ -7,7 +7,6 @@ import { useLingui } from '@lingui/react'; import { DateTime } from 'luxon'; import { useIsMounted } from '@documenso/lib/client-only/hooks/use-is-mounted'; -import { useLocale } from '@documenso/lib/client-only/providers/locale'; import type { Document, Recipient, User } from '@documenso/prisma/client'; export type DocumentPageViewInformationProps = { @@ -24,21 +23,9 @@ export const DocumentPageViewInformation = ({ }: DocumentPageViewInformationProps) => { const isMounted = useIsMounted(); - const { locale } = useLocale(); - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const documentInformation = useMemo(() => { - let createdValue = DateTime.fromJSDate(document.createdAt).toFormat('MMMM d, yyyy'); - let lastModifiedValue = DateTime.fromJSDate(document.updatedAt).toRelative(); - - if (!isMounted) { - createdValue = DateTime.fromJSDate(document.createdAt) - .setLocale(locale) - .toFormat('MMMM d, yyyy'); - - lastModifiedValue = DateTime.fromJSDate(document.updatedAt).setLocale(locale).toRelative(); - } - return [ { description: msg`Uploaded by`, @@ -46,15 +33,19 @@ export const DocumentPageViewInformation = ({ }, { description: msg`Created`, - value: createdValue, + value: DateTime.fromJSDate(document.createdAt) + .setLocale(i18n.locales?.[0] || i18n.locale) + .toFormat('MMMM d, yyyy'), }, { description: msg`Last modified`, - value: lastModifiedValue, + value: DateTime.fromJSDate(document.updatedAt) + .setLocale(i18n.locales?.[0] || i18n.locale) + .toRelative(), }, ]; // eslint-disable-next-line react-hooks/exhaustive-deps - }, [isMounted, document, locale, userId]); + }, [isMounted, document, userId]); return (
diff --git a/apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx b/apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx index 8da970c35..953dbec35 100644 --- a/apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx +++ b/apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-data-table.tsx @@ -20,8 +20,6 @@ import { DataTablePagination } from '@documenso/ui/primitives/data-table-paginat import { Skeleton } from '@documenso/ui/primitives/skeleton'; import { TableCell } from '@documenso/ui/primitives/table'; -import { LocaleDate } from '~/components/formatter/locale-date'; - export type DocumentLogsDataTableProps = { documentId: number; }; @@ -32,7 +30,7 @@ const dateFormat: DateTimeFormatOptions = { }; export const DocumentLogsDataTable = ({ documentId }: DocumentLogsDataTableProps) => { - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const searchParams = useSearchParams(); const updateSearchParams = useUpdateSearchParams(); @@ -78,7 +76,7 @@ export const DocumentLogsDataTable = ({ documentId }: DocumentLogsDataTableProps { header: _(msg`Time`), accessorKey: 'createdAt', - cell: ({ row }) => , + cell: ({ row }) => i18n.date(row.original.createdAt, dateFormat), }, { header: _(msg`User`), @@ -106,9 +104,7 @@ export const DocumentLogsDataTable = ({ documentId }: DocumentLogsDataTableProps header: _(msg`Action`), accessorKey: 'type', cell: ({ row }) => ( - - {uppercaseFistLetter(formatDocumentAuditLogAction(row.original).description)} - + {uppercaseFistLetter(formatDocumentAuditLogAction(row.original).description)} ), }, { diff --git a/apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx b/apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx index c9403f3f5..c6c3c9ad3 100644 --- a/apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx +++ b/apps/web/src/app/(dashboard)/documents/[id]/logs/document-logs-page-view.tsx @@ -9,7 +9,6 @@ import { DateTime } from 'luxon'; import { getRequiredServerComponentSession } from '@documenso/lib/next-auth/get-server-component-session'; import { getDocumentById } from '@documenso/lib/server-only/document/get-document-by-id'; -import { getLocale } from '@documenso/lib/server-only/headers/get-locale'; import { getRecipientsForDocument } from '@documenso/lib/server-only/recipient/get-recipients-for-document'; import { formatDocumentsPath } from '@documenso/lib/utils/teams'; import type { Recipient, Team } from '@documenso/prisma/client'; @@ -32,9 +31,7 @@ export type DocumentLogsPageViewProps = { }; export const DocumentLogsPageView = async ({ params, team }: DocumentLogsPageViewProps) => { - const { _ } = useLingui(); - - const locale = getLocale(); + const { _, i18n } = useLingui(); const { id } = params; @@ -87,13 +84,13 @@ export const DocumentLogsPageView = async ({ params, team }: DocumentLogsPageVie { description: msg`Date created`, value: DateTime.fromJSDate(document.createdAt) - .setLocale(locale) + .setLocale(i18n.locales?.[0] || i18n.locale) .toLocaleString(DateTime.DATETIME_MED_WITH_SECONDS), }, { description: msg`Last updated`, value: DateTime.fromJSDate(document.updatedAt) - .setLocale(locale) + .setLocale(i18n.locales?.[0] || i18n.locale) .toLocaleString(DateTime.DATETIME_MED_WITH_SECONDS), }, { diff --git a/apps/web/src/app/(dashboard)/documents/data-table.tsx b/apps/web/src/app/(dashboard)/documents/data-table.tsx index 8635dc3c7..f654632eb 100644 --- a/apps/web/src/app/(dashboard)/documents/data-table.tsx +++ b/apps/web/src/app/(dashboard)/documents/data-table.tsx @@ -18,7 +18,6 @@ import { DataTablePagination } from '@documenso/ui/primitives/data-table-paginat import { StackAvatarsWithTooltip } from '~/components/(dashboard)/avatar/stack-avatars-with-tooltip'; import { DocumentStatus } from '~/components/formatter/document-status'; -import { LocaleDate } from '~/components/formatter/locale-date'; import { DataTableActionButton } from './data-table-action-button'; import { DataTableActionDropdown } from './data-table-action-dropdown'; @@ -41,8 +40,9 @@ export const DocumentsDataTable = ({ showSenderColumn, team, }: DocumentsDataTableProps) => { + const { _, i18n } = useLingui(); + const { data: session } = useSession(); - const { _ } = useLingui(); const [isPending, startTransition] = useTransition(); @@ -53,12 +53,8 @@ export const DocumentsDataTable = ({ { header: _(msg`Created`), accessorKey: 'createdAt', - cell: ({ row }) => ( - - ), + cell: ({ row }) => + i18n.date(row.original.createdAt, { ...DateTime.DATETIME_SHORT, hourCycle: 'h12' }), }, { header: _(msg`Title`), @@ -88,8 +84,7 @@ export const DocumentsDataTable = ({ { header: _(msg`Actions`), cell: ({ row }) => - (!row.original.deletedAt || - row.original.status === ExtendedDocumentStatus.COMPLETED) && ( + (!row.original.deletedAt || row.original.status === ExtendedDocumentStatus.COMPLETED) && (
diff --git a/apps/web/src/app/(dashboard)/settings/billing/page.tsx b/apps/web/src/app/(dashboard)/settings/billing/page.tsx index f36567871..4f1e69334 100644 --- a/apps/web/src/app/(dashboard)/settings/billing/page.tsx +++ b/apps/web/src/app/(dashboard)/settings/billing/page.tsx @@ -16,8 +16,6 @@ import { type Stripe } from '@documenso/lib/server-only/stripe'; import { getSubscriptionsByUserId } from '@documenso/lib/server-only/subscription/get-subscriptions-by-user-id'; import { SubscriptionStatus } from '@documenso/prisma/client'; -import { LocaleDate } from '~/components/formatter/locale-date'; - import { BillingPlans } from './billing-plans'; import { BillingPortalButton } from './billing-portal-button'; @@ -26,7 +24,7 @@ export const metadata: Metadata = { }; export default async function BillingSettingsPage() { - setupI18nSSR(); + const { i18n } = setupI18nSSR(); let { user } = await getRequiredServerComponentSession(); @@ -104,12 +102,12 @@ export default async function BillingSettingsPage() { {subscription.cancelAtPeriodEnd ? ( end on{' '} - . + {i18n.date(subscription.periodEnd)}. ) : ( automatically renew on{' '} - . + {i18n.date(subscription.periodEnd)}. )} diff --git a/apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx b/apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx index 5f9f7e88c..b4fef68b3 100644 --- a/apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx +++ b/apps/web/src/app/(dashboard)/settings/security/activity/user-security-activity-data-table.tsx @@ -20,15 +20,13 @@ import { DataTablePagination } from '@documenso/ui/primitives/data-table-paginat import { Skeleton } from '@documenso/ui/primitives/skeleton'; import { TableCell } from '@documenso/ui/primitives/table'; -import { LocaleDate } from '~/components/formatter/locale-date'; - const dateFormat: DateTimeFormatOptions = { ...DateTime.DATETIME_SHORT, hourCycle: 'h12', }; export const UserSecurityActivityDataTable = () => { - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const pathname = usePathname(); const router = useRouter(); @@ -71,7 +69,7 @@ export const UserSecurityActivityDataTable = () => { { header: _(msg`Date`), accessorKey: 'createdAt', - cell: ({ row }) => , + cell: ({ row }) => i18n.date(row.original.createdAt, dateFormat), }, { header: _(msg`Device`), diff --git a/apps/web/src/app/(dashboard)/settings/tokens/page.tsx b/apps/web/src/app/(dashboard)/settings/tokens/page.tsx index 5b6b4bb58..ae01e6802 100644 --- a/apps/web/src/app/(dashboard)/settings/tokens/page.tsx +++ b/apps/web/src/app/(dashboard)/settings/tokens/page.tsx @@ -7,11 +7,10 @@ import { getUserTokens } from '@documenso/lib/server-only/public-api/get-all-use import { Button } from '@documenso/ui/primitives/button'; import DeleteTokenDialog from '~/components/(dashboard)/settings/token/delete-token-dialog'; -import { LocaleDate } from '~/components/formatter/locale-date'; import { ApiTokenForm } from '~/components/forms/token'; export default async function ApiTokensPage() { - setupI18nSSR(); + const { i18n } = setupI18nSSR(); const { user } = await getRequiredServerComponentSession(); @@ -65,13 +64,11 @@ export default async function ApiTokensPage() {
{token.name}

- Created on{' '} - + Created on {i18n.date(token.createdAt, DateTime.DATETIME_FULL)}

{token.expires ? (

- Expires on{' '} - + Expires on {i18n.date(token.expires, DateTime.DATETIME_FULL)}

) : (

diff --git a/apps/web/src/app/(dashboard)/settings/webhooks/page.tsx b/apps/web/src/app/(dashboard)/settings/webhooks/page.tsx index 682f97c80..5da11e6f9 100644 --- a/apps/web/src/app/(dashboard)/settings/webhooks/page.tsx +++ b/apps/web/src/app/(dashboard)/settings/webhooks/page.tsx @@ -16,10 +16,9 @@ import { Button } from '@documenso/ui/primitives/button'; import { SettingsHeader } from '~/components/(dashboard)/settings/layout/header'; import { CreateWebhookDialog } from '~/components/(dashboard)/settings/webhooks/create-webhook-dialog'; import { DeleteWebhookDialog } from '~/components/(dashboard)/settings/webhooks/delete-webhook-dialog'; -import { LocaleDate } from '~/components/formatter/locale-date'; export default function WebhookPage() { - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const { data: webhooks, isLoading } = trpc.webhook.getWebhooks.useQuery(); @@ -86,10 +85,7 @@ export default function WebhookPage() {

- - Created on{' '} - - + Created on {i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)}

diff --git a/apps/web/src/app/(dashboard)/templates/data-table-templates.tsx b/apps/web/src/app/(dashboard)/templates/data-table-templates.tsx index bb913c994..3b2a384be 100644 --- a/apps/web/src/app/(dashboard)/templates/data-table-templates.tsx +++ b/apps/web/src/app/(dashboard)/templates/data-table-templates.tsx @@ -17,7 +17,6 @@ import { DataTable } from '@documenso/ui/primitives/data-table'; import { DataTablePagination } from '@documenso/ui/primitives/data-table-pagination'; import { Tooltip, TooltipContent, TooltipTrigger } from '@documenso/ui/primitives/tooltip'; -import { LocaleDate } from '~/components/formatter/locale-date'; import { TemplateType } from '~/components/formatter/template-type'; import { DataTableActionDropdown } from './data-table-action-dropdown'; @@ -48,7 +47,7 @@ export const TemplatesDataTable = ({ const updateSearchParams = useUpdateSearchParams(); - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const { remaining } = useLimits(); const columns = useMemo(() => { @@ -56,7 +55,7 @@ export const TemplatesDataTable = ({ { header: _(msg`Created`), accessorKey: 'createdAt', - cell: ({ row }) => , + cell: ({ row }) => i18n.date(row.original.createdAt), }, { header: _(msg`Title`), @@ -81,8 +80,8 @@ export const TemplatesDataTable = ({

- Public templates are connected to your public profile. Any modifications - to public templates will also appear in your public profile. + Public templates are connected to your public profile. Any modifications to + public templates will also appear in your public profile.

@@ -94,9 +93,9 @@ export const TemplatesDataTable = ({

- 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. + 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.

@@ -109,8 +108,8 @@ export const TemplatesDataTable = ({

{teamId ? ( - Team only templates are not linked anywhere and are visible only to - your team. + Team only templates are not linked anywhere and are visible only to your + team. ) : ( Private templates can only be modified and viewed by you. diff --git a/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx b/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx index 016a64fbb..69b72bb17 100644 --- a/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx +++ b/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/data-table.tsx @@ -4,6 +4,7 @@ import { DateTime } from 'luxon'; import type { DateTimeFormatOptions } from 'luxon'; import { UAParser } from 'ua-parser-js'; +import { APP_I18N_OPTIONS } from '@documenso/lib/constants/i18n'; import type { TDocumentAuditLog } from '@documenso/lib/types/document-audit-logs'; import { formatDocumentAuditLogAction } from '@documenso/lib/utils/document-audit-logs'; import { @@ -15,8 +16,6 @@ import { TableRow, } from '@documenso/ui/primitives/table'; -import { LocaleDate } from '~/components/formatter/locale-date'; - export type AuditLogDataTableProps = { logs: TDocumentAuditLog[]; }; @@ -49,7 +48,9 @@ export const AuditLogDataTable = ({ logs }: AuditLogDataTableProps) => { {logs.map((log, i) => ( - + {DateTime.fromJSDate(log.createdAt) + .setLocale(APP_I18N_OPTIONS.defaultLocale) + .toLocaleString(dateFormat)} diff --git a/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx b/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx index eb117f33d..3466b1b1c 100644 --- a/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx +++ b/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/audit-log/page.tsx @@ -2,7 +2,9 @@ import React from 'react'; import { redirect } from 'next/navigation'; -import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server'; +import { DateTime } from 'luxon'; + +import { APP_I18N_OPTIONS } from '@documenso/lib/constants/i18n'; import { RECIPIENT_ROLES_DESCRIPTION_ENG } from '@documenso/lib/constants/recipient-roles'; import { getEntireDocument } from '@documenso/lib/server-only/admin/get-entire-document'; import { decryptSecondaryData } from '@documenso/lib/server-only/crypto/decrypt'; @@ -10,7 +12,6 @@ import { findDocumentAuditLogs } from '@documenso/lib/server-only/document/find- import { Card, CardContent } from '@documenso/ui/primitives/card'; import { Logo } from '~/components/branding/logo'; -import { LocaleDate } from '~/components/formatter/locale-date'; import { AuditLogDataTable } from './data-table'; @@ -21,8 +22,6 @@ type AuditLogProps = { }; export default async function AuditLog({ searchParams }: AuditLogProps) { - setupI18nSSR(); - const { d } = searchParams; if (typeof d !== 'string' || !d) { @@ -89,7 +88,9 @@ export default async function AuditLog({ searchParams }: AuditLogProps) { Created At - + {DateTime.fromJSDate(document.createdAt) + .setLocale(APP_I18N_OPTIONS.defaultLocale) + .toFormat('yyyy-mm-dd hh:mm:ss a (ZZZZ)')}

@@ -97,7 +98,9 @@ export default async function AuditLog({ searchParams }: AuditLogProps) { Last Updated - + {DateTime.fromJSDate(document.updatedAt) + .setLocale(APP_I18N_OPTIONS.defaultLocale) + .toFormat('yyyy-mm-dd hh:mm:ss a (ZZZZ)')}

diff --git a/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx b/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx index 6bcd1e54f..8c69de2e9 100644 --- a/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx +++ b/apps/web/src/app/(internal)/%5F%5Fhtmltopdf/certificate/page.tsx @@ -2,10 +2,11 @@ import React from 'react'; import { redirect } from 'next/navigation'; +import { DateTime } from 'luxon'; import { match } from 'ts-pattern'; import { UAParser } from 'ua-parser-js'; -import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server'; +import { APP_I18N_OPTIONS } from '@documenso/lib/constants/i18n'; import { RECIPIENT_ROLES_DESCRIPTION_ENG, RECIPIENT_ROLE_SIGNING_REASONS_ENG, @@ -27,7 +28,6 @@ import { } from '@documenso/ui/primitives/table'; import { Logo } from '~/components/branding/logo'; -import { LocaleDate } from '~/components/formatter/locale-date'; type SigningCertificateProps = { searchParams: { @@ -41,8 +41,6 @@ const FRIENDLY_SIGNING_REASONS = { }; export default async function SigningCertificate({ searchParams }: SigningCertificateProps) { - setupI18nSSR(); - const { d } = searchParams; if (typeof d !== 'string' || !d) { @@ -231,42 +229,33 @@ export default async function SigningCertificate({ searchParams }: SigningCertif

Sent:{' '} - {logs.EMAIL_SENT[0] ? ( - - ) : ( - 'Unknown' - )} + {logs.EMAIL_SENT[0] + ? DateTime.fromJSDate(logs.EMAIL_SENT[0].createdAt) + .setLocale(APP_I18N_OPTIONS.defaultLocale) + .toFormat('yyyy-MM-dd hh:mm:ss a (ZZZZ)') + : 'Unknown'}

Viewed:{' '} - {logs.DOCUMENT_OPENED[0] ? ( - - ) : ( - 'Unknown' - )} + {logs.DOCUMENT_OPENED[0] + ? DateTime.fromJSDate(logs.DOCUMENT_OPENED[0].createdAt) + .setLocale(APP_I18N_OPTIONS.defaultLocale) + .toFormat('yyyy-MM-dd hh:mm:ss a (ZZZZ)') + : 'Unknown'}

Signed:{' '} - {logs.DOCUMENT_RECIPIENT_COMPLETED[0] ? ( - - ) : ( - 'Unknown' - )} + {logs.DOCUMENT_RECIPIENT_COMPLETED[0] + ? DateTime.fromJSDate(logs.DOCUMENT_RECIPIENT_COMPLETED[0].createdAt) + .setLocale(APP_I18N_OPTIONS.defaultLocale) + .toFormat('yyyy-MM-dd hh:mm:ss a (ZZZZ)') + : 'Unknown'}

diff --git a/apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx b/apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx index f2d006b3d..1ff9c9afa 100644 --- a/apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx +++ b/apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx @@ -12,7 +12,6 @@ import { getTeamByUrl } from '@documenso/lib/server-only/team/get-team'; import { Button } from '@documenso/ui/primitives/button'; import DeleteTokenDialog from '~/components/(dashboard)/settings/token/delete-token-dialog'; -import { LocaleDate } from '~/components/formatter/locale-date'; import { ApiTokenForm } from '~/components/forms/token'; type ApiTokensPageProps = { @@ -22,7 +21,7 @@ type ApiTokensPageProps = { }; export default async function ApiTokensPage({ params }: ApiTokensPageProps) { - setupI18nSSR(); + const { i18n } = setupI18nSSR(); const { teamUrl } = params; @@ -98,13 +97,17 @@ export default async function ApiTokensPage({ params }: ApiTokensPageProps) {
{token.name}

- Created on{' '} - + + Created on + {i18n.date(token.createdAt, DateTime.DATETIME_FULL)} +

{token.expires ? (

- Expires on{' '} - + + Expires on + {i18n.date(token.expires, DateTime.DATETIME_FULL)} +

) : (

diff --git a/apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx b/apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx index 5431d55ad..a3cda07f9 100644 --- a/apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx +++ b/apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx @@ -16,11 +16,10 @@ import { Button } from '@documenso/ui/primitives/button'; import { SettingsHeader } from '~/components/(dashboard)/settings/layout/header'; import { CreateWebhookDialog } from '~/components/(dashboard)/settings/webhooks/create-webhook-dialog'; import { DeleteWebhookDialog } from '~/components/(dashboard)/settings/webhooks/delete-webhook-dialog'; -import { LocaleDate } from '~/components/formatter/locale-date'; import { useCurrentTeam } from '~/providers/team'; export default function WebhookPage() { - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const team = useCurrentTeam(); @@ -91,10 +90,7 @@ export default function WebhookPage() {

- - Created on{' '} - - + Created on {i18n.date(webhook.createdAt, DateTime.DATETIME_FULL)}

diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index fac94d5c6..c4a6ffd3a 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/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'; @@ -9,12 +8,8 @@ import { PublicEnvScript } from 'next-runtime-env'; import { FeatureFlagProvider } from '@documenso/lib/client-only/providers/feature-flag'; import { I18nClientProvider } from '@documenso/lib/client-only/providers/i18n.client'; import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server'; -import { LocaleProvider } from '@documenso/lib/client-only/providers/locale'; import { IS_APP_WEB_I18N_ENABLED, NEXT_PUBLIC_WEBAPP_URL } from '@documenso/lib/constants/app'; -import type { SUPPORTED_LANGUAGE_CODES } from '@documenso/lib/constants/i18n'; -import { ZSupportedLanguageCodeSchema } from '@documenso/lib/constants/i18n'; import { getServerComponentAllFlags } from '@documenso/lib/server-only/feature-flags/get-server-component-feature-flag'; -import { getLocale } from '@documenso/lib/server-only/headers/get-locale'; import { TrpcProvider } from '@documenso/trpc/react'; import { cn } from '@documenso/ui/lib/utils'; import { Toaster } from '@documenso/ui/primitives/toaster'; @@ -61,32 +56,7 @@ export function generateMetadata() { export default async function RootLayout({ children }: { children: React.ReactNode }) { const flags = await getServerComponentAllFlags(); - const locale = getLocale(); - - 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); - } - } - - // Disable i18n for now until we get translations. - if (!IS_APP_WEB_I18N_ENABLED) { - overrideLang = 'en'; - } - - const { lang, i18n } = setupI18nSSR(overrideLang); + const { i18n, lang, locales } = setupI18nSSR(); return ( - - - - - - - {children} - - - - + + + + + + {children} + + + + - - - + + ); diff --git a/apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx b/apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx index 122eca5cc..5579535c6 100644 --- a/apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx +++ b/apps/web/src/components/(teams)/tables/current-user-teams-data-table.tsx @@ -22,12 +22,10 @@ import { DataTablePagination } from '@documenso/ui/primitives/data-table-paginat import { Skeleton } from '@documenso/ui/primitives/skeleton'; import { TableCell } from '@documenso/ui/primitives/table'; -import { LocaleDate } from '~/components/formatter/locale-date'; - import { LeaveTeamDialog } from '../dialogs/leave-team-dialog'; export const CurrentUserTeamsDataTable = () => { - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const searchParams = useSearchParams(); const updateSearchParams = useUpdateSearchParams(); @@ -91,7 +89,7 @@ export const CurrentUserTeamsDataTable = () => { { header: _(msg`Member Since`), accessorKey: 'createdAt', - cell: ({ row }) => , + cell: ({ row }) => i18n.date(row.original.createdAt), }, { id: 'actions', diff --git a/apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx b/apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx index 57e3f5b14..906f9cc08 100644 --- a/apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx +++ b/apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx @@ -18,13 +18,11 @@ import { DataTablePagination } from '@documenso/ui/primitives/data-table-paginat import { Skeleton } from '@documenso/ui/primitives/skeleton'; import { TableCell } from '@documenso/ui/primitives/table'; -import { LocaleDate } from '~/components/formatter/locale-date'; - import { CreateTeamCheckoutDialog } from '../dialogs/create-team-checkout-dialog'; import { PendingUserTeamsDataTableActions } from './pending-user-teams-data-table-actions'; export const PendingUserTeamsDataTable = () => { - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const searchParams = useSearchParams(); const updateSearchParams = useUpdateSearchParams(); @@ -79,7 +77,7 @@ export const PendingUserTeamsDataTable = () => { { header: _(msg`Created on`), accessorKey: 'createdAt', - cell: ({ row }) => , + cell: ({ row }) => i18n.date(row.original.createdAt), }, { id: 'actions', diff --git a/apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx b/apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx index d223549fd..ba260c757 100644 --- a/apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx +++ b/apps/web/src/components/(teams)/tables/team-member-invites-data-table.tsx @@ -27,8 +27,6 @@ import { Skeleton } from '@documenso/ui/primitives/skeleton'; import { TableCell } from '@documenso/ui/primitives/table'; import { useToast } from '@documenso/ui/primitives/use-toast'; -import { LocaleDate } from '~/components/formatter/locale-date'; - export type TeamMemberInvitesDataTableProps = { teamId: number; }; @@ -37,7 +35,7 @@ export const TeamMemberInvitesDataTable = ({ teamId }: TeamMemberInvitesDataTabl const searchParams = useSearchParams(); const updateSearchParams = useUpdateSearchParams(); - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const { toast } = useToast(); const parsedSearchParams = ZBaseTableSearchParamsSchema.parse( @@ -129,7 +127,7 @@ export const TeamMemberInvitesDataTable = ({ teamId }: TeamMemberInvitesDataTabl { header: _(msg`Invited At`), accessorKey: 'createdAt', - cell: ({ row }) => , + cell: ({ row }) => i18n.date(row.original.createdAt), }, { header: _(msg`Actions`), diff --git a/apps/web/src/components/(teams)/tables/team-members-data-table.tsx b/apps/web/src/components/(teams)/tables/team-members-data-table.tsx index 4882443b6..fc8e28598 100644 --- a/apps/web/src/components/(teams)/tables/team-members-data-table.tsx +++ b/apps/web/src/components/(teams)/tables/team-members-data-table.tsx @@ -29,8 +29,6 @@ import { import { Skeleton } from '@documenso/ui/primitives/skeleton'; import { TableCell } from '@documenso/ui/primitives/table'; -import { LocaleDate } from '~/components/formatter/locale-date'; - import { DeleteTeamMemberDialog } from '../dialogs/delete-team-member-dialog'; import { UpdateTeamMemberDialog } from '../dialogs/update-team-member-dialog'; @@ -47,7 +45,7 @@ export const TeamMembersDataTable = ({ teamId, teamName, }: TeamMembersDataTableProps) => { - const { _ } = useLingui(); + const { _, i18n } = useLingui(); const searchParams = useSearchParams(); const updateSearchParams = useUpdateSearchParams(); @@ -114,7 +112,7 @@ export const TeamMembersDataTable = ({ { header: _(msg`Member Since`), accessorKey: 'createdAt', - cell: ({ row }) => , + cell: ({ row }) => i18n.date(row.original.createdAt), }, { header: _(msg`Actions`), diff --git a/apps/web/src/components/document/document-history-sheet.tsx b/apps/web/src/components/document/document-history-sheet.tsx index 08fcc1e13..66173f501 100644 --- a/apps/web/src/components/document/document-history-sheet.tsx +++ b/apps/web/src/components/document/document-history-sheet.tsx @@ -3,7 +3,9 @@ import { useMemo, useState } from 'react'; import { Trans } from '@lingui/macro'; +import { useLingui } from '@lingui/react'; import { ArrowRightIcon, Loader } from 'lucide-react'; +import { DateTime } from 'luxon'; import { match } from 'ts-pattern'; import { UAParser } from 'ua-parser-js'; @@ -18,8 +20,6 @@ import { Badge } from '@documenso/ui/primitives/badge'; import { Button } from '@documenso/ui/primitives/button'; import { Sheet, SheetContent, SheetTrigger } from '@documenso/ui/primitives/sheet'; -import { LocaleDate } from '~/components/formatter/locale-date'; - import { DocumentHistorySheetChanges } from './document-history-sheet-changes'; export type DocumentHistorySheetProps = { @@ -37,6 +37,8 @@ export const DocumentHistorySheet = ({ onMenuOpenChange, children, }: DocumentHistorySheetProps) => { + const { i18n } = useLingui(); + const [isUserDetailsVisible, setIsUserDetailsVisible] = useState(false); const { @@ -153,7 +155,9 @@ export const DocumentHistorySheet = ({ {formatDocumentAuditLogActionString(auditLog, userId)}

- + {DateTime.fromJSDate(auditLog.createdAt) + .setLocale(i18n.locales?.[0] || i18n.locale) + .toFormat('d MMM, yyyy HH:MM a')}

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..b1a241188 100644 --- a/apps/web/src/middleware.ts +++ b/apps/web/src/middleware.ts @@ -5,7 +5,7 @@ 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 { extractLocaleData } from '@documenso/lib/utils/i18n'; import { formatDocumentsPath } from '@documenso/lib/utils/teams'; async function middleware(req: NextRequest): Promise { @@ -96,7 +96,7 @@ async function middleware(req: NextRequest): Promise { export default async function middlewareWrapper(req: NextRequest) { const response = await middleware(req); - const lang = extractSupportedLanguage({ + const { lang } = extractLocaleData({ headers: req.headers, cookies: cookies(), }); 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 789bdd44f..e24cdc39e 100644 --- a/packages/lib/constants/app.ts +++ b/packages/lib/constants/app.ts @@ -1,6 +1,5 @@ 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; @@ -11,6 +10,7 @@ export const NEXT_PRIVATE_INTERNAL_WEBAPP_URL = process.env.NEXT_PRIVATE_INTERNA 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 = false; 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/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/translations/de/web.js b/packages/lib/translations/de/web.js index 0c3c43121..6105ec173 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\"],\"\\\" 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>1 ausstehende Team-Einladung\",\"other\":[\"<2>Du hast <3>\",\"#\",\" ausstehende Team-Einladungen\"]}]],\"+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\"],\"\\\" steht nicht mehr zur Unterschrift zur Verfügung\"],\"xvzJ86\":\"<0>Absender: 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\"],\") 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 anmelden\",\"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\"],\" 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\"],\"\"],\"FQnPC+\":[\"Bestätigen Sie durch Eingabe von <0>\",[\"deleteMessage\"],\"\"],\"gv1JXQ\":[\"Bestätigen Sie durch Eingabe: <0>\",[\"deleteMessage\"],\"\"],\"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\",\"SVZbH4\":\"Erstellt am <0/>\",\"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 Dokumente 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>Registrieren\",\"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\":\"Läuft ab am\",\"LbGReD\":\"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 Profileinstellungen, 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.\",\"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>Dokumentation.\",\"ZtN+o/\":\"Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Sie können unsere Swagger-Dokumentation <1>hier 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>irreversibel ist.\",\"pIF/uD\":\"Bitte beachten Sie, dass diese Aktion <0>irreversibel 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\"],\" 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>versteckt.\",\"6zFVy3\":\"Profil ist derzeit <0>sichtbar.\",\"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>Einloggen\",\"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\"],\")\"],\"M7Y6vg\":[\"Sign as <0>\",[\"0\"],\" <1>(\",[\"1\"],\")\"],\"D0JgR3\":[\"Unterzeichnen als<0>\",[\"0\"],\" <1>(\",[\"1\"],\")\"],\"/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\"],\" 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\"],\" 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\"],\" 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\"],\" 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\"],\"\"],\"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\",\"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.\",\"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\"],\" 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\"],\"\\\" zu löschen\"],\"bnSqz9\":[\"Sie stehen kurz davor, die folgende Team-E-Mail von <0>\",[\"teamName\"],\" zu löschen.\"],\"5K1f43\":[\"Sie sind dabei, <0>\\\"\",[\"documentTitle\"],\"\\\" zu verstecken\"],\"Z7Zba7\":\"Sie stehen kurz davor, das folgende Team zu verlassen.\",\"w4DsUu\":[\"Sie stehen kurz davor, den folgenden Benutzer aus <0>\",[\"teamName\"],\" zu entfernen.\"],\"3TbP+M\":[\"Sie stehen kurz davor, den Zugriff für das Team <0>\",[\"0\"],\" (\",[\"1\"],\") zu widerrufen.\"],\"km5WYz\":\"Sie befinden sich derzeit im <0>kostenlosen Plan.\",\"lS8/qb\":[\"You are currently subscribed to <0>\",[\"0\"],\"\"],\"vELAGq\":[\"Sie aktualisieren derzeit <0>\",[\"teamMemberName\"],\".\"],\"9Vb1lk\":[\"Sie aktualisieren derzeit den <0>\",[\"passkeyName\"],\" 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\"],\" angenommen, um ihrem Team beizutreten.\"],\"XJ/LXV\":[\"Sie haben die Eigentumsübertragung für <0>\",[\"0\"],\" bereits abgeschlossen.\"],\"udOfln\":[\"Sie haben Ihre E-Mail-Adresse für <0>\",[\"0\"],\" bereits bestätigt.\"],\"rawUsl\":[\"Sie wurden von <0>\",[\"0\"],\" eingeladen, ihrem Team beizutreten.\"],\"C5iBwQ\":[\"Sie haben die Einladung von <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!\"],\"m5RA9C\":\"Sie haben Ihr Dokumentenlimit erreicht.\",\"K/3HUN\":\"Sie haben Ihr Dokumentenlimit erreicht. <0>Upgrade your account to continue!\",\"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\"],\" 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\"],\" 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\"],\" (\",[\"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 erben - Verwenden Sie die in den \\\"Allgemeinen Einstellungen\\\" konfigurierte globale Aktionssignatur-Authentifizierungsmethode\",\"OepImG\":\"<0>Keine Einschränkungen - Keine Authentifizierung erforderlich\",\"07+JZ2\":\"<0>Keine Einschränkungen - Das Dokument kann direkt über die dem Empfänger gesendete URL abgerufen werden\",\"jx/lwn\":\"<0>Keine - Keine Authentifizierung erforderlich\",\"CUT3u1\":\"<0>2FA erforderlich - Der Empfänger muss ein Konto haben und die 2FA über seine Einstellungen aktiviert haben\",\"2PbD3D\":\"<0>Konto erforderlich - Der Empfänger muss angemeldet sein, um das Dokument anzeigen zu können\",\"QHSbey\":\"<0>Passkey erforderlich - 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)\",\"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\",\"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\"],\"\"],\"ki77Td\":\"Betreff <0>(Optional)\",\"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 +/*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>1 ausstehende Team-Einladung\",\"other\":[\"<2>Du hast <3>\",\"#\",\" ausstehende Team-Einladungen\"]}]],\"+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\"],\"\\\" steht nicht mehr zur Unterschrift zur Verfügung\"],\"xvzJ86\":\"<0>Absender: 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\"],\") 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 anmelden\",\"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\"],\" 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\"],\"\"],\"FQnPC+\":[\"Bestätigen Sie durch Eingabe von <0>\",[\"deleteMessage\"],\"\"],\"gv1JXQ\":[\"Bestätigen Sie durch Eingabe: <0>\",[\"deleteMessage\"],\"\"],\"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 Dokumente 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>Registrieren\",\"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 Profileinstellungen, 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.\",\"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>Dokumentation.\",\"ZtN+o/\":\"Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Sie können unsere Swagger-Dokumentation <1>hier 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>irreversibel ist.\",\"pIF/uD\":\"Bitte beachten Sie, dass diese Aktion <0>irreversibel 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\"],\" 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>versteckt.\",\"6zFVy3\":\"Profil ist derzeit <0>sichtbar.\",\"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>Einloggen\",\"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\"],\")\"],\"M7Y6vg\":[\"Sign as <0>\",[\"0\"],\" <1>(\",[\"1\"],\")\"],\"D0JgR3\":[\"Unterzeichnen als<0>\",[\"0\"],\" <1>(\",[\"1\"],\")\"],\"/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\"],\" 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\"],\" 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\"],\" 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\"],\" 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\"],\"\"],\"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\",\"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.\",\"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\"],\" 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\"],\"\\\" zu löschen\"],\"bnSqz9\":[\"Sie stehen kurz davor, die folgende Team-E-Mail von <0>\",[\"teamName\"],\" zu löschen.\"],\"5K1f43\":[\"Sie sind dabei, <0>\\\"\",[\"documentTitle\"],\"\\\" zu verstecken\"],\"Z7Zba7\":\"Sie stehen kurz davor, das folgende Team zu verlassen.\",\"w4DsUu\":[\"Sie stehen kurz davor, den folgenden Benutzer aus <0>\",[\"teamName\"],\" zu entfernen.\"],\"3TbP+M\":[\"Sie stehen kurz davor, den Zugriff für das Team <0>\",[\"0\"],\" (\",[\"1\"],\") zu widerrufen.\"],\"km5WYz\":\"Sie befinden sich derzeit im <0>kostenlosen Plan.\",\"lS8/qb\":[\"You are currently subscribed to <0>\",[\"0\"],\"\"],\"vELAGq\":[\"Sie aktualisieren derzeit <0>\",[\"teamMemberName\"],\".\"],\"9Vb1lk\":[\"Sie aktualisieren derzeit den <0>\",[\"passkeyName\"],\" 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\"],\" angenommen, um ihrem Team beizutreten.\"],\"XJ/LXV\":[\"Sie haben die Eigentumsübertragung für <0>\",[\"0\"],\" bereits abgeschlossen.\"],\"udOfln\":[\"Sie haben Ihre E-Mail-Adresse für <0>\",[\"0\"],\" bereits bestätigt.\"],\"rawUsl\":[\"Sie wurden von <0>\",[\"0\"],\" eingeladen, ihrem Team beizutreten.\"],\"C5iBwQ\":[\"Sie haben die Einladung von <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!\"],\"m5RA9C\":\"Sie haben Ihr Dokumentenlimit erreicht.\",\"K/3HUN\":\"Sie haben Ihr Dokumentenlimit erreicht. <0>Upgrade your account to continue!\",\"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\"],\" 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\"],\" 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\"],\" (\",[\"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 erben - Verwenden Sie die in den \\\"Allgemeinen Einstellungen\\\" konfigurierte globale Aktionssignatur-Authentifizierungsmethode\",\"OepImG\":\"<0>Keine Einschränkungen - Keine Authentifizierung erforderlich\",\"07+JZ2\":\"<0>Keine Einschränkungen - Das Dokument kann direkt über die dem Empfänger gesendete URL abgerufen werden\",\"jx/lwn\":\"<0>Keine - Keine Authentifizierung erforderlich\",\"CUT3u1\":\"<0>2FA erforderlich - Der Empfänger muss ein Konto haben und die 2FA über seine Einstellungen aktiviert haben\",\"2PbD3D\":\"<0>Konto erforderlich - Der Empfänger muss angemeldet sein, um das Dokument anzeigen zu können\",\"QHSbey\":\"<0>Passkey erforderlich - 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)\",\"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\",\"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\"],\"\"],\"ki77Td\":\"Betreff <0>(Optional)\",\"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 7de76e146..be3580657 100644 --- a/packages/lib/translations/de/web.po +++ b/packages/lib/translations/de/web.po @@ -43,7 +43,7 @@ msgid "{0, plural, one {(1 character over)} other {(# characters over)}}" 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 "{0, plural, one {# Zeichen über dem Limit} other {# Zeichen über dem Limit}}" @@ -72,7 +72,7 @@ msgstr "{0, plural, one {Warte auf 1 Empfänger} other {Warte auf # Empfänger}} msgid "{0, plural, zero {Select values} other {# selected...}}" 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 "{0} direkte Signaturvorlagen" @@ -105,7 +105,7 @@ msgid "{numberOfSeats, plural, one {# member} other {# members}}" 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 "{remaningLength, plural, one {# Zeichen verbleibend} other {# Zeichen verbleibend}}" @@ -190,19 +190,19 @@ msgid "Account deleted" 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 "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 "Aktionen" @@ -299,7 +299,7 @@ msgstr "Fügen Sie den Betreff und die Nachricht hinzu, die Sie den Unterzeichne msgid "Adding and removing seats will adjust your invoice accordingly." 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 "Admin-Aktionen" @@ -512,8 +512,8 @@ msgstr "Ein Fehler ist aufgetreten, während dein Dokument hochgeladen wurde." #: 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 "Es ist ein unbekannter Fehler aufgetreten" @@ -521,9 +521,9 @@ msgstr "Es ist ein unbekannter Fehler aufgetreten" 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 "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 @@ -564,7 +564,7 @@ msgstr "Bist du dir sicher, dass du dieses Team löschen möchtest?" #: 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 "Bist du dir sicher?" @@ -624,7 +624,7 @@ msgstr "Banner aktualisiert" msgid "Basic details" 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 @@ -633,7 +633,7 @@ msgstr "Basisdetails" msgid "Billing" 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 "Browser" @@ -687,7 +687,7 @@ msgstr "Durch die Aktivierung von 2FA müssen Sie jedes Mal, wenn Sie sich anmel #: 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 "Abbrechen" @@ -737,7 +737,7 @@ 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 "Klicken Sie hier, um es erneut zu versuchen" @@ -764,8 +764,8 @@ msgstr "Klicken Sie, um das Feld einzufügen" #: 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 "Schließen" @@ -809,12 +809,12 @@ msgstr "Konfigurieren Sie die allgemeinen Einstellungen für das Dokument." msgid "Configure general settings for the template." 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 "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 "Bestätigen" @@ -853,7 +853,7 @@ msgstr "Inhalt" #: 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 "Fortfahren" @@ -959,12 +959,12 @@ msgstr "Erstellen Sie Ihr Konto und beginnen Sie mit dem modernen Dokumentensign msgid "Create your account and start using state-of-the-art document signing. Open and beautiful signing is within your grasp." 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 "Erstellt" @@ -972,21 +972,27 @@ msgstr "Erstellt" msgid "Created At" 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 "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/webhooks/page.tsx:89 -#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:94 -msgid "Created on <0/>" -msgstr "Erstellt am <0/>" +#: 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 "" + +#~ 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" @@ -1004,12 +1010,12 @@ msgstr "Täglich" msgid "Dark Mode" 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 "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 "Erstellungsdatum" @@ -1026,12 +1032,12 @@ msgstr "Team-Einladung abgelehnt" #: 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 @@ -1090,7 +1096,7 @@ msgstr "Webhook löschen" 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 "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 "Gelöscht" @@ -1102,11 +1108,11 @@ msgstr "Konto wird gelöscht..." #~ 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 "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 "Direkter Link" @@ -1131,7 +1137,7 @@ msgstr "Die direkte Links-Signatur wurde deaktiviert" msgid "Direct link signing has been enabled" 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 "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." @@ -1143,7 +1149,7 @@ msgstr "Direkter Vorlagenlink gelöscht" msgid "Direct template link usage exceeded ({0}/{1})" 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 "Deaktivieren" @@ -1157,8 +1163,8 @@ msgstr "2FA deaktivieren" msgid "Disable Two Factor Authentication before deleting your account." 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 "Deaktiviert" @@ -1182,7 +1188,7 @@ msgstr "Möchten Sie diese Vorlage duplizieren?" msgid "Documenso will delete <0>all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account." msgstr "Documenso wird <0>alle Ihre Dokumente 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 "Dokument" @@ -1225,11 +1231,11 @@ msgid "Document Duplicated" 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 "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 "Dokument-ID" @@ -1237,7 +1243,7 @@ msgstr "Dokument-ID" msgid "Document inbox" 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 "Dokumentenlimit überschritten!" @@ -1277,11 +1283,11 @@ msgstr "Dokument signiert" msgid "Document signing process will be cancelled" 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 "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 "Dokumenttitel" @@ -1378,10 +1384,10 @@ msgstr "Duplizieren" #: 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 "Bearbeiten" @@ -1453,9 +1459,9 @@ 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 "Aktiviert" @@ -1535,16 +1541,22 @@ msgstr "Zeitüberschreitung überschritten" msgid "Expired" 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 "Läuft ab am" +#~ 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 "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 "Dokument konnte nicht erneut versiegelt werden" @@ -1638,7 +1650,7 @@ msgstr "Hey, ich bin Timur" msgid "Hide" 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 "Zusätzliche Informationen ausblenden" @@ -1675,7 +1687,7 @@ msgstr "Posteingang" msgid "Inbox documents" 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 "Information" @@ -1713,11 +1725,11 @@ msgstr "Einladung akzeptiert!" msgid "Invitation declined" 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 "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 "Einladung wurde erneut gesendet" @@ -1737,7 +1749,7 @@ msgstr "Mitglieder einladen" msgid "Invite team members" 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 "Eingeladen am" @@ -1773,15 +1785,15 @@ msgstr "Die letzten 30 Tage" msgid "Last 7 days" 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 "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 "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 "Zuletzt aktualisiert am" @@ -1790,7 +1802,7 @@ msgid "Last used" 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 "Verlassen" @@ -1810,8 +1822,8 @@ msgstr "Möchten Sie Ihr eigenes öffentliches Profil mit Vereinbarungen haben?" msgid "Link template" 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 "Anhören von {0}" @@ -1844,7 +1856,7 @@ msgstr "Wird geladen..." msgid "Login" 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 "Verwalten" @@ -1856,7 +1868,7 @@ msgstr "Verwalten Sie das Profil von {0}" msgid "Manage all teams you are currently associated with." 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 "Details für diese öffentliche Vorlage verwalten" @@ -1924,8 +1936,8 @@ msgstr "MAU (erstellt Dokument)" msgid "MAU (had document completed)" 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 "Mitglied seit" @@ -2050,7 +2062,7 @@ msgstr "Keine Ergebnisse gefunden." msgid "No token provided" 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 "Keine gültigen direkten Vorlagen gefunden" @@ -2080,16 +2092,16 @@ msgstr "Nichts zu tun" msgid "On this page, you can create a new webhook." 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>Documentation." msgstr "Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Siehe auch unsere <1>Dokumentation." -#: 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>here" msgstr "Auf dieser Seite können Sie neue API-Tokens erstellen und die vorhandenen verwalten. <0/>Sie können unsere Swagger-Dokumentation <1>hier 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 "Auf dieser Seite können Sie neue Webhooks erstellen und die vorhandenen verwalten." @@ -2133,7 +2145,7 @@ msgstr "Oder fahren Sie fort mit" msgid "Otherwise, the document will be created as a draft." msgstr "Andernfalls wird das Dokument als Entwurf erstellt." -#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:87 +#: apps/web/src/app/(dashboard)/admin/documents/document-results.tsx:86 #: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:76 msgid "Owner" msgstr "Besitzer" @@ -2325,12 +2337,12 @@ msgstr "Einstellungen" msgid "Preview and configure template." 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 "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 "Private Vorlagen können nur von Ihnen bearbeitet und angezeigt werden." @@ -2354,7 +2366,7 @@ msgstr "Profil ist derzeit <0>sichtbar." msgid "Profile updated" 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 "Öffentlich" @@ -2375,7 +2387,7 @@ msgstr "Öffentlicher Profil-URL" msgid "Public profile username" 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 "Öffentliche Vorlagen sind mit Ihrem öffentlichen Profil verbunden. Änderungen an öffentlichen Vorlagen erscheinen auch in Ihrem öffentlichen Profil." @@ -2396,7 +2408,7 @@ msgstr "Eine erneute Authentifizierung ist erforderlich, um dieses Feld zu unter msgid "Recent activity" 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 "Empfänger" @@ -2405,7 +2417,7 @@ msgstr "Empfänger" msgid "Recipient updated" 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 "Empfänger" @@ -2443,8 +2455,8 @@ msgstr "Haben Sie Ihr Passwort vergessen? <0>Einloggen" #: 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 "Entfernen" @@ -2453,7 +2465,7 @@ msgstr "Entfernen" msgid "Remove team email" 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 "Teammitglied entfernen" @@ -2471,7 +2483,7 @@ msgid "Reseal document" 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 "Erneut senden" @@ -2545,9 +2557,9 @@ 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 "Rolle" @@ -2569,7 +2581,7 @@ msgstr "Speichern" msgid "Search" 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 "Nach Dokumenttitel suchen" @@ -2609,11 +2621,11 @@ msgstr "Wählen Sie ein Team aus, um dieses Dokument dorthin zu verschieben. Die msgid "Select a team to move this template to. This action cannot be undone." 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 "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 "Wählen Sie eine Vorlage aus, die Sie im öffentlichen Profil Ihres Teams anzeigen möchten" @@ -2633,7 +2645,7 @@ msgstr "Dokument senden" msgid "Send reminder" 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 "Absender" @@ -2678,7 +2690,7 @@ msgstr "Signaturkarte teilen" msgid "Show" 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 "Zusätzliche Informationen anzeigen" @@ -2847,8 +2859,8 @@ msgstr "Website Einstellungen" #: 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 "Etwas ist schiefgelaufen" @@ -2890,9 +2902,9 @@ msgstr "Entschuldigung, wir konnten das Zertifikat nicht herunterladen. Bitte ve msgid "Stats" 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 "Status" @@ -2933,11 +2945,11 @@ msgstr "Abonnements" #: 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 "Erfolg" @@ -2949,8 +2961,8 @@ msgstr "Passkey erfolgreich erstellt" msgid "System Theme" 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 "Team" @@ -2996,8 +3008,8 @@ msgstr "Teameinladung" msgid "Team invitations have been sent." 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 "Teammitglied" @@ -3006,11 +3018,11 @@ msgstr "Teammitglied" msgid "Team Name" 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 "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 "Nur Teamvorlagen sind nirgendwo verlinkt und nur für Ihr Team sichtbar." @@ -3068,7 +3080,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" @@ -3084,11 +3096,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." @@ -3172,11 +3184,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" @@ -3212,7 +3224,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" @@ -3354,17 +3366,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" @@ -3428,8 +3440,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" @@ -3502,7 +3514,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" @@ -3534,7 +3546,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." @@ -3551,7 +3563,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" @@ -3567,7 +3579,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." @@ -3611,7 +3623,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" @@ -3635,7 +3647,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" @@ -3674,7 +3686,7 @@ msgstr "Profil wird aktualisiert..." msgid "Upload Avatar" 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 "Hochgeladen von" @@ -3704,7 +3716,7 @@ msgstr "Backup-Code verwenden" msgid "Use Template" 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 "Benutzer" @@ -3886,7 +3898,7 @@ msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht h msgid "We encountered an unknown error while attempting to leave this team. Please try again later." 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 "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." @@ -3942,7 +3954,7 @@ msgstr "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht h msgid "We encountered an unknown error while attempting to update the banner. Please try again later." 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 "Wir sind auf einen unbekannten Fehler gestoßen, während wir versucht haben, die Vorlage zu aktualisieren. Bitte versuchen Sie es später erneut." @@ -4041,8 +4053,8 @@ msgstr "Webhook aktualisiert" 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 @@ -4082,7 +4094,7 @@ msgstr "Schreiben Sie über sich selbst" msgid "Yearly" 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 "Sie" @@ -4122,7 +4134,7 @@ msgstr "Sie stehen kurz davor, den folgenden Benutzer aus <0>{teamName} zu e msgid "You are about to revoke access for team <0>{0} ({1}) to use your email." msgstr "Sie stehen kurz davor, den Zugriff für das Team <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 Plan." msgstr "Sie befinden sich derzeit im <0>kostenlosen Plan." @@ -4203,8 +4215,8 @@ msgstr "Sie wurden von <0>{0} eingeladen, ihrem Team beizutreten." msgid "You have declined the invitation from <0>{0} to join their team." msgstr "Sie haben die Einladung von <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 "Sie haben noch keine Webhooks. Ihre Webhooks werden hier angezeigt, sobald Sie sie erstellt haben." @@ -4224,7 +4236,7 @@ msgstr "Sie haben das maximale Limit von {0} direkten Vorlagen erreicht. <0>Upgr msgid "You have reached your document limit." 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!" msgstr "Sie haben Ihr Dokumentenlimit erreicht. <0>Upgrade your account to continue!" @@ -4312,11 +4324,11 @@ msgstr "Ihr Avatar wurde erfolgreich aktualisiert." msgid "Your banner has been updated successfully." 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 "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 "Ihre direkten Unterzeichnungsvorlagen" @@ -4360,8 +4372,8 @@ msgstr "Ihre E-Mail wurde erfolgreich bestätigt! Sie können jetzt alle Funktio msgid "Your email is currently being used by team <0>{0} ({1})." msgstr "Ihre E-Mail wird derzeit von Team <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 "Ihre vorhandenen Tokens" @@ -4435,7 +4447,7 @@ msgstr "Ihr Token ist abgelaufen!" msgid "Your token was created successfully! Make sure to copy it because you won't be able to see it again!" 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 "Ihre Tokens werden hier angezeigt, sobald Sie sie erstellt haben." diff --git a/packages/lib/translations/en/web.js b/packages/lib/translations/en/web.js index c5a253ec5..0e2c7956b 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>1 pending team invitation\",\"other\":[\"<2>You have <3>\",\"#\",\" pending team invitations\"]}]],\"+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\"],\"\\\"is no longer available to sign\"],\"xvzJ86\":\"<0>Sender: 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\"],\")\"],\"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 instead\",\"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\"],\" 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\"],\"\"],\"FQnPC+\":[\"Confirm by typing <0>\",[\"deleteMessage\"],\"\"],\"gv1JXQ\":[\"Confirm by typing: <0>\",[\"deleteMessage\"],\"\"],\"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 documents, 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 up\",\"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 settings 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>Documentation.\",\"ZtN+o/\":\"On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here\",\"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>irreversible.\",\"pIF/uD\":\"Please note that this action is <0>irreversible. 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\"],\" 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>hidden.\",\"6zFVy3\":\"Profile is currently <0>visible.\",\"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 In\",\"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\"],\")\"],\"M7Y6vg\":[\"Sign as <0>\",[\"0\"],\" <1>(\",[\"1\"],\")\"],\"D0JgR3\":[\"Sign as<0>\",[\"0\"],\" <1>(\",[\"1\"],\")\"],\"/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\"],\" to your. Please try again later or contact support.\"],\"/OggdM\":[\"Something went wrong while attempting to verify your email address for <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\"],\" 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\"],\" 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\"],\"\"],\"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.\",\"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\"],\". 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\"],\"\\\"\"],\"bnSqz9\":[\"You are about to delete the following team email from <0>\",[\"teamName\"],\".\"],\"5K1f43\":[\"You are about to hide <0>\\\"\",[\"documentTitle\"],\"\\\"\"],\"Z7Zba7\":\"You are about to leave the following team.\",\"w4DsUu\":[\"You are about to remove the following user from <0>\",[\"teamName\"],\".\"],\"3TbP+M\":[\"You are about to revoke access for team <0>\",[\"0\"],\" (\",[\"1\"],\") to use your email.\"],\"km5WYz\":\"You are currently on the <0>Free Plan.\",\"lS8/qb\":[\"You are currently subscribed to <0>\",[\"0\"],\"\"],\"vELAGq\":[\"You are currently updating <0>\",[\"teamMemberName\"],\".\"],\"9Vb1lk\":[\"You are currently updating the <0>\",[\"passkeyName\"],\" 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\"],\" to join their team.\"],\"XJ/LXV\":[\"You have already completed the ownership transfer for <0>\",[\"0\"],\".\"],\"udOfln\":[\"You have already verified your email address for <0>\",[\"0\"],\".\"],\"rawUsl\":[\"You have been invited by <0>\",[\"0\"],\" to join their team.\"],\"C5iBwQ\":[\"You have declined the invitation from <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!\"],\"m5RA9C\":\"You have reached your document limit.\",\"K/3HUN\":\"You have reached your document limit. <0>Upgrade your account to continue!\",\"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\"],\".\"],\"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\"],\" 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\"],\" (\",[\"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 method - Use the global action signing authentication method configured in the \\\"General Settings\\\" step\",\"OepImG\":\"<0>No restrictions - No authentication required\",\"07+JZ2\":\"<0>No restrictions - The document can be accessed directly by the URL sent to the recipient\",\"jx/lwn\":\"<0>None - No authentication required\",\"CUT3u1\":\"<0>Require 2FA - The recipient must have an account and 2FA enabled via their settings\",\"2PbD3D\":\"<0>Require account - The recipient must be signed in to view the document\",\"QHSbey\":\"<0>Require passkey - 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)\",\"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\",\"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\"],\"\"],\"ki77Td\":\"Subject <0>(Optional)\",\"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 +/*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>1 pending team invitation\",\"other\":[\"<2>You have <3>\",\"#\",\" pending team invitations\"]}]],\"+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\"],\"\\\"is no longer available to sign\"],\"xvzJ86\":\"<0>Sender: 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\"],\")\"],\"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 instead\",\"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\"],\" 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\"],\"\"],\"FQnPC+\":[\"Confirm by typing <0>\",[\"deleteMessage\"],\"\"],\"gv1JXQ\":[\"Confirm by typing: <0>\",[\"deleteMessage\"],\"\"],\"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 documents, 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 up\",\"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 settings 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>Documentation.\",\"ZtN+o/\":\"On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here\",\"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>irreversible.\",\"pIF/uD\":\"Please note that this action is <0>irreversible. 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\"],\" 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>hidden.\",\"6zFVy3\":\"Profile is currently <0>visible.\",\"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 In\",\"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\"],\")\"],\"M7Y6vg\":[\"Sign as <0>\",[\"0\"],\" <1>(\",[\"1\"],\")\"],\"D0JgR3\":[\"Sign as<0>\",[\"0\"],\" <1>(\",[\"1\"],\")\"],\"/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\"],\" to your. Please try again later or contact support.\"],\"/OggdM\":[\"Something went wrong while attempting to verify your email address for <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\"],\" 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\"],\" 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\"],\"\"],\"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.\",\"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\"],\". 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\"],\"\\\"\"],\"bnSqz9\":[\"You are about to delete the following team email from <0>\",[\"teamName\"],\".\"],\"5K1f43\":[\"You are about to hide <0>\\\"\",[\"documentTitle\"],\"\\\"\"],\"Z7Zba7\":\"You are about to leave the following team.\",\"w4DsUu\":[\"You are about to remove the following user from <0>\",[\"teamName\"],\".\"],\"3TbP+M\":[\"You are about to revoke access for team <0>\",[\"0\"],\" (\",[\"1\"],\") to use your email.\"],\"km5WYz\":\"You are currently on the <0>Free Plan.\",\"lS8/qb\":[\"You are currently subscribed to <0>\",[\"0\"],\"\"],\"vELAGq\":[\"You are currently updating <0>\",[\"teamMemberName\"],\".\"],\"9Vb1lk\":[\"You are currently updating the <0>\",[\"passkeyName\"],\" 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\"],\" to join their team.\"],\"XJ/LXV\":[\"You have already completed the ownership transfer for <0>\",[\"0\"],\".\"],\"udOfln\":[\"You have already verified your email address for <0>\",[\"0\"],\".\"],\"rawUsl\":[\"You have been invited by <0>\",[\"0\"],\" to join their team.\"],\"C5iBwQ\":[\"You have declined the invitation from <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!\"],\"m5RA9C\":\"You have reached your document limit.\",\"K/3HUN\":\"You have reached your document limit. <0>Upgrade your account to continue!\",\"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\"],\".\"],\"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\"],\" 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\"],\" (\",[\"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 method - Use the global action signing authentication method configured in the \\\"General Settings\\\" step\",\"OepImG\":\"<0>No restrictions - No authentication required\",\"07+JZ2\":\"<0>No restrictions - The document can be accessed directly by the URL sent to the recipient\",\"jx/lwn\":\"<0>None - No authentication required\",\"CUT3u1\":\"<0>Require 2FA - The recipient must have an account and 2FA enabled via their settings\",\"2PbD3D\":\"<0>Require account - The recipient must be signed in to view the document\",\"QHSbey\":\"<0>Require passkey - 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)\",\"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\",\"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\"],\"\"],\"ki77Td\":\"Subject <0>(Optional)\",\"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..565aa6aff 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,7 +294,7 @@ 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" @@ -507,8 +507,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 +516,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 +559,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 +619,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 +628,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 +682,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 +732,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 +759,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" @@ -804,12 +804,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 +848,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" @@ -954,12 +954,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 +967,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" @@ -999,12 +1007,12 @@ msgstr "Daily" 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 +1029,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 +1093,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 +1105,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 +1134,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 +1146,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 +1160,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 +1185,7 @@ msgstr "Do you want to duplicate this template?" msgid "Documenso will delete <0>all of your documents, along with all of your completed documents, signatures, and all other resources belonging to your Account." msgstr "Documenso will delete <0>all of your documents, 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 +1228,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 +1240,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 +1280,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" @@ -1373,10 +1381,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 +1456,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 +1540,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 +1649,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" @@ -1670,7 +1686,7 @@ msgstr "Inbox" 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 +1724,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 +1748,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" @@ -1768,15 +1784,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 +1801,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" @@ -1805,8 +1821,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 +1855,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 +1867,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" @@ -1919,8 +1935,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" @@ -2045,7 +2061,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 +2091,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>Documentation." msgstr "On this page, you can create new API tokens and manage the existing ones. <0/>Also see our <1>Documentation." -#: 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>here" msgstr "On this page, you can create new API tokens and manage the existing ones. <0/>You can view our swagger docs <1>here" -#: 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,7 +2144,7 @@ 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/app/(dashboard)/admin/documents/document-results.tsx:86 #: apps/web/src/components/(dashboard)/layout/menu-switcher.tsx:76 msgid "Owner" msgstr "Owner" @@ -2320,12 +2336,12 @@ 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." @@ -2349,7 +2365,7 @@ msgstr "Profile is currently <0>visible." 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 +2386,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 +2407,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 +2416,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 +2454,8 @@ msgstr "Remembered your password? <0>Sign In" #: 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 +2464,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 +2482,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 +2556,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 +2580,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 +2620,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 +2644,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" @@ -2673,7 +2689,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" @@ -2842,8 +2858,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 +2901,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 +2944,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" @@ -2944,8 +2960,8 @@ msgstr "Successfully created passkey" 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 +3007,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 +3017,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." @@ -3063,7 +3079,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 +3095,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." @@ -3167,11 +3183,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 +3223,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 +3365,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 +3439,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 +3513,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" @@ -3529,7 +3545,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 +3562,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 +3578,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 +3622,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 +3646,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 +3685,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 +3715,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" @@ -3881,7 +3897,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 +3953,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 +4052,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 +4093,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 +4133,7 @@ msgstr "You are about to remove the following user from <0>{teamName}." msgid "You are about to revoke access for team <0>{0} ({1}) to use your email." msgstr "You are about to revoke access for team <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 Plan." msgstr "You are currently on the <0>Free Plan." @@ -4198,8 +4214,8 @@ msgstr "You have been invited by <0>{0} to join their team." msgid "You have declined the invitation from <0>{0} to join their team." msgstr "You have declined the invitation from <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 +4235,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!" msgstr "You have reached your document limit. <0>Upgrade your account to continue!" @@ -4307,11 +4323,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" @@ -4355,8 +4371,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} ({1})." msgstr "Your email is currently being used by team <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 +4446,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..a7de8e620 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('i18n')?.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, + }; };